Skip to main content

Posts

Showing posts from July, 2021

Required argument 'BusComp' for method 'GetBOAndBC' is missing or empty SBL-CMI-00121

Error Code: (SBL-BPR-00162)--(SBL-CMI-00121) Error Message: Error invoking service 'Inbound E-mail Database Operations', method 'UpdateRecord' at step 'Update Data'.(SBL-BPR-00162)--Required argument 'BusComp' for method 'GetBOAndBC' is missing or empty.(SBL-CMI-00121) Behavior:  Reason: Missing Business Component name in Value column of Input Arguments of business service step. Solution: Add the business component name.  

No branch conditions are satisfied at step Business Service SBL-BPR-00174

Error Code: (SBL-BPR-00174) Error Message: No branch conditions are satisfied at step 'Business Service 0'.(SBL-BPR-00174) Behavior: Step is working fine but in workflow instance monitor it is showing above error in Process Properties. Reason: Added only Error Exception connector to next step but not the normal connector. Solution: Add the normal connector as well.

Create a drop down list in MS Excel cell

Select the cells or Column where you want to add the drop down list.  Go to Data tab and click on Data Validation.   In dialog set List in Allow field. Now in Source field select the excel sheet and then cells (using cursor select the cell range) which have the drop down values. Click OK. Now check the cell. It will have the drop down arrow and on clicking it will display the values.

Date out of range when inserting date in Siebel

Issue:  Receiving below error when trying to insert data using EAI Siebel Adapter service in workflow: Error invoking service 'EAI Siebel Adapter', method 'Upsert' at step 'upsert PP data'.(SBL-BPR-00162)--Method 'SetFieldValue' of business component 'Profile BC' (integration component 'Profile BC') for record with search specification '[Identity Number] = "1234567890"' returned the following error:"Date out of range.  Valid range is January 1, 1753 to December 31, 4712 .(SBL-DAT-00374)"(SBL-EAI-04451) (SBL-BPR-00162)--(SBL-DAT-00374) Reason: On further investigation found that  date value was 01-01-0001 in Siebel message against date field. Which Siebel was not accepting as minimum date can be added in Siebel is 01-01-1753. Solution: Corrected the date input.

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...

Failed to load user preference file when opening Siebel Tools SBL-UIW-00138

Issue: When try to login Siebel Tools error appear as below: Failed to load user preference file 'E:\Siebel\8.2.2.0.0\Tools_1\bin\SADMIN&Siebel Tools.spf'(SBL-UIW-00138)  Reason: Can be multiple reasons, most common is due to disk space full Siebel Tools not able to write data in spf file on close. Solution: Go to file path delete or rename the file and try to login again in Siebel Tools.

How to enable NumLock key in Windows 10

1. Click on the Start Button and type in regedit and hit Enter.  2. Navigate through HKEY_USERS, .DEFAULT, Control Panel and then Keyboard. 3. Right click on InitialKeyboardIndicators and select Modify. 4. Set the value to 2147483650 and click OK.   Alternatively, some user have had success with just setting the value to 2. 5. Reboot and number lock should now be enabled. Still not working? There appears to be a bug with the boot process properly reading this setting when the fast startup feature of Windows 10 is enabled.  Fast startup is a useful feature that shaves a few seconds off your boot time by hibernating a portion of the boot process.  As this hibernation image was created prior to the InitialKeyboardIndicators setting change, that may explain why the updated value is not properly loaded. You can turn off fast startup in Power Options and turn it back on later very easily. 1. Click on the Start Button and type in Power Options. 2. Select Choose what th...