Siebel Object Interfaces Reference > Siebel eScript Quick Reference >

Business Component Events for eScript


Table 89 lists a summary of the business component events.

Table 89. Business Component Events Syntax Summary
Event
Description
Syntax

BusComp_Associate Event

Called after a record is added to a business component to create an association.

BusComp_Associate()

BusComp_ChangeRecord Event

Called after the current row changes in the business component.

BusComp_ChangeRecord()

BusComp_CopyRecord Event

Called after a new row is copied in the business component.

BusComp_CopyRecord()

BusComp_DeleteRecord Event

Called after a row is deleted in the business component.

BusComp_DeleteRecord()

BusComp_InvokeMethod Event

Called after a specialized method is invoked in the business component.

BusComp_InvokeMethod(methodName)

BusComp_NewRecord Event

Called after a new row has been created and made active in the business component.

BusComp_NewRecord()

BusComp_PreAssociate Event

Called before a record is added to a business component to create an association.

BusComp_PreAssociate()

BusComp_PreCopyRecord Event

Called before a new row is copied in the business component.

BusComp_PreCopyRecord()

BusComp_PreDeleteRecord Event

Called before a row is deleted in the business component.

BusComp_PreDeleteRecord()

BusComp_PreGetFieldValue Event

Called when the value of the business component field is accessed.

BusComp_PreGetFieldValue
(FieldName, &FieldValue)

BusComp_PreInvokeMethod Event

Called before a specialized method is invoked on a business component.

BusComp_PreInvokeMethod
(methodName)

BusComp_PreNewRecord Event

Called before a new row is created in the business component.

BusComp_PreNewRecord()

BusComp_PreQuery Event

Called before query execution.

BusComp_PreQuery()

BusComp_PreSetFieldValue Event

Called before a value is pushed down into the business component from the user interface.

BusComp_PreSetFieldValue
(FieldName, FieldValue)

BusComp_PreWriteRecord Event

Called before a row is written out to the database.

BusComp_PreWriteRecord()

BusComp_Query Event

Called after the query is complete and every row has been retrieved, but before they have been displayed.

BusComp_Query()

BusComp_SetFieldValue Event

Called after a value has been pushed down into the business component from the user interface.

BusComp_SetFieldValue(FieldName)

BusComp_WriteRecord Event

Called after a row is written to the database.

BusComp_WriteRecord()

Siebel Object Interfaces Reference Copyright © 2008, Oracle. All rights reserved.