SAP ISU_DEVCHECK_DECODE_PRIMARY Function Module for









ISU_DEVCHECK_DECODE_PRIMARY is a standard isu devcheck decode primary 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 isu devcheck decode primary FM, simply by entering the name ISU_DEVCHECK_DECODE_PRIMARY into the relevant SAP transaction such as SE37 or SE38.

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



Function ISU_DEVCHECK_DECODE_PRIMARY 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 'ISU_DEVCHECK_DECODE_PRIMARY'"
EXPORTING
X_FINAL_CALL = "
X_OLDKEY = "
* X_SINGLE_KEYNA = '' "

IMPORTING
Y_SINGLE_VALUE = "
Y_TABNAME_ZU_ID = "
KEY1 = "
KEY2 = "
KEY3 = "
KEY4 = "
KEY5 = "
KEY6 = "

EXCEPTIONS
MISSING_SINGLE_KEYNA = 1 WRONG_SINGLE_KEYNA = 2 WRONG_LENGTH = 3 WRONG_TABID = 4 MISSING_PROPERTY = 5
.



IMPORTING Parameters details for ISU_DEVCHECK_DECODE_PRIMARY

X_FINAL_CALL -

Data type: REGEN-KENNZX
Optional: No
Call by Reference: Yes

X_OLDKEY -

Data type: EFLOG-AUSOB
Optional: No
Call by Reference: Yes

X_SINGLE_KEYNA -

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

EXPORTING Parameters details for ISU_DEVCHECK_DECODE_PRIMARY

Y_SINGLE_VALUE -

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

Y_TABNAME_ZU_ID -

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

KEY1 -

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

KEY2 -

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

KEY3 -

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

KEY4 -

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

KEY5 -

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

KEY6 -

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

EXCEPTIONS details

MISSING_SINGLE_KEYNA -

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

WRONG_SINGLE_KEYNA -

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

WRONG_LENGTH -

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

WRONG_TABID -

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

MISSING_PROPERTY -

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

Copy and paste ABAP code example for ISU_DEVCHECK_DECODE_PRIMARY 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_x_final_call  TYPE REGEN-KENNZX, "   
lv_y_single_value  TYPE REGEN, "   
lv_missing_single_keyna  TYPE REGEN, "   
lv_x_oldkey  TYPE EFLOG-AUSOB, "   
lv_y_tabname_zu_id  TYPE EDTID-TABNAME, "   
lv_wrong_single_keyna  TYPE EDTID, "   
lv_key1  TYPE EDTID, "   
lv_wrong_length  TYPE EDTID, "   
lv_x_single_keyna  TYPE EANA_FUBA-KEYNA, "   ''
lv_key2  TYPE EANA_FUBA, "   
lv_wrong_tabid  TYPE EANA_FUBA, "   
lv_key3  TYPE EANA_FUBA, "   
lv_missing_property  TYPE EANA_FUBA, "   
lv_key4  TYPE EANA_FUBA, "   
lv_key5  TYPE EANA_FUBA, "   
lv_key6  TYPE EANA_FUBA. "   

  CALL FUNCTION 'ISU_DEVCHECK_DECODE_PRIMARY'  "
    EXPORTING
         X_FINAL_CALL = lv_x_final_call
         X_OLDKEY = lv_x_oldkey
         X_SINGLE_KEYNA = lv_x_single_keyna
    IMPORTING
         Y_SINGLE_VALUE = lv_y_single_value
         Y_TABNAME_ZU_ID = lv_y_tabname_zu_id
         KEY1 = lv_key1
         KEY2 = lv_key2
         KEY3 = lv_key3
         KEY4 = lv_key4
         KEY5 = lv_key5
         KEY6 = lv_key6
    EXCEPTIONS
        MISSING_SINGLE_KEYNA = 1
        WRONG_SINGLE_KEYNA = 2
        WRONG_LENGTH = 3
        WRONG_TABID = 4
        MISSING_PROPERTY = 5
. " ISU_DEVCHECK_DECODE_PRIMARY




ABAP code using 7.40 inline data declarations to call FM ISU_DEVCHECK_DECODE_PRIMARY

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 KENNZX FROM REGEN INTO @DATA(ld_x_final_call).
 
 
 
"SELECT single AUSOB FROM EFLOG INTO @DATA(ld_x_oldkey).
 
"SELECT single TABNAME FROM EDTID INTO @DATA(ld_y_tabname_zu_id).
 
 
 
 
"SELECT single KEYNA FROM EANA_FUBA INTO @DATA(ld_x_single_keyna).
DATA(ld_x_single_keyna) = ''.
 
 
 
 
 
 
 
 


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!