SAP CNVL_GET_OBJECTS Function Module for NOTRANSL: Variable Übersichten: Objekte zu einer Listvariante holen
CNVL_GET_OBJECTS is a standard cnvl get objects 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: Variable Übersichten: Objekte zu einer Listvariante holen 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 cnvl get objects FM, simply by entering the name CNVL_GET_OBJECTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: CNVL
Program Name: SAPLCNVL
Main Program: SAPLCNVL
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CNVL_GET_OBJECTS 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 'CNVL_GET_OBJECTS'"NOTRANSL: Variable Übersichten: Objekte zu einer Listvariante holen.
EXPORTING
I_APPLIC = "Application
I_SUBAPP = "Subapplication
I_LSTVAR = "List Variant
* I_FLG_TCA11 = "
IMPORTING
E_TCA11 = "
TABLES
* E_TCNVZ = "
IMPORTING Parameters details for CNVL_GET_OBJECTS
I_APPLIC - Application
Data type: TCNVZ-APPLICOptional: No
Call by Reference: No ( called with pass by value option)
I_SUBAPP - Subapplication
Data type: TCNVZ-SUBAPPOptional: No
Call by Reference: No ( called with pass by value option)
I_LSTVAR - List Variant
Data type: TCNVZ-LSTVAROptional: No
Call by Reference: No ( called with pass by value option)
I_FLG_TCA11 -
Data type: RC27X-FLG_SELOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CNVL_GET_OBJECTS
E_TCA11 -
Data type: TCA11Optional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CNVL_GET_OBJECTS
E_TCNVZ -
Data type: TCNVZOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CNVL_GET_OBJECTS 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_e_tca11 | TYPE TCA11, " | |||
| lt_e_tcnvz | TYPE STANDARD TABLE OF TCNVZ, " | |||
| lv_i_applic | TYPE TCNVZ-APPLIC, " | |||
| lv_i_subapp | TYPE TCNVZ-SUBAPP, " | |||
| lv_i_lstvar | TYPE TCNVZ-LSTVAR, " | |||
| lv_i_flg_tca11 | TYPE RC27X-FLG_SEL. " |
|   CALL FUNCTION 'CNVL_GET_OBJECTS' "NOTRANSL: Variable Übersichten: Objekte zu einer Listvariante holen |
| EXPORTING | ||
| I_APPLIC | = lv_i_applic | |
| I_SUBAPP | = lv_i_subapp | |
| I_LSTVAR | = lv_i_lstvar | |
| I_FLG_TCA11 | = lv_i_flg_tca11 | |
| IMPORTING | ||
| E_TCA11 | = lv_e_tca11 | |
| TABLES | ||
| E_TCNVZ | = lt_e_tcnvz | |
| . " CNVL_GET_OBJECTS | ||
ABAP code using 7.40 inline data declarations to call FM CNVL_GET_OBJECTS
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 APPLIC FROM TCNVZ INTO @DATA(ld_i_applic). | ||||
| "SELECT single SUBAPP FROM TCNVZ INTO @DATA(ld_i_subapp). | ||||
| "SELECT single LSTVAR FROM TCNVZ INTO @DATA(ld_i_lstvar). | ||||
| "SELECT single FLG_SEL FROM RC27X INTO @DATA(ld_i_flg_tca11). | ||||
Search for further information about these or an SAP related objects