SAP COM_SCE_API_CREATE_CONFIG Function Module for startet eine Konfiguration in einem HTML-Control (Kein Einkauf Scenario)
COM_SCE_API_CREATE_CONFIG is a standard com sce api create config SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for startet eine Konfiguration in einem HTML-Control (Kein Einkauf Scenario) 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 api create config FM, simply by entering the name COM_SCE_API_CREATE_CONFIG into the relevant SAP transaction such as SE37 or SE38.
Function Group: COM_SCE_API
Program Name: SAPLCOM_SCE_API
Main Program: SAPLCOM_SCE_API
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function COM_SCE_API_CREATE_CONFIG 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_API_CREATE_CONFIG'"startet eine Konfiguration in einem HTML-Control (Kein Einkauf Scenario).
EXPORTING
IV_DOCUMENT_GUID = "Dokument ID (GUID)
* IT_INS = "Instanzen
* IT_VAL = "Bewertungen
* IT_VK = "Variantenschlüssel
* IT_CONTEXT = "Kontext für den Aufruf der Konfiguration (SCE)
* IV_GUID = "Positions ID (GUID)
* IV_IPC_CLIENT = "client for IPC
* IV_PRODUCT_ID = "Produkt
* IV_PRODUCT_TYPE = "Produkt Typ
* IV_PRODUCT_LOGSYS = "Logisches System für die SCE Wissensbasis
* IV_KB_DATE = "Dattum mit der eine gültige Wissensbasis gesucht wird
* IT_CFG = "Konfiguration Header
* IT_PRT = "Parts
IMPORTING
EV_CONFIG_ID = "Konfigurations Identifier
EV_RETCODE = "Rückgabewert, Rückgabewert nach ABAP-Anweisungen
IMPORTING Parameters details for COM_SCE_API_CREATE_CONFIG
IV_DOCUMENT_GUID - Dokument ID (GUID)
Data type: COMT_SCE_GUIDOptional: No
Call by Reference: Yes
IT_INS - Instanzen
Data type: COMT_CUINS_TABOptional: Yes
Call by Reference: Yes
IT_VAL - Bewertungen
Data type: COMT_CUVAL_TABOptional: Yes
Call by Reference: Yes
IT_VK - Variantenschlüssel
Data type: COMT_CUVK_TABOptional: Yes
Call by Reference: Yes
IT_CONTEXT - Kontext für den Aufruf der Konfiguration (SCE)
Data type: COMT_SCE_CONFIG_CONTEXT_TABOptional: Yes
Call by Reference: Yes
IV_GUID - Positions ID (GUID)
Data type: COMT_SCE_GUIDOptional: Yes
Call by Reference: Yes
IV_IPC_CLIENT - client for IPC
Data type: COMT_SCE_CLIENTOptional: Yes
Call by Reference: Yes
IV_PRODUCT_ID - Produkt
Data type: COMT_SCE_PRODUCT_IDOptional: Yes
Call by Reference: Yes
IV_PRODUCT_TYPE - Produkt Typ
Data type: COMT_SCE_PRODUCT_TYPEOptional: Yes
Call by Reference: Yes
IV_PRODUCT_LOGSYS - Logisches System für die SCE Wissensbasis
Data type: COMT_SCE_KB_LOGSYSOptional: Yes
Call by Reference: Yes
IV_KB_DATE - Dattum mit der eine gültige Wissensbasis gesucht wird
Data type: COMT_SCE_KB_DATEOptional: Yes
Call by Reference: Yes
IT_CFG - Konfiguration Header
Data type: COMT_CUCFG_TABOptional: Yes
Call by Reference: Yes
IT_PRT - Parts
Data type: CRMT_CUPRT_TABOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for COM_SCE_API_CREATE_CONFIG
EV_CONFIG_ID - Konfigurations Identifier
Data type: COMT_IPC_CONFIG_IDOptional: No
Call by Reference: Yes
EV_RETCODE - Rückgabewert, Rückgabewert nach ABAP-Anweisungen
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for COM_SCE_API_CREATE_CONFIG 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_config_id | TYPE COMT_IPC_CONFIG_ID, " | |||
| lv_iv_document_guid | TYPE COMT_SCE_GUID, " | |||
| lv_it_ins | TYPE COMT_CUINS_TAB, " | |||
| lv_it_val | TYPE COMT_CUVAL_TAB, " | |||
| lv_it_vk | TYPE COMT_CUVK_TAB, " | |||
| lv_it_context | TYPE COMT_SCE_CONFIG_CONTEXT_TAB, " | |||
| lv_iv_guid | TYPE COMT_SCE_GUID, " | |||
| lv_ev_retcode | TYPE SY-SUBRC, " | |||
| lv_iv_ipc_client | TYPE COMT_SCE_CLIENT, " | |||
| lv_iv_product_id | TYPE COMT_SCE_PRODUCT_ID, " | |||
| lv_iv_product_type | TYPE COMT_SCE_PRODUCT_TYPE, " | |||
| lv_iv_product_logsys | TYPE COMT_SCE_KB_LOGSYS, " | |||
| lv_iv_kb_date | TYPE COMT_SCE_KB_DATE, " | |||
| lv_it_cfg | TYPE COMT_CUCFG_TAB, " | |||
| lv_it_prt | TYPE CRMT_CUPRT_TAB. " |
|   CALL FUNCTION 'COM_SCE_API_CREATE_CONFIG' "startet eine Konfiguration in einem HTML-Control (Kein Einkauf Scenario) |
| EXPORTING | ||
| IV_DOCUMENT_GUID | = lv_iv_document_guid | |
| IT_INS | = lv_it_ins | |
| IT_VAL | = lv_it_val | |
| IT_VK | = lv_it_vk | |
| IT_CONTEXT | = lv_it_context | |
| IV_GUID | = lv_iv_guid | |
| IV_IPC_CLIENT | = lv_iv_ipc_client | |
| IV_PRODUCT_ID | = lv_iv_product_id | |
| IV_PRODUCT_TYPE | = lv_iv_product_type | |
| IV_PRODUCT_LOGSYS | = lv_iv_product_logsys | |
| IV_KB_DATE | = lv_iv_kb_date | |
| IT_CFG | = lv_it_cfg | |
| IT_PRT | = lv_it_prt | |
| IMPORTING | ||
| EV_CONFIG_ID | = lv_ev_config_id | |
| EV_RETCODE | = lv_ev_retcode | |
| . " COM_SCE_API_CREATE_CONFIG | ||
ABAP code using 7.40 inline data declarations to call FM COM_SCE_API_CREATE_CONFIG
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