Skip to main content

Posts

How to configure None session type in Siebel Web Service request

Below error was received when invoking Siebel IP15 Web Service through php client (Web Application). In Soap request Session Type was set to None.     Error Code: 10944642 Error Message: Error: Inbound SOAP Message - Session Token is missing or invalid or has expired. Siebel will only ask for Session Token when calling web service with Session Type Stateless. On investigation it was clear that we need to add below parameters to eai.cfg file to run web service with Session Type None. AllowAnonymous = TRUE Impersonate = False Search for AllowAnonUsers in cfg and paste above parameters under it. CFG can be found on path: C:\Siebel\15.0.0.0.0\ses\siebsrvr\BIN\enu Save the cfg file and restart the Siebel services and test. Soap Header:    <soapenv:Header>       <UsernameToken xmlns="http://siebel.com/webservices">username</UsernameToken>       <PasswordText xmlns="http://siebel.com/webservices">pass...

How to create a user in DB MS SQL Studio

Below steps will guide you to create user in Microsoft SQL Management Studio and in Siebel. First create login, open MS SQL Management Studio and connect with database.Run below SQL statement. CREATE LOGIN <user-name> WITH PASSWORD = '<password>'; CREATE LOGIN EAIUSER WITH PASSWORD = 'EAIUSER'; Now create user in database. The SQL create user command takes the following syntax: create user <user-name> for login <login-name> create user EAIUSER for login EAIUSER Now you need to provide permissions to newly created user in database. There are tow ways based on user role in the organization select the appropriate method. One to provide the rights of specific database or assign the Membership role to newly created user. Expand the DB and go to Security/Users and find or add filter for new user as seen below. Right click and open properties. Now go Securables and click on Search button. A new window will popup as seen below. Check the Specific Objects...

How to provide access of selected Server Realated screen to a Siebel user

Requirements: Need to provide the access of "Administrator - Server Management" to a non siebel admin user. Process: Created a new responsibility named "Admin-ServerManagement" with below views and added the user. 'Server Server/Task View' or 'Server Task/Info Log View' or 'Server Server/Component/Task View' or 'Enterprise Server/Server View' or Server Task History List View or Process Failure Diagnostics or 'Server Task/Parameter View' or 'Server Task/State Value View' or 'Server Task/Statistic View' or 'Server Session/Info Log View' or 'Server Session/Parameter View' or 'Server Session/State Value View' or 'Server Session/Statistic View' or 'Server Server/Session View' or 'Server Server/Compgroup View' or 'Server Server/Info Log View' or 'Server Server/Statistic View' or 'Server Server/Task View' or Batch Job Submission View or Repeating ...

Enabling Siebel Dedicated Personalization Logs

Introduction: Siebel Personalization Event Triggered Logs identify all the events triggered by the Siebel or by action performed by the user. Below is the example: Personalization log created 04/04/23 12:20:30 Platform:    Dedicated Client Application: Siebel Public Sector Language:    ENU SRF:         C:\Siebel\15.0.0.0.0\Client\OBJECTS\enu\siebel_sia.srf {F(Personalization)T(1680592830)M(N)A(Siebel Public Sector)L(ENU)S(C:\Siebel\15.0.0.0.0\Client\OBJECTS\enu\siebel_sia.srf)E(Y)Y(Y)I(Y)U(N)} ------------------------------------------------------------------------------- Event, at 04/04/23 12:20:30.252, sequence 1 Object type: Application Object name: Siebel Public Sector Event:       Login Sub-event:    No events registered. {S(1)T(1680592830.252)U(ATIF)K(13)Y(Event)N(Y)} ------------------------------------------------------------------------------- Setup Profile, at 04/04/2...

How to display URL in a modal popup window? Doc ID 1360705.1

APPLIES TO: Siebel Tools - Version 8.1.1.1 SIA [21211] and later Information in this document applies to any platform. GOAL How to display external web page in a modal popup window using symbolic URL? SOLUTION 1. Create calculated field in Account buscomp: name = TestSymbolicURL calculated value = TestSymbolicURL 2. Create new form applet using the new object wizard with following properties: name = Account Symbolic URL Popup Applet buscomp = Account web template = Analytics Applet type = base Select TestSymbolicURL field in the wizard to be included in the applet. Deselect all button controls in the wizard. The wizard will create control in the applet Set the following control properties: name = Test field = TestSymbolicURL field retrieval type = Symbolic URL HTML display mode = EncodeData HTML type = Text field type = BC Field Edit the class property of the created applet and set it to: class = CSSSWEFramePopup 3. Create new button control on SIS Account Entry Applet with following p...

When selecting record from Pick Applet Siebel is returing error SBL-DAT-00249

Description: Configured the Pick Applet for selecting the records from Contact. But when selecting the record Siebel is returning below error: SBL-DAT-00249: An error has occurred getting the pick list business component %1 for field %2 in business component %3. SBL-DAT-00249: An error has occurred getting the pick list business component Contacts NBR for field Full Name in business component Asset Contacts. Solution: Open the Object Manager logs and search the error. From the error scroll up. In my case below is logs part. ObjMgrBusCompLog    Warning    2    00000004637f1bdc:0    2022-11-24 23:27:03    (sqlbcdef.cpp (2799)) SBL-DAT-00466: Multi value link definition 'Organization' does not exist for business component definition 'Contacts NBR'. ObjMgrBusCompLog    Error    1    00000004637f1bdc:0    2022-11-24 23:27:03    (buscomp.cpp (12...