Siebel Advisor API Reference > Siebel-Specific Functions for Siebel Advisor >

GetCDAEntryArg()


Usage

Use the GetCDAEntryArg() function to return a specified value in the argument array associated with the pageset name last passed into the ShowCDA function.

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 = ISS.GetCDAEntryArg("userDiscount");

discount will get the value 10.

Siebel Advisor API Reference