SAP CP_EXT_LST_CONF_SELECTION Function Module for NOTRANSL: Entsprechend Konfiguration Dialogtabelle korrigieren









CP_EXT_LST_CONF_SELECTION is a standard cp ext lst conf selection 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: Entsprechend Konfiguration Dialogtabelle korrigieren 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 cp ext lst conf selection FM, simply by entering the name CP_EXT_LST_CONF_SELECTION into the relevant SAP transaction such as SE37 or SE38.

Function Group: CP97
Program Name: SAPLCP97
Main Program: SAPLCP97
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CP_EXT_LST_CONF_SELECTION 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 'CP_EXT_LST_CONF_SELECTION'"NOTRANSL: Entsprechend Konfiguration Dialogtabelle korrigieren
EXPORTING
* CUOBJ_IMP = ' ' "Internal object number for configuration
* ORDER_TYPE_CAPP_IMP = '2' "Category of calling order (CAPP recalculate)
* RC27M_TMP = "
* STTAG_IMP = '00000000' "
* FLG_COPY_IMP = ' ' "

TABLES
DIALOG_TAB = "Dialog table
.



IMPORTING Parameters details for CP_EXT_LST_CONF_SELECTION

CUOBJ_IMP - Internal object number for configuration

Data type: INOB-CUOBJ
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

ORDER_TYPE_CAPP_IMP - Category of calling order (CAPP recalculate)

Data type: PLKO-FLG_CAPO
Default: '2'
Optional: Yes
Call by Reference: No ( called with pass by value option)

RC27M_TMP -

Data type: RC27M
Optional: Yes
Call by Reference: No ( called with pass by value option)

STTAG_IMP -

Data type: PLKO-DATUV
Default: '00000000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

FLG_COPY_IMP -

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for CP_EXT_LST_CONF_SELECTION

DIALOG_TAB - Dialog table

Data type: RCLST
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for CP_EXT_LST_CONF_SELECTION 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_cuobj_imp  TYPE INOB-CUOBJ, "   SPACE
lt_dialog_tab  TYPE STANDARD TABLE OF RCLST, "   
lv_order_type_capp_imp  TYPE PLKO-FLG_CAPO, "   '2'
lv_rc27m_tmp  TYPE RC27M, "   
lv_sttag_imp  TYPE PLKO-DATUV, "   '00000000'
lv_flg_copy_imp  TYPE PLKO. "   SPACE

  CALL FUNCTION 'CP_EXT_LST_CONF_SELECTION'  "NOTRANSL: Entsprechend Konfiguration Dialogtabelle korrigieren
    EXPORTING
         CUOBJ_IMP = lv_cuobj_imp
         ORDER_TYPE_CAPP_IMP = lv_order_type_capp_imp
         RC27M_TMP = lv_rc27m_tmp
         STTAG_IMP = lv_sttag_imp
         FLG_COPY_IMP = lv_flg_copy_imp
    TABLES
         DIALOG_TAB = lt_dialog_tab
. " CP_EXT_LST_CONF_SELECTION




ABAP code using 7.40 inline data declarations to call FM CP_EXT_LST_CONF_SELECTION

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 CUOBJ FROM INOB INTO @DATA(ld_cuobj_imp).
DATA(ld_cuobj_imp) = ' '.
 
 
"SELECT single FLG_CAPO FROM PLKO INTO @DATA(ld_order_type_capp_imp).
DATA(ld_order_type_capp_imp) = '2'.
 
 
"SELECT single DATUV FROM PLKO INTO @DATA(ld_sttag_imp).
DATA(ld_sttag_imp) = '00000000'.
 
DATA(ld_flg_copy_imp) = ' '.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!