GET_OBJECT_NAME_CONCAT SAP Method Split Object Type and Object Name
Below is documentation, parameters and attributes of ABAP Method GET_OBJECT_NAME_CONCAT within SAP class CL_ALV_TRACE. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name CL_ALV_TRACE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method GET_OBJECT_NAME_CONCAT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_OBJECT_NAME_CONCAT
.| Name | Type | Data Type | Description | Default Value |
| I_OBJECT_NAME | Importing | TYPE ANY | ABAP Program, Caller in External Procedures | |
| I_OBJECT_TYPE | Importing | TYPE I | ||
| I_SELSET | Importing | TYPE SY-SLSET | Selection Screens, Name of Variant | |
| I_OBJECT_NAME | Importing | TYPE ANY | ABAP program: Caller in external procedures | |
| E_OBJECT_NAME | Exporting | TYPE ANY | ABAP Program, Caller in External Procedures | |
| E_SELSET | Exporting | TYPE SY-SLSET | Selection Screens, Name of Variant | |
| E_OBJECT_NAME | Exporting | TYPE ANY | ABAP program: Caller in external procedures |
Exceptions of Method GET_OBJECT_NAME_CONCAT
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lv_E_OBJECT_NAME TYPE ANY,
lv_E_SELSET TYPE SY-SLSET,
lv_I_OBJECT_NAME TYPE ANY,
lv_I_OBJECT_TYPE TYPE I,
lv_I_SELSET TYPE SY-SLSET,
lv_E_OBJECT_NAME TYPE ANY,
lv_I_OBJECT_NAME TYPE ANY,
lv_other TYPE c.
CALL METHOD CL_ALV_TRACE=>GET_OBJECT_NAME_CONCAT(
EXPORTING
I_OBJECT_NAME = lv_I_OBJECT_NAME
I_OBJECT_TYPE = lv_I_OBJECT_TYPE
I_SELSET = lv_I_SELSET
I_OBJECT_NAME = lv_I_OBJECT_NAME
IMPORTING
E_OBJECT_NAME = lv_E_OBJECT_NAME
E_SELSET = lv_E_SELSET
E_OBJECT_NAME = lv_E_OBJECT_NAME ).
Links to Related Class(s)
CL_ALV_T...Full list of available SAP object classes
Search for further information about these or an SAP related objects