Tuesday, 15 October 2013

Applet Server Script Events not being triggered or working intermittently

APPLET SERVER SCRIPT EVENTS INTERMITTENTLY EXECUTE IN SIEBEL 8.2.1


BUG:12989341
https://support.oracle.com/epmos/faces/BugDisplay? id=12989341

related to SR Doc ID 1384232.1 and upgraded to 8.2.2.3 which resolved the
issue.

Saturday, 21 September 2013

Friday, 20 September 2013

Browser issue

The server you are trying to access is either busy or experiencing difficulties. Please close the Web browser, open a new browser window, and try logging in again
Solution

This issue is mainly due to Siebel application server is down. But I have noticed that this error can be seen due to following reason
1. Multiple session opened in a single browser
    If you opened multiple session in single browser, Sibel sometimes shows this message. Even though you don't have another tab opened, this error can be shown. That means there is an open session in cookies. Clear your browser cache is the solution

Siebel Error - SBL-DAT-00329

The responsibility of user 'SADMIN' does not allow accessing view 'Contact Detail TBUI View'.(SBL-DAT-00329)
Solution:

Add that view under responsibility. Clear Cache.

Thursday, 19 September 2013

Error - Code : SBL-UIF-00401

View: <?> does not contain applet: <?>.(SBL-UIF-00401)
Solution:

Session expired. Login again

Wednesday, 18 September 2013

Siebel Error Codes

  Open UI Sitemap missing




Quick Fix:
Please Run GenbScript

Error code- SBL-SRH-00124

Error Code
Search Configuration Error. The search category 'Smart Answer (eService)', is not defined.Please contact your system administrator.(SBL-SRH-00124)

Solution

Wednesday, 24 April 2013

File does not exist of may be in use by another process(SBL-DAT-00142)

File does not exist of may be in use by another process(SBL-DAT-00142)

This error occur when the SRF file is used by some another process.
When you come across this error please make sure that
 1. services like siebel service is not accessing the SRF
 2. All DB,Siebel Process are down.
 3. Some windows machine (Windows 7)  may prevent file access. So your tools must have permission to access files. For that right click on tools give run as administrator. Then your tools can access the SRF file

Friday, 12 April 2013

Setting tab order in Siebel

You can decide the tab order of each control in a form applet.
 To do so query the applet -> controls and you can find a property called "HTML Sequence". Give the sequence as you required.


Sunday, 3 March 2013

Applet Minimizing & Maximizing.


We can minimize and maximize applet in a view. To do this go to its view.
view web template item. Select your applet. go to display size option. select maximized or minimized.
If you select maximized option, when view loads the applet will be in maximized state, you can minimize it.
If you select minimized, when you loads a view that applet will be in minimized state.
There is another option always maximized, if you select that option, you cannot minimize your applet.
(Method minimize applet will not works there)

Sunday, 6 January 2013

Unlock siebel repository object using SQL




APPLET

UPDATE  siebel.s_applet appl SET appl.obj_locked_flg = 'N', appl.obj_locked_date = NULL, appl.obj_locked_by = null, appl.obj_locked_lang = null WHERE appl.row_id = 'replace_your_object_ID';

COMMIT;


BUSCOMP

UPDATE siebel.s_buscomp bc SET bc.obj_locked_flg = 'N', bc.obj_locked_date = NULL, bc.obj_locked_by = null, bc.obj_locked_lang = null  WHERE bc.row_id = 'replace_your_object_ID' ;

COMMIT;

VIEW

UPDATE siebel.s_view bc SET bc.obj_locked_flg = 'N', bc.obj_locked_date = NULL, bc.obj_locked_by = null, bc.obj_locked_lang = null WHERE bc.row_id = 'replace_your_object_ID';

commit;


PROJECT

UPDATE siebel.s_project  AS proj SET proj.locked_flg = 'N', proj.locked_date = NULL WHERE proj.name = 'your project_name';

COMMIT


BUSSERVICE

UPDATE siebel.s_service serv SET serv.obj_locked_flg = 'N', serv.obj_locked_date = NULL, serv.obj_locked_by = null, serv.obj_locked_lang = null WHERE serv.row_id = 'replace_your_object_ID';

COMMIT;


TABLE

UPDATE siebel.s_table tab SET tab.obj_locked_flg = 'N', tab.obj_locked_date = null, tab.obj_locked_by = null, tab.obj_locked_lang = null WHERE tab.name = 'your Table NAME' and tab.row_id = 'replace_your_object_ID';

COMMIT;

APPLICATION

UPDATE SIEBEL.S_APPLICATION app
  SET
    app.OBJ_LOCKED_FLG = 'N',
    app.OBJ_LOCKED_DATE = NULL,
    app.OBJ_LOCKED_BY = NULL,
    app.OBJ_LOCKED_LANG = NULL
  WHERE
    app.ROW_ID ='replace_your_object_ID';

COMMIT;

Thursday, 3 January 2013

How to test inbound webservice with attachment in siebel


Before making IC make sure that the BC class should be "CSSBCFile"
Then In XML request please make sure that the values are

                         FileAutoUpdFlg = Y
                         FileDeferFlg = R
                         QuoteFileDockReqFlg = N
                        QuoteFileDockStatFlg = E

then specify your file name & encoded format.

to get 64bit decoded value of a file, please use this site.