SAP VC_I_DISPLAY_CONFIGURATION Function Module for NOTRANSL: Anzeige von Konfigurationen









VC_I_DISPLAY_CONFIGURATION is a standard vc i display configuration 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: Anzeige von Konfigurationen 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 vc i display configuration FM, simply by entering the name VC_I_DISPLAY_CONFIGURATION into the relevant SAP transaction such as SE37 or SE38.

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



Function VC_I_DISPLAY_CONFIGURATION 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 'VC_I_DISPLAY_CONFIGURATION'"NOTRANSL: Anzeige von Konfigurationen
EXPORTING
INSTANCE = "Configuration Instance
* NO_RESULT = 'X' "
* NO_MASTERD = 'X' "
* NO_PRICE = 'X' "
* NO_TYPEM = 'X' "
* IV_INVALID_POSSIBLE = ' ' "
* IV_NO_VALUE_CHECK = ' ' "
* EFFECTIVITY = ' ' "Parameter Variant/Standard Variant
* BUSINESS_OBJECT = "
INCLUDE_SCREEN = "
* APPLICATION = ' ' "
* MATNR_APPL = "
* WERKS_APPL = "
* BESKZ_APPL = "
* SOBSL_APPL = "
* NO_STRUC = 'X' "

EXCEPTIONS
INSTANCE_NOT_FOUND = 1 INTERNAL_ERROR = 2
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLCEI0_001 User Exit: SD Customer Fields in a Configurable Instance
EXIT_SAPLCEI0_010 User Exit: Customer Pushbutton 01
EXIT_SAPLCEI0_011 User Exit: Customer Pushbutton 02
EXIT_SAPLCEI0_012 User Exit: Customer Pushbutton 03
EXIT_SAPLCEI0_013 User Exit: Customer Pushbutton 04
EXIT_SAPLCEI0_014 User Exit: Customer Pushbutton 05
EXIT_SAPLCEI0_015 User Exit: Customer Pushbutton 06
EXIT_SAPLCEI0_016 User Exit: Customer Pushbutton 07
EXIT_SAPLCEI0_017 User Exit: Customer Pushbutton 08
EXIT_SAPLCEI0_018 User Exit: Customer Pushbutton 09
EXIT_SAPLCEI0_019 User Exit: Customer Pushbutton 10
EXIT_SAPLCEI0_020 Switch Off Standard Batch-Input Screen 0109
EXIT_SAPLCEI0_021 Assigned Values Files and Object Characteristics
EXIT_SAPLCEI0_022 Change presentation of F4 help
EXIT_SAPLCEI0_023 Activate Search for Material Variant with Same Values

IMPORTING Parameters details for VC_I_DISPLAY_CONFIGURATION

INSTANCE - Configuration Instance

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

NO_RESULT -

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

NO_MASTERD -

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

NO_PRICE -

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

NO_TYPEM -

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

IV_INVALID_POSSIBLE -

Data type: IBXX_BOOL
Default: SPACE
Optional: Yes
Call by Reference: Yes

IV_NO_VALUE_CHECK -

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

EFFECTIVITY - Parameter Variant/Standard Variant

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

BUSINESS_OBJECT -

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

INCLUDE_SCREEN -

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

APPLICATION -

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

MATNR_APPL -

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

WERKS_APPL -

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

BESKZ_APPL -

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

SOBSL_APPL -

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

NO_STRUC -

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

EXCEPTIONS details

INSTANCE_NOT_FOUND -

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

INTERNAL_ERROR -

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

Copy and paste ABAP code example for VC_I_DISPLAY_CONFIGURATION 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_instance  TYPE INOB-CUOBJ, "   
lv_instance_not_found  TYPE INOB, "   
lv_no_result  TYPE C, "   'X'
lv_no_masterd  TYPE C, "   'X'
lv_no_price  TYPE C, "   'X'
lv_no_typem  TYPE C, "   'X'
lv_iv_invalid_possible  TYPE IBXX_BOOL, "   SPACE
lv_iv_no_value_check  TYPE C, "   ' '
lv_effectivity  TYPE INOB-TECHS, "   SPACE
lv_internal_error  TYPE INOB, "   
lv_business_object  TYPE IBXX_BUSINESS_OBJECT, "   
lv_include_screen  TYPE INCL_BILD, "   
lv_application  TYPE INCL_BILD, "   SPACE
lv_matnr_appl  TYPE MARA-MATNR, "   
lv_werks_appl  TYPE MARC-WERKS, "   
lv_beskz_appl  TYPE MARC-BESKZ, "   
lv_sobsl_appl  TYPE MARC-SOBSL, "   
lv_no_struc  TYPE C. "   'X'

  CALL FUNCTION 'VC_I_DISPLAY_CONFIGURATION'  "NOTRANSL: Anzeige von Konfigurationen
    EXPORTING
         INSTANCE = lv_instance
         NO_RESULT = lv_no_result
         NO_MASTERD = lv_no_masterd
         NO_PRICE = lv_no_price
         NO_TYPEM = lv_no_typem
         IV_INVALID_POSSIBLE = lv_iv_invalid_possible
         IV_NO_VALUE_CHECK = lv_iv_no_value_check
         EFFECTIVITY = lv_effectivity
         BUSINESS_OBJECT = lv_business_object
         INCLUDE_SCREEN = lv_include_screen
         APPLICATION = lv_application
         MATNR_APPL = lv_matnr_appl
         WERKS_APPL = lv_werks_appl
         BESKZ_APPL = lv_beskz_appl
         SOBSL_APPL = lv_sobsl_appl
         NO_STRUC = lv_no_struc
    EXCEPTIONS
        INSTANCE_NOT_FOUND = 1
        INTERNAL_ERROR = 2
. " VC_I_DISPLAY_CONFIGURATION




ABAP code using 7.40 inline data declarations to call FM VC_I_DISPLAY_CONFIGURATION

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_instance).
 
 
DATA(ld_no_result) = 'X'.
 
DATA(ld_no_masterd) = 'X'.
 
DATA(ld_no_price) = 'X'.
 
DATA(ld_no_typem) = 'X'.
 
DATA(ld_iv_invalid_possible) = ' '.
 
DATA(ld_iv_no_value_check) = ' '.
 
"SELECT single TECHS FROM INOB INTO @DATA(ld_effectivity).
DATA(ld_effectivity) = ' '.
 
 
 
 
DATA(ld_application) = ' '.
 
"SELECT single MATNR FROM MARA INTO @DATA(ld_matnr_appl).
 
"SELECT single WERKS FROM MARC INTO @DATA(ld_werks_appl).
 
"SELECT single BESKZ FROM MARC INTO @DATA(ld_beskz_appl).
 
"SELECT single SOBSL FROM MARC INTO @DATA(ld_sobsl_appl).
 
DATA(ld_no_struc) = 'X'.
 


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!