SAP CL_RSEM_REFERENCE_REGISTRY OO Class - Maintains the list of all unique references in a model
CL_RSEM_REFERENCE_REGISTRY 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_REFERENCE_REGISTRY including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of CL_RSEM_REFERENCE_REGISTRY 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_OBJECT_REFERENCE | Adds new object reference to a model registry | Public |
| CALL METHOD cl_rsem_reference_registry=>ADD_OBJECT_REFERENCE...more details | ||
| CLASS_CONSTRUCTOR | CLASS_CONSTRUCTOR | Public |
| CALL METHOD cl_rsem_reference_registry=>CLASS_CONSTRUCTOR...more details | ||
| CREATE_URI_FRAGMENT | Constructs a reference URI fragment from an object ID | Public |
| CALL METHOD cl_rsem_reference_registry=>CREATE_URI_FRAGMENT...more details | ||
| GET_NAME_FROM_URI_FRAGMENT | Retrieves the original object name from an URI fragment | Public |
| CALL METHOD cl_rsem_reference_registry=>GET_NAME_FROM_URI_FRAGMENT...more details | ||
| GET_OBJECT | Returns a new instance of a supported model object | Private |
| CALL METHOD cl_rsem_reference_registry=>GET_OBJECT...more details | ||
| GET_OBJECT_KEY | Return the BW Object Key | Private |
| CALL METHOD cl_rsem_reference_registry=>GET_OBJECT_KEY...more details | ||
|
| ||
| GET_REFERENCE_REGISTRY | Returns the reference registry for a particular model | Public |
| CALL METHOD cl_rsem_reference_registry=>GET_REFERENCE_REGISTRY...more details | ||
| GET_RESOURCE_FROM_URI | Retrieves the resource part of the URI | Public |
| CALL METHOD cl_rsem_reference_registry=>GET_RESOURCE_FROM_URI...more details | ||
| REMOVE_OBJECT_REFERENCE | Removes a registered reference from a model registry | Public |
| CALL METHOD cl_rsem_reference_registry=>REMOVE_OBJECT_REFERENCE...more details | ||
| RESOLVE_OBJECT_REFERENCE | Resolves an already registered object reference | Public |
| CALL METHOD cl_rsem_reference_registry=>RESOLVE_OBJECT_REFERENCE...more details | ||
| UPDATE_MODEL_FROM_DIRECTORY | Updates the Object Model Directory | Private |
| CALL METHOD cl_rsem_reference_registry=>UPDATE_MODEL_FROM_DIRECTORY...more details | ||
| UPDATE_OBJECT_REFERNECE | Updates an existing object entry | Public |
| CALL METHOD cl_rsem_reference_registry=>UPDATE_OBJECT_REFERNECE...more details | ||
CL_RSEM_REFERENCE_REGISTRY 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_MODEL_ROOT_FRAGMENT | Constant | URI fragment to the model root node | '#//' | LIKE STRING | Public |
| G_C_MODEL_ROOT_FRAGMENT_SHORT | Constant | Short URI root fragment (i.e. HANA view( | '#/' | LIKE STRING | Public |
| G_C_TLOGO_HANA_VIEW | Constant | Logical TLOGO for HANA View references | 'VHNA' | LIKE STRING | Public |
| P_TH_EMF_TLOGO | Static Attribute | EMF package to TLOGO map | LIKE TP_TH_EMF_TLOGO | Private | |
| P_TH_MODEL_DIRECTORY | Static Attribute | BW TLOGO Object Directory | LIKE TP_TH_MODEL_DIRECTORY | Private | |
| P_TH_REFERENCE | Instance Attribute | Model references | LIKE | Private | |
| P_TH_REGISTRY | Static Attribute | Registry of references per model | LIKE TN_TH_REGISTRY | Private |
Events of Class CL_RSEM_REFERENCE_REGISTRY
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... REFERENCE_CHANGED - Target reference ID has changedREFERENCE_DELETED - Target reference was deleted
CL_RSEM_REFERENCE_REGISTRY types
TN_S_REGISTRY - Table of references for a particular object modelTN_TH_REGISTRY - Registry of references per model
TP_S_EMF_TLOGO - EMF package to TLOGO map entry
TP_S_MODEL_DIRECTORY - Directory Entry for BW TLOGO Object Model
TP_TH_EMF_TLOGO - EMF package to TLOGO map
TP_TH_MODEL_DIRECTORY - BW TLOGO Object Directory
Links to Related Class(s)
CL_RSEM_...Full list of available SAP object classes
Search for further information about these or an SAP related objects