SAP CL_RSEM_ENTITY OO Class - 1View Entity Implementation
CL_RSEM_ENTITY 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_RSEM_ENTITY 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_RSEM_ENTITY is CL_RSEM_MODEL_OBJECTInterface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_RSEM_STRUCTURE_TYPEMethod list of CL_RSEM_ENTITY 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_ELEMENT | Adds a new structure element (field) | Public |
| CALL METHOD cl_rsem_entity=>ADD_ELEMENT...more details | ||
| ADD_KEY_ELEMENT | Adds a new key element (field) reference | Public |
| CALL METHOD cl_rsem_entity=>ADD_KEY_ELEMENT...more details | ||
| CONSTRUCTOR | Instance Constructor | Public |
| CALL METHOD cl_rsem_entity=>CONSTRUCTOR...more details | ||
| GET_DATA_CATEGORY | Returns the data category for HANA repository | Public |
| CALL METHOD cl_rsem_entity=>GET_DATA_CATEGORY...more details | ||
| GET_ELEMENT | Returns an initialized element object | Protected |
| CALL METHOD cl_rsem_entity=>GET_ELEMENT...more details | ||
| GET_ELEMENTS | Returns the list of contained Elements (structure fields) | Public |
| CALL METHOD cl_rsem_entity=>GET_ELEMENTS...more details | ||
|
| ||
| GET_ELEMENT_BY_NAME | Returns the element instance which has the given name | Public |
| CALL METHOD cl_rsem_entity=>GET_ELEMENT_BY_NAME...more details | ||
| GET_END_USER_TEXTS | Returns the end user texts | Public |
| CALL METHOD cl_rsem_entity=>GET_END_USER_TEXTS...more details | ||
| GET_KEY_ELEMENTS | Returns the list of key elements in order of input | Public |
| CALL METHOD cl_rsem_entity=>GET_KEY_ELEMENTS...more details | ||
| GET_NAME | Returns the object name (redundant with tlogo properties) | Public |
| CALL METHOD cl_rsem_entity=>GET_NAME...more details | ||
| GET_OBJECT_TYPE | Returns the object type for HANA repository | Public |
| CALL METHOD cl_rsem_entity=>GET_OBJECT_TYPE...more details | ||
| GET_PHYSICAL_SCHEMA_NAME | Returns the physical DB Schema Name | Public |
| CALL METHOD cl_rsem_entity=>GET_PHYSICAL_SCHEMA_NAME...more details | ||
| GET_QUALIFIER | Returns the name qualifier (repo package) | Public |
| CALL METHOD cl_rsem_entity=>GET_QUALIFIER...more details | ||
| GET_RUNTIME_PROPERTIES | Returns the infoprovider runtime properites object | Public |
| CALL METHOD cl_rsem_entity=>GET_RUNTIME_PROPERTIES...more details | ||
| HAS_HANA_MODEL | True if the CompositeProvider has generated HANA model | Public |
| CALL METHOD cl_rsem_entity=>HAS_HANA_MODEL...more details | ||
| IS_READ_ONLY | Returns the read-only model property | Public |
| CALL METHOD cl_rsem_entity=>IS_READ_ONLY...more details | ||
| REGISTER_REFERENCE_TARGETS | Registers all potential reference targets in the registry | Public |
| CALL METHOD cl_rsem_entity=>REGISTER_REFERENCE_TARGETS...more details | ||
| REMOVE_ELEMENT | Removes an element from the node structure | Public |
| CALL METHOD cl_rsem_entity=>REMOVE_ELEMENT...more details | ||
| REMOVE_KEY_ELEMENT | Removes an element from the list of key element references | Public |
| CALL METHOD cl_rsem_entity=>REMOVE_KEY_ELEMENT...more details | ||
| SET_DATA_CATEGORY | Sets the data category for HANA repository | Public |
| CALL METHOD cl_rsem_entity=>SET_DATA_CATEGORY...more details | ||
| SET_HANA_MODEL | Switches the HANA model generation on or off | Public |
| CALL METHOD cl_rsem_entity=>SET_HANA_MODEL...more details | ||
| SET_NAME | Sets the object name | Public |
| CALL METHOD cl_rsem_entity=>SET_NAME...more details | ||
| SET_OBJECT_TYPE | Sets the object type for HANA repository | Public |
| CALL METHOD cl_rsem_entity=>SET_OBJECT_TYPE...more details | ||
| SET_QUALIFIER | Sets the name prefix (repository package) | Public |
| CALL METHOD cl_rsem_entity=>SET_QUALIFIER...more details | ||
| SET_READ_ONLY | Sets the read-only model property | Public |
| CALL METHOD cl_rsem_entity=>SET_READ_ONLY...more details | ||
CL_RSEM_ENTITY 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 |
| G_C_DATA_CATEGORY_CUBE | Constant | Data category 'cube2 | 'CUBE' | LIKE STRING | Public |
| G_C_DATA_CATEGORY_DEFAULT | Constant | Default data category | 'DEFAULT' | LIKE STRING | Public |
| G_C_DATA_CATEGORY_DIMENSION | Constant | Data category 'dimension' (master data) | 'DIMENSION' | LIKE STRING | Public |
| G_C_DATA_CATEGORY_FACT | Constant | Data category 'fact table' | 'FACT' | LIKE STRING | Public |
| G_C_DATA_CATEGORY_HIERARCHY | Constant | Data category 'hierarchy' | 'HIERARCHY' | LIKE STRING | Public |
| G_C_DATA_CATEGORY_TEXT | Constant | Data category 'text table' | 'TEXT' | LIKE STRING | Public |
| G_C_XSI_TYPE_BW_ENTITY | Constant | XSI Type | 'BwCore:BwEntity' | LIKE STRING | Public |
| P_R_ROOT | Instance Attribute | Local reference to model structure | LIKE IF_BW_ENTITY_MODEL_TYPES=>TN_S_ENTITY_OBJECT | Private |
CL_RSEM_ENTITY types
TN_T_KEY_ELEMENT - Table with key fieldsLinks to Related Class(s)
CL_RSEM_...Full list of available SAP object classes
Search for further information about these or an SAP related objects