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 →
February 08, 2021
• Guide
Normally we use Search specification filed in Applet List, but sometime we have to add long search expression which Search specification fie...
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 →
June 20, 2020
• คtเŦ
You can use below eScript on Pre Set Field Value (recommended) or Set Field Value on Business Component Server Script. if (FieldName = ...
Read More →
June 20, 2020
• คtเŦ
You can use below eScript even if there is no field defined against the control you want to get the value. if(name == "myMethod...
Read More →
June 20, 2020
• คtเŦ
Background: On some action like button click it is recommended to add confirmation message as user might accidentally click the button and o...
Read More →
May 06, 2020
• คtเŦ
By using ParentBusComp Method you can get Parent BC field value from Child BC server script, given that in BO there must be link between Pa...
Read More →
April 20, 2020
• คtเŦ
Steps on which received Error: 1. Created new button with method name Validate. 2. Set the Applet user property CanInvokeMethod: Validat...
Read More →