Siebel SmartScript Administration Guide > Extending Scripts with Siebel VB and Siebel eScript > Other Preprogrammed SmartScript Question Methods >

GetSaveBusComp


GetSaveBusComp returns the business component configured to store the answer.

Syntax

GetSaveBusComp

Returns

The instance of the business component in which the answer is to be stored, as a BusComp.

Usage

GetSaveBusComp returns the instance of the business component used to store the answer in. If no field and business component are configured on this question, it returns nothing. GetSaveBusComp is declared as type BusComp.

Siebel VB Example

Dim BC as BusComp
Dim Q as SmartScriptQuestion

Set Q = Page.GetQuestion("Intake Interview: Patient Name")

Set BC = Q.GetSaveBusComp

BC.NewRecord NewBefore

See Also

SaveBusCompName.

Siebel SmartScript Administration Guide