SAP RMSA952_LOV_COMPEXCVAL_CONEST Function Module for NOTRANSL: EHS: Suchhilfe für parameterabhängige Komponentenarten
RMSA952_LOV_COMPEXCVAL_CONEST is a standard rmsa952 lov compexcval conest SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: EHS: Suchhilfe für parameterabhängige Komponentenarten processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for rmsa952 lov compexcval conest FM, simply by entering the name RMSA952_LOV_COMPEXCVAL_CONEST into the relevant SAP transaction such as SE37 or SE38.
Function Group: RMSA952
Program Name: SAPLRMSA952
Main Program: SAPLRMSA952
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RMSA952_LOV_COMPEXCVAL_CONEST pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'RMSA952_LOV_COMPEXCVAL_CONEST'"NOTRANSL: EHS: Suchhilfe für parameterabhängige Komponentenarten.
EXPORTING
I_OBJTYPE = "Specification Category
I_CONPARAM = "Context Parameter
I_ESTCAT = "Value Assignment Type
* I_REPID = "
* I_DYNNR = "ABAP Program, Current Screen Number
* I_FIELD = "ABAP Program, Current Screen Number
* I_STEPL = "Screens: Index of Current Table Line
* I_DISPLAY = "
* I_SUBCAT = "Specification Type
TABLES
* E_RETURN_TAB = "Interface Structure Search Help <-> Help System
EXCEPTIONS
PARAMETER_ERROR = 1
IMPORTING Parameters details for RMSA952_LOV_COMPEXCVAL_CONEST
I_OBJTYPE - Specification Category
Data type: TCGOBJ-OBJTYPEOptional: No
Call by Reference: Yes
I_CONPARAM - Context Parameter
Data type: TCG78OBJCON-CONPARAMOptional: No
Call by Reference: Yes
I_ESTCAT - Value Assignment Type
Data type: TCG78OBJCON-ESTCATOptional: No
Call by Reference: Yes
I_REPID -
Data type: SY-REPIDOptional: Yes
Call by Reference: Yes
I_DYNNR - ABAP Program, Current Screen Number
Data type: SY-DYNNROptional: Yes
Call by Reference: Yes
I_FIELD - ABAP Program, Current Screen Number
Data type:Optional: Yes
Call by Reference: Yes
I_STEPL - Screens: Index of Current Table Line
Data type: SY-STEPLOptional: Yes
Call by Reference: Yes
I_DISPLAY -
Data type: ESP1_BOOLEANOptional: Yes
Call by Reference: Yes
I_SUBCAT - Specification Type
Data type: ESESUBCATOptional: Yes
Call by Reference: Yes
TABLES Parameters details for RMSA952_LOV_COMPEXCVAL_CONEST
E_RETURN_TAB - Interface Structure Search Help <-> Help System
Data type: DDSHRETVALOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
PARAMETER_ERROR - Parameter Error
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RMSA952_LOV_COMPEXCVAL_CONEST Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_i_objtype | TYPE TCGOBJ-OBJTYPE, " | |||
| lt_e_return_tab | TYPE STANDARD TABLE OF DDSHRETVAL, " | |||
| lv_parameter_error | TYPE DDSHRETVAL, " | |||
| lv_i_conparam | TYPE TCG78OBJCON-CONPARAM, " | |||
| lv_i_estcat | TYPE TCG78OBJCON-ESTCAT, " | |||
| lv_i_repid | TYPE SY-REPID, " | |||
| lv_i_dynnr | TYPE SY-DYNNR, " | |||
| lv_i_field | TYPE SY, " | |||
| lv_i_stepl | TYPE SY-STEPL, " | |||
| lv_i_display | TYPE ESP1_BOOLEAN, " | |||
| lv_i_subcat | TYPE ESESUBCAT. " |
|   CALL FUNCTION 'RMSA952_LOV_COMPEXCVAL_CONEST' "NOTRANSL: EHS: Suchhilfe für parameterabhängige Komponentenarten |
| EXPORTING | ||
| I_OBJTYPE | = lv_i_objtype | |
| I_CONPARAM | = lv_i_conparam | |
| I_ESTCAT | = lv_i_estcat | |
| I_REPID | = lv_i_repid | |
| I_DYNNR | = lv_i_dynnr | |
| I_FIELD | = lv_i_field | |
| I_STEPL | = lv_i_stepl | |
| I_DISPLAY | = lv_i_display | |
| I_SUBCAT | = lv_i_subcat | |
| TABLES | ||
| E_RETURN_TAB | = lt_e_return_tab | |
| EXCEPTIONS | ||
| PARAMETER_ERROR = 1 | ||
| . " RMSA952_LOV_COMPEXCVAL_CONEST | ||
ABAP code using 7.40 inline data declarations to call FM RMSA952_LOV_COMPEXCVAL_CONEST
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single OBJTYPE FROM TCGOBJ INTO @DATA(ld_i_objtype). | ||||
| "SELECT single CONPARAM FROM TCG78OBJCON INTO @DATA(ld_i_conparam). | ||||
| "SELECT single ESTCAT FROM TCG78OBJCON INTO @DATA(ld_i_estcat). | ||||
| "SELECT single REPID FROM SY INTO @DATA(ld_i_repid). | ||||
| "SELECT single DYNNR FROM SY INTO @DATA(ld_i_dynnr). | ||||
| "SELECT single STEPL FROM SY INTO @DATA(ld_i_stepl). | ||||
Search for further information about these or an SAP related objects