April 07, 2022
• Guide
You might need to extract a specific file from Siebel Attachments or want to attach that file in Email as attachment. To achieve that Siebel...
Read More →
March 07, 2022
• Guide
In Siebel if you copy the value from field (which have line break character) and paste in notepad it will look fine, but when you use query ...
Read More →
August 15, 2021
• Guide
var EngBO, EngBC, EngId, RecordCount, withRecord, UserName, UserId; EngBO = TheApplication().GetBusObject("My Business Object");...
Read More →
August 15, 2021
• Guide
Insert Record through Siebel eScript var TBO, TBC; TBO = TheApplication().GetBusObject("My Business Object"); TBC = TBO.GetBusComp...
Read More →
August 15, 2021
• Guide
substring() Method Extract desired characters from a String (Length Fixed) var SHRs, SMins, TimeStart = "10:30"; SHRs = TimeStart...
Read More →
August 15, 2021
• Guide
Below function in Siebel eScipt will return the Day from the date. Input: CurrentDate: 08/10/2021 (MM/DD/YYYY) Result: Tuesday var dayName, ...
Read More →
August 15, 2021
• Guide
for Statement for (var i = 1; i <= 10; i++) { //Operation } Syntax for ( [var] counter = start; condition; increment ) { stateme...
Read More →
August 15, 2021
• Guide
Below is eScript which will get the today's date: var CurrentDate, DateStart, MM, DD, YYYY; if (DateStart == "") { ...
Read More →
August 15, 2021
• Guide
Below sScript will help to get today's date with next year. Today: 08/10/2021 Result: 08/10/2022 var CurrentDate, DateEnd, DD, MM, YY...
Read More →
August 15, 2021
• Guide
Date input: MM/DD/YYYY format. Function will return date difference in Days. Inputs: DateStart: 08/10/2021 DateEnd: 08/11/2021 Result: ...
Read More →
April 09, 2021
• Guide
Error: The method 'My BS Method' is not supported on Business Service 'My Custom Business Service'. (SBL-DAT-00323) Possi...
Read More →
December 24, 2020
• คtเŦ
You can perform query operation on Business Component through Workflow, eScript with the help of Siebel Operation, Inbound E-mail Database O...
Read More →
August 17, 2020
• คtเŦ
Below code will convert DD/MM/YYYY to MM/DD/YYYY date format. if(MethodName == "SETDATE") { ...
Read More →
June 21, 2020
• คtเŦ
I have created a Business Service, which takes single input and split the name based on space return the final values in output arguments. ...
Read More →
June 21, 2020
• คtเŦ
Create new record in Business Service, provide appropriate name and project. Create new record in Business Service Method, provide appropr...
Read More →
June 21, 2020
• คtเŦ
I have created a simple Business Service, which takes single input and check if that string contain "-" and it will remove and re...
Read More →
March 26, 2020
• คtเŦ
Through eScript BC InvokeMethod if (MethodName == "MyMethod") { var oBS=TheApplication().GetService("Workflow Proc...
Read More →
February 12, 2020
• คtเŦ
Create calculated field in BC and add below Calculated Value: InvokeServiceMethod ("Business Service Name", "Business Serv...
Read More →
January 05, 2020
• คtเŦ
Below is the eScript for sending information to http site. Business Service: EAI HTTP Transport Method: SendReceive eScript: var s...
Read More →
January 01, 2020
• คtเŦ
Siebel is returning below error, when invoking Outbound Web Service through Workflow. Error Code (SBL-BPR-00162)--IDS_EAI_WS_OD_RESPONSE...
Read More →