SAP DATA_INPUT_CUSTOMIZE Function Module for









DATA_INPUT_CUSTOMIZE is a standard data input customize SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 data input customize FM, simply by entering the name DATA_INPUT_CUSTOMIZE into the relevant SAP transaction such as SE37 or SE38.

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



Function DATA_INPUT_CUSTOMIZE 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 'DATA_INPUT_CUSTOMIZE'"
EXPORTING
* I_XEXPERT = ' ' "
* I_XDSEMUCNV = ' ' "
* I_XARFILES = 'X' "
* I_READ_FOR_PRG = ' ' "
* I_XRADIO = ' ' "
* I_XCHUSEDB = 'X' "
* I_XDSUSEDB = 'X' "
* I_XCHAROBJ = ' ' "
* I_XDSAROBJ = 'X' "
* I_XCHUSEAR = 'X' "
* I_XDSUSEAR = 'X' "
* I_XCHEMUCNV = ' ' "

EXCEPTIONS
WRONG_USE_OF_PARAMETERS = 1
.



IMPORTING Parameters details for DATA_INPUT_CUSTOMIZE

I_XEXPERT -

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

I_XDSEMUCNV -

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

I_XARFILES -

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

I_READ_FOR_PRG -

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

I_XRADIO -

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

I_XCHUSEDB -

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

I_XDSUSEDB -

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

I_XCHAROBJ -

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

I_XDSAROBJ -

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

I_XCHUSEAR -

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

I_XDSUSEAR -

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

I_XCHEMUCNV -

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

EXCEPTIONS details

WRONG_USE_OF_PARAMETERS -

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

Copy and paste ABAP code example for DATA_INPUT_CUSTOMIZE 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_i_xexpert  TYPE DTINP-XEXPERT, "   SPACE
lv_wrong_use_of_parameters  TYPE DTINP, "   
lv_i_xdsemucnv  TYPE DTINP-XDSEMUCNV, "   SPACE
lv_i_xarfiles  TYPE DTINP-XARFILES, "   'X'
lv_i_read_for_prg  TYPE DTINP-READ_PRG, "   SPACE
lv_i_xradio  TYPE DTINP-XRADIO, "   SPACE
lv_i_xchusedb  TYPE DTINP-XCHUSEDB, "   'X'
lv_i_xdsusedb  TYPE DTINP-XDSUSEDB, "   'X'
lv_i_xcharobj  TYPE DTINP-XCHUSEDB, "   SPACE
lv_i_xdsarobj  TYPE DTINP-XDSUSEDB, "   'X'
lv_i_xchusear  TYPE DTINP-XCHUSEDB, "   'X'
lv_i_xdsusear  TYPE DTINP-XDSUSEDB, "   'X'
lv_i_xchemucnv  TYPE DTINP-XCHEMUCNV. "   SPACE

  CALL FUNCTION 'DATA_INPUT_CUSTOMIZE'  "
    EXPORTING
         I_XEXPERT = lv_i_xexpert
         I_XDSEMUCNV = lv_i_xdsemucnv
         I_XARFILES = lv_i_xarfiles
         I_READ_FOR_PRG = lv_i_read_for_prg
         I_XRADIO = lv_i_xradio
         I_XCHUSEDB = lv_i_xchusedb
         I_XDSUSEDB = lv_i_xdsusedb
         I_XCHAROBJ = lv_i_xcharobj
         I_XDSAROBJ = lv_i_xdsarobj
         I_XCHUSEAR = lv_i_xchusear
         I_XDSUSEAR = lv_i_xdsusear
         I_XCHEMUCNV = lv_i_xchemucnv
    EXCEPTIONS
        WRONG_USE_OF_PARAMETERS = 1
. " DATA_INPUT_CUSTOMIZE




ABAP code using 7.40 inline data declarations to call FM DATA_INPUT_CUSTOMIZE

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 XEXPERT FROM DTINP INTO @DATA(ld_i_xexpert).
DATA(ld_i_xexpert) = ' '.
 
 
"SELECT single XDSEMUCNV FROM DTINP INTO @DATA(ld_i_xdsemucnv).
DATA(ld_i_xdsemucnv) = ' '.
 
"SELECT single XARFILES FROM DTINP INTO @DATA(ld_i_xarfiles).
DATA(ld_i_xarfiles) = 'X'.
 
"SELECT single READ_PRG FROM DTINP INTO @DATA(ld_i_read_for_prg).
DATA(ld_i_read_for_prg) = ' '.
 
"SELECT single XRADIO FROM DTINP INTO @DATA(ld_i_xradio).
DATA(ld_i_xradio) = ' '.
 
"SELECT single XCHUSEDB FROM DTINP INTO @DATA(ld_i_xchusedb).
DATA(ld_i_xchusedb) = 'X'.
 
"SELECT single XDSUSEDB FROM DTINP INTO @DATA(ld_i_xdsusedb).
DATA(ld_i_xdsusedb) = 'X'.
 
"SELECT single XCHUSEDB FROM DTINP INTO @DATA(ld_i_xcharobj).
DATA(ld_i_xcharobj) = ' '.
 
"SELECT single XDSUSEDB FROM DTINP INTO @DATA(ld_i_xdsarobj).
DATA(ld_i_xdsarobj) = 'X'.
 
"SELECT single XCHUSEDB FROM DTINP INTO @DATA(ld_i_xchusear).
DATA(ld_i_xchusear) = 'X'.
 
"SELECT single XDSUSEDB FROM DTINP INTO @DATA(ld_i_xdsusear).
DATA(ld_i_xdsusear) = 'X'.
 
"SELECT single XCHEMUCNV FROM DTINP INTO @DATA(ld_i_xchemucnv).
DATA(ld_i_xchemucnv) = ' '.
 


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!