Siebel Object Interfaces Reference > Siebel VB Quick Reference > Object Interfaces Reference >

Business Component Events for Siebel VB


Table 115 describes a summary of the business component events you can use with Siebel VB.

Table 115. Summary of Business Component Events for Siebel VB
Event
Description
Format

BusComp_Associate Event

Called if the user adds a business component record to create an association.

BusComp_Associate

BusComp_ChangeRecord Event

Called if a business component record becomes the current record.

BusComp_ChangeRecord

BusComp_CopyRecord Event

Called if the user copies a business component record, and if the user makes this record the active record.

BusComp_CopyRecord

BusComp_DeleteRecord Event

Called if the user deletes a business component record.

BusComp_DeleteRecord

BusComp_InvokeMethod Event

Called if Siebel CRM calls the InvokeMethod method on a business component.

BusComp_InvokeMethod
(methodName as String)

BusComp_NewRecord Event

Called if the user creates a business component record, and if the user makes this record the active record. You can use this event to set up default values for a field.

BusComp_NewRecord

BusComp_PreAssociate Event

Called if Siebel CRM detects that the user is about to add a business component record to create an association.

BusComp_PreAssociate

BusComp_PreCopyRecord Event

Called if Siebel CRM detects that the user is about to copy a business component record. You can use this event to perform precopy validation.

BusComp_PreCopyRecord

BusComp_PreDeleteRecord Event

Called if Siebel CRM detects that the user is about to delete a business component record. You can use this event to prevent the deletion or to perform any actions before Siebel CRM deletes the record.

BusComp_PreDeleteRecord

BusComp_PreGetFieldValue Event

Called if a user accesses a business component field.

BusComp_PreGetFieldValue
(FieldName as String, FieldValue as String)

BusComp_PreInvokeMethod Event

Called if Siebel CRM calls a specialized method on a business component. Siebel CRM calls it before it calls this specialized method.

BusComp_PreInvokeMethod
(methodName as String)

BusComp_PreNewRecord Event

Called if Siebel CRM detects that the user is about to create a new business component record. You can use this event to perform preinsert validation.

BusComp_PreNewRecord

BusComp_PreQuery Event

Siebel CRM calls the BusComp_PreQuery event before it runs a query. You can use this event to modify the search criteria or to restrict Siebel CRM from running certain queries.

BusComp_PreQuery

BusComp_PreSetFieldValue Event

Siebel CRM calls this event after the user modifies a field value or after a call to the SetFieldValue method occurs. This event allows you to use custom validation before Siebel CRM applies predefined validation.

BusComp_PreSetFieldValue
(FieldName as String, FieldValue as String)

BusComp_PreWriteRecord Event

Called before Siebel CRM writes a record to the Siebel database.

BusComp_PreWriteRecord

BusComp_Query Event

Called after Siebel CRM completes a query but before it displays the query results.

BusComp_Query

BusComp_SetFieldValue Event

Called if Siebel CRM sends a value to a business component from the Siebel client or through a call to the SetFieldValue method.

BusComp_SetFieldValue
(fieldName as String)

BusComp_WriteRecord Event

Called after Siebel CRM saves the record to the Siebel database.

BusComp_WriteRecord

Siebel Object Interfaces Reference Copyright © 2018, Oracle and/or its affiliates. All rights reserved. Legal Notices.