Skip to main content

Posts

Showing posts with the label Siebel Dedicated Client

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 generate Browser Scripts for Siebel Dedicated Client

Open the properties of Siebel Dedicated Application (Siebel Public Sector - ENU) shortcut. From the Target field get the cfg path which might look like this: " c:\Siebel\15.0.0.0.0\Client\bin\enu\publicsector.cfg " if you are using the vanilla cfg. You need modify the below CMD command as per your Siebel installation directory. C:\Siebel\15.0.0.0.0\ses\siebsrvr\BIN\genbscript C:\Siebel\15.0.0.0.0\Client\bin\enu\publicsector.cfg C:\Siebel\15.0.0.0.0\Client\PUBLIC\enu enu This is path of Browser Script generating Utility: C:\Siebel\15.0.0.0.0\ses\siebsrvr\BIN\genbscript This is the path of Siebel Dedicated Client cfg path: C:\Siebel\15.0.0.0.0\Client\bin\enu\publicsector.cfg Below is the path where Browser Script Utility will generate the Browser Scripts. Make sure this is correct as Siebel Dedicated Client get the Browser Scripts from this path ( *\Client\PUBLIC\enu ). C:\Siebel\15.0.0.0.0\Client\PUBLIC\enu Open the Windows Command Prompt and paste the above command and press ...

How to test inbound web services on Siebel Dedicated Client

How to test/ invoke/ enable inbound web services on Siebel Dedicated Client To enable Web services on the Siebel Dedicated Web Client follow below steps: 1: Set the following parameters in the [Siebel] section of the application configuration file, such as publicsector.cfg EnableWebServices = TRUE WebServicesPort = 2330 (Port number on which to listen. The default is 2330) Save the config file and launch siebel application again, you will see a child siebel.exe process is running in back ground. This process is listening all in bound SOAP requests.   2: Open Application and navigate to Administration - Inbound web service and select web service you want to test. In Port Applet change Address URL as follows: http://<Machine Name>:<Port Number>?SWEExtSource=WebService&SWEExtCmd=Execute&UserName=<UserName>&Password=<PassWord> For Example: http://localhost:2330?SWEExtSource=WebService&SWEExtCmd=Execute&UserName=SADMIN&Password=SADMIN Th...

Siebel Dedicated Client Auto Start and Start-Up Options and Spool Generation

The application shortcuts run an executable program called siebel.exe, followed by various start-up options. If you want to create shortcut for Siebel Dedicated Client right click on desktop and from "New" select "Shortcut" and provide below (modify Siebel exe path and configuration file path accordingly) : D:\siebel\8.2.2.0.0\Client_1\BIN\siebel.exe /c D:\Siebel\8.2.2.0.0\Client_1\bin\enu\publicsector.cfg /b "C:\Program Files\Internet Explorer\iexplore.exe" If you want to set default user, password and data source add blow in shortcut's property Target field. When you run short cut Siebel will not ask for Credentials and Data source. /u SADMIN /p SADMIN /d ServerDataSrc Resulting string will look like below: D:\siebel\8.2.2.0.0\Client_1\BIN\siebel.exe /c D:\Siebel\8.2.2.0.0\Client_1\bin\enu\publicsector.cfg /b "C:\Program Files\Internet Explorer\iexplore.exe" /u SADMIN /p SADMIN /d ServerDataSrc For creating spool of dedicated client add bel...

Tracing the Send Email Button Click Event for Send Button – Siebel Dedicated Client (Doc ID 477998.1) - Siebel

To troubleshoot issues with replying to or forwarding inbound emails, you can trace the clicking of the Send button on the screen. This will capture a full tracing of the Siebel client invoking any of these buttons. Follow the steps below to trace these button events on a Siebel Dedicated Client: Launch a Siebel Dedicated Client in the following manner. Click the Windows Start Button, and then choose Run. In the Run window, type CMD to invoke the Microsoft DOS Command window. In the Command window, change the directory to the BIN directory of the Siebel Dedicated Client. Type the following commands: Set SIEBEL_LOG_EVENTS=all Siebel.exe /c uagent.cfg NOTE: The second command assumes that you are running a Siebel Call Center application. If you are running a different application, use the appropriate .cfg file for the application. Log in to the Siebel application. From the application-level menu, choose View > User Preferences > Outbound Communications. Press Alt-Print Screen to ta...

How to configure Siebel Dedicated Client logs

About Environment Variables for System Logging The SIEBEL_LOG_EVENTS environment variable sets the event logging level, which determines the extent of information captured in the log file. More information is captured when the environment variable is set to a higher numeric value, and less information is captured when the variable is set to a lower numeric value. The numeric value is inversely proportional to the severity of the information—0 is more severe than 5 for instance. More disk space is consumed and performance is hindered when the value is set to a value of 5 than a value of 0. 0-Fatal 1-Errors 2-Warnings 3-Informational 4-Details 5-Diagnostic The SIEBEL_LOG_DIR environment variable determines the log file location. Set this variable to change the location from the default directory. Make sure this directory already exists, access permission to write a file in that location is available, and sufficient space is free to support the log file. Source: Oracle Docs Configure Sy...