|
Siebel Advisor API Reference > Siebel-Specific Functions for Siebel Advisor >
GetCDAEntryArgs()
Usage
Use the GetCDAEntryArgs() function to return the argument array last passed into the ShowCDA function. ShowCDA is called as follows: var myArgs = new Object();
myArgs["userDiscount"] = 10;
ISS.ShowCDA("Cars|sedans", null, myArgs);
Within the application, the arguments sent can be accessed as follows: var discount = args["userDiscount"];
discount will get the value 10.
|