SAP CL_CRM_BOL_TX_MANAGER OO Class - BOL Transaction Manager
CL_CRM_BOL_TX_MANAGER is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class CL_CRM_BOL_TX_MANAGER including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Inheritance
This OO class has a superclass assigned to it, which means it will inherit its objects and methods. The superclass for CL_CRM_BOL_TX_MANAGER is CL_CRM_BOL_CUSTOM_TX_CTXTMethod list of CL_CRM_BOL_TX_MANAGER SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| ADD_ENTITY | Private | |
| CALL METHOD cl_crm_bol_tx_manager=>ADD_ENTITY...more details | ||
| ADJUST_IDS | Private | |
| CALL METHOD cl_crm_bol_tx_manager=>ADJUST_IDS...more details | ||
| CHECK_ENTITY_IS_PERSISTENT | Checks Whether Entity Is Persistent | Public |
| CALL METHOD cl_crm_bol_tx_manager=>CHECK_ENTITY_IS_PERSISTENT...more details | ||
| CONSTRUCTOR | Constructor | Public |
| CALL METHOD cl_crm_bol_tx_manager=>CONSTRUCTOR...more details | ||
| GET_ENTITY | Returns an Entity for a Given Key | Private |
| CALL METHOD cl_crm_bol_tx_manager=>GET_ENTITY...more details | ||
| HANDLE_ADDITIONAL_REVERTED_OBJ | Private | |
| CALL METHOD cl_crm_bol_tx_manager=>HANDLE_ADDITIONAL_REVERTED_OBJ...more details | ||
|
| ||
| HANDLE_ADDITIONAL_SAVED_OBJ | Private | |
| CALL METHOD cl_crm_bol_tx_manager=>HANDLE_ADDITIONAL_SAVED_OBJ...more details | ||
| ON_ENTITY_CREATED | Private | |
| CALL METHOD cl_crm_bol_tx_manager=>ON_ENTITY_CREATED...more details | ||
| ON_ENTITY_DELETED | Private | |
| CALL METHOD cl_crm_bol_tx_manager=>ON_ENTITY_DELETED...more details | ||
| REMOVE_ENTITIES_FROM_BOL_CACHE | Private | |
| CALL METHOD cl_crm_bol_tx_manager=>REMOVE_ENTITIES_FROM_BOL_CACHE...more details | ||
| REMOVE_ENTITY | Private | |
| CALL METHOD cl_crm_bol_tx_manager=>REMOVE_ENTITY...more details | ||
CL_CRM_BOL_TX_MANAGER attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| BOL_CORE | Instance Attribute | Business Object Layer Core | LIKE CL_CRM_BOL_CORE | Private | |
| CO_LUW_COMMIT | Constant | Checkbox: Transaction Ends with COMMIT | 'C' | LIKE CHAR1 | Public |
| CO_LUW_ROLLBACK | Constant | Checkbox: Transaction Ends with ROLLBACK | 'R' | LIKE CHAR1 | Public |
| CO_NOT_SAVED | Constant | Checkbox: Not Saved | 'N' | LIKE CHAR1 | Public |
| CO_SAVED_FAILED | Constant | Checkbox: Saved Unsuccessfully | 'F' | LIKE CHAR1 | Public |
| CO_SAVED_SUCCESS | Constant | Checkbox: Saved Successfully | 'S' | LIKE CHAR1 | Public |
| ENTITY_BEING_REMOVED | Instance Attribute | Object Instance in the Generic Interaction Layer | LIKE CRMT_GENIL_OBJ_INSTANCE | Private | |
| GENERIC_IL | Instance Attribute | Generic Interaction Layer | LIKE CL_CRM_GENERIC_IL_NEW | Private | |
| GLOBAL_MESSAGE_CONT | Instance Attribute | Global Message Container | LIKE CL_CRM_GENIL_GLOBAL_MESS_CONT | Private |
Events of Class CL_CRM_BOL_TX_MANAGER
Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... LUW_FINISHED - Database LUW Ended Using COMMIT or ROLLBACKLinks to Related Class(s)
CL_CRM_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects