Formats for Siebel eScript
If there is a return value, then use the following format:
returnValue = ObjectReference.MethodName(arg1, arg2, ..., argn);
If there are no arguments, then use the following format:
returnValue = ObjectReference.MethodName();
If there is no return value, then use the following format:
ObjectReference.MethodName(arg1, arg2, ..., argn);
The following examples use Siebel eScript:
acctName = acctBC.GetFieldValue("Name");
acctBC.SetViewMode(AllView);