Siebel Advisor API Reference > Data Access Functions for Siebel Advisor >

GetResultsValue


Usage

Use the GetResultsValue function to retrieve a single value from the results set generated by the engine.

This function is called by the BuildTarget function. Consider calling this function directly if you are developing a custom output target or trying to access a value from a display page.

Call this function while a product is actively being configured. Do not call this function when no product has been selected (for example, right after the application starts).

Syntax

GetResultsValue(targetName)

Argument
Description

targetName

Name of a data element that can be used as an output target (for example, Configuration table column name, Feature table name, Feature table column name, and so on.)

Example

The following sample code returns the price of the current item, where PRICE is a Configuration table column name:

var price = ISS.GetResultsValue("PRICE");

See Also

Example of Creating a Custom Output Target

Siebel Advisor API Reference