SAP CL_CRM_BOL_ENTITY_COL_TAB OO Class - Coll. for Related Entities read with a Table Based Interface
CL_CRM_BOL_ENTITY_COL_TAB 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_ENTITY_COL_TAB 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_ENTITY_COL_TAB is CL_CRM_BOL_ENTITY_COLMethod list of CL_CRM_BOL_ENTITY_COL_TAB 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_MISSING_ENTITY | Private | |
| CALL METHOD cl_crm_bol_entity_col_tab=>ADD_MISSING_ENTITY...more details | ||
| CLASS_CONSTRUCTOR | CLASS_CONSTRUCTOR | Public |
| CALL METHOD cl_crm_bol_entity_col_tab=>CLASS_CONSTRUCTOR...more details | ||
| CONSTRUCTOR | CONSTRUCTOR | Public |
| CALL METHOD cl_crm_bol_entity_col_tab=>CONSTRUCTOR...more details | ||
| GET_KEY | Private | |
| CALL METHOD cl_crm_bol_entity_col_tab=>GET_KEY...more details | ||
| MAKE_TABIX_ABSOLUTE | Private | |
| CALL METHOD cl_crm_bol_entity_col_tab=>MAKE_TABIX_ABSOLUTE...more details | ||
| MAKE_TABIX_RELATIVE | Private | |
| CALL METHOD cl_crm_bol_entity_col_tab=>MAKE_TABIX_RELATIVE...more details | ||
|
| ||
| ON_BO_DELETED | Private | |
| CALL METHOD cl_crm_bol_entity_col_tab=>ON_BO_DELETED...more details | ||
| RAISE_ENTITY_MISSING | Private | |
| CALL METHOD cl_crm_bol_entity_col_tab=>RAISE_ENTITY_MISSING...more details | ||
| RESOLVE_ALL_ENTRIES | Private | |
| CALL METHOD cl_crm_bol_entity_col_tab=>RESOLVE_ALL_ENTRIES...more details | ||
CL_CRM_BOL_ENTITY_COL_TAB 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 |
| ABSOLUTE_INDEX_2_REMOVE | Instance Attribute | Index of Internal Tables | 0 | LIKE SYTABIX | Private |
| ABSOLUTE_TABIX | Instance Attribute | Index of Internal Tables | LIKE SYTABIX | Private | |
| CO_TABIX_SCOPE_ABSOLUTE | Constant | Single-Character Flag | 'A' | LIKE CHAR1 | Private |
| CO_TABIX_SCOPE_RELATIVE | Constant | Single-Character Flag | 'R' | LIKE CHAR1 | Private |
| CREATE_TABLE_COPY | Instance Attribute | ABAP_FALSE | LIKE ABAP_BOOL | Private | |
| KEY_COLUMN_NAME | Instance Attribute | Component name | LIKE NAME_KOMP | Public | |
| OBJ_MODEL | Static Attribute | Interface for Access to Central Object Model | LIKE IF_GENIL_OBJ_MODEL | Private | |
| PAGE_HANDLER | Instance Attribute | Page Handler | LIKE CL_CRM_BOL_PAGE_HANDLER | Private | |
| PAGE_SIZE | Instance Attribute | LIKE I | Private | ||
| PARENT | Instance Attribute | Entity | LIKE CL_CRM_BOL_ENTITY | Private | |
| RELATION_NAME | Instance Attribute | Relation Name | LIKE CRMT_RELATION_NAME | Private | |
| TABIX_SCOPE | Instance Attribute | Single-Character Flag | LIKE CHAR1 | Private | |
| TABLE_REF | Instance Attribute | Table with Atributes of BOL Entities | LIKE DATA | Private |
Events of Class CL_CRM_BOL_ENTITY_COL_TAB
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... ENTITY_MISSING -CL_CRM_BOL_ENTITY_COL_TAB types
LTYPE_ENTITY_LINE_MAPPING -LTYPE_ENTITY_LINE_MAPPING_TAB -
Links 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