SAP COM_SCE_CONFIG_RESULT Function Module for NOTRANSL: liest eine Konfiguration aus dem Kontext
COM_SCE_CONFIG_RESULT is a standard com sce config result 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: liest eine Konfiguration aus dem Kontext 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 com sce config result FM, simply by entering the name COM_SCE_CONFIG_RESULT into the relevant SAP transaction such as SE37 or SE38.
Function Group: COM_SCE_UI
Program Name: SAPLCOM_SCE_UI
Main Program: SAPLCOM_SCE_UI
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function COM_SCE_CONFIG_RESULT 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 'COM_SCE_CONFIG_RESULT'"NOTRANSL: liest eine Konfiguration aus dem Kontext.
IMPORTING
EV_RETCODE = "ABAP System Field: Return Code of ABAP Statements
EV_GUID = "GUID in SCE
ET_CFG = "Configuration Header
ET_PRT = "Parts
ET_INS = "Instances
ET_VAL = "Valuations
ET_VK = "Variant Key
ET_VAR = "Results of Variant Determination for a Configuration
EXPORTING Parameters details for COM_SCE_CONFIG_RESULT
EV_RETCODE - ABAP System Field: Return Code of ABAP Statements
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
EV_GUID - GUID in SCE
Data type: COMT_SCE_GUIDOptional: No
Call by Reference: Yes
ET_CFG - Configuration Header
Data type: COMT_CUCFG_TABOptional: No
Call by Reference: Yes
ET_PRT - Parts
Data type: COMT_CUPRT_TABOptional: No
Call by Reference: Yes
ET_INS - Instances
Data type: COMT_CUINS_TABOptional: No
Call by Reference: Yes
ET_VAL - Valuations
Data type: COMT_CUVAL_TABOptional: No
Call by Reference: Yes
ET_VK - Variant Key
Data type: COMT_CUVK_TABOptional: No
Call by Reference: Yes
ET_VAR - Results of Variant Determination for a Configuration
Data type: COMT_CUVAR_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for COM_SCE_CONFIG_RESULT 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_ev_retcode | TYPE SY-SUBRC, " | |||
| lv_ev_guid | TYPE COMT_SCE_GUID, " | |||
| lv_et_cfg | TYPE COMT_CUCFG_TAB, " | |||
| lv_et_prt | TYPE COMT_CUPRT_TAB, " | |||
| lv_et_ins | TYPE COMT_CUINS_TAB, " | |||
| lv_et_val | TYPE COMT_CUVAL_TAB, " | |||
| lv_et_vk | TYPE COMT_CUVK_TAB, " | |||
| lv_et_var | TYPE COMT_CUVAR_TAB. " |
|   CALL FUNCTION 'COM_SCE_CONFIG_RESULT' "NOTRANSL: liest eine Konfiguration aus dem Kontext |
| IMPORTING | ||
| EV_RETCODE | = lv_ev_retcode | |
| EV_GUID | = lv_ev_guid | |
| ET_CFG | = lv_et_cfg | |
| ET_PRT | = lv_et_prt | |
| ET_INS | = lv_et_ins | |
| ET_VAL | = lv_et_val | |
| ET_VK | = lv_et_vk | |
| ET_VAR | = lv_et_var | |
| . " COM_SCE_CONFIG_RESULT | ||
ABAP code using 7.40 inline data declarations to call FM COM_SCE_CONFIG_RESULT
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 SUBRC FROM SY INTO @DATA(ld_ev_retcode). | ||||
Search for further information about these or an SAP related objects