Siebel Object Interfaces Reference > Siebel VB Quick Reference >

Business Component Events for Siebel VB


Table 65 lists a summary of the business component events.

Table 65. Business Component Events 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 custom or specialized method is called on a business component.

BusComp_InvokeMethod
(methodName as String)

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 a business component field is accessed.

BusComp_PreGetFieldValue
(FieldName as String, FieldValue as String)

BusComp_PreInvokeMethod Event

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

BusComp_PreInvokeMethod
(methodName as String)

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 when a value is pushed down into the business component from the user interface or through a call to SetFieldValue.

BusComp_PreSetFieldValue
(FieldName as String, FieldValue as String)

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 or through a call to SetFieldValue.

BusComp_SetFieldValue
(fieldName as String)

BusComp_WriteRecord Event

Called after a row is written to the database.

BusComp_WriteRecord

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