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 →
August 09, 2021
• Guide
Issue: Below applet search spec is not working. On UI all Approved records are also showing. [Primary Owner Id] = LoginId() AND [Status] ...
Read More →