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

ShowCDA


Usage

Use the ShowCDA function to load a specified pageset using a linkback string.

Syntax

ShowCDA(pagesetName,linkbackString,args[])

Argument
Description

pagesetName

Name of the pageset, specified in the format "project|pageset" (for example, Cars|Sedans). If "project|pageset" is not specified, showCDA loads the personalized contents list of the specified project. If a NULL parameter is specified, ShowCDA loads the default project.

linkbackString

Optional argument. linkbackString is the string used to restore a previous state. Use the same string the browser-based engine passed off to the server and stored in the database.

args

Optional argument. Add a ShowContents property to the args[] object and set it to "true" in order to display a contents list when the pageset appears. By default, this variable is set to false. Use the GetCDAEntryArgs() and GetCDAEntryArg() functions to return the argument array.

Example

var optArgs = new Object;

optArgs.ShowContents = true;

ISS.ShowCDA("Cars|Sedans", null, optArgs);

Siebel Advisor API Reference