SAP MDMA_D_SPECIAL_CHECK Function Module for NOTRANSL: Zusammenfassung Feldprüfungen Disposition für Tabelle MDMA









MDMA_D_SPECIAL_CHECK is a standard mdma d special check 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: Zusammenfassung Feldprüfungen Disposition für Tabelle MDMA 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 mdma d special check FM, simply by entering the name MDMA_D_SPECIAL_CHECK into the relevant SAP transaction such as SE37 or SE38.

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



Function MDMA_D_SPECIAL_CHECK 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 'MDMA_D_SPECIAL_CHECK'"NOTRANSL: Zusammenfassung Feldprüfungen Disposition für Tabelle MDMA
EXPORTING
WMARC = "
P_KZ_NO_WARN = "DE-EN-LANG-SWITCH-NO-TRANSLATION
WMDMA = "
LMDMA = "
WMARA = "
WT130M = "
WRMMG1 = "
P_NEUFLAG = "
P_T134_KZPRC = "
P_KZRFB = "

IMPORTING
WMDMA = "

TABLES
* MPTAB = "

EXCEPTIONS
ERR_MDMA_D_SPECIAL_CHECK = 1 ERR_MDMA_D_SPECIAL_CHECK2 = 2
.



IMPORTING Parameters details for MDMA_D_SPECIAL_CHECK

WMARC -

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

P_KZ_NO_WARN - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

WMDMA -

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

LMDMA -

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

WMARA -

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

WT130M -

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

WRMMG1 -

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

P_NEUFLAG -

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

P_T134_KZPRC -

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

P_KZRFB -

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

EXPORTING Parameters details for MDMA_D_SPECIAL_CHECK

WMDMA -

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

TABLES Parameters details for MDMA_D_SPECIAL_CHECK

MPTAB -

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

EXCEPTIONS details

ERR_MDMA_D_SPECIAL_CHECK - DE-EN-LANG-SWITCH-NO-TRANSLATION

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

ERR_MDMA_D_SPECIAL_CHECK2 -

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

Copy and paste ABAP code example for MDMA_D_SPECIAL_CHECK 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:
lt_mptab  TYPE STANDARD TABLE OF SPTAP, "   
lv_wmarc  TYPE MARC, "   
lv_wmdma  TYPE MDMA, "   
lv_err_mdma_d_special_check  TYPE MDMA, "   
lv_p_kz_no_warn  TYPE RMMG08_012-MSGTYP, "   
lv_wmdma  TYPE MDMA, "   
lv_err_mdma_d_special_check2  TYPE MDMA, "   
lv_lmdma  TYPE MDMA, "   
lv_wmara  TYPE MARA, "   
lv_wt130m  TYPE T130M, "   
lv_wrmmg1  TYPE RMMG1, "   
lv_p_neuflag  TYPE T130F-KZREF, "   
lv_p_t134_kzprc  TYPE T134-KZPRC, "   
lv_p_kzrfb  TYPE MTCOM-KZRFB. "   

  CALL FUNCTION 'MDMA_D_SPECIAL_CHECK'  "NOTRANSL: Zusammenfassung Feldprüfungen Disposition für Tabelle MDMA
    EXPORTING
         WMARC = lv_wmarc
         P_KZ_NO_WARN = lv_p_kz_no_warn
         WMDMA = lv_wmdma
         LMDMA = lv_lmdma
         WMARA = lv_wmara
         WT130M = lv_wt130m
         WRMMG1 = lv_wrmmg1
         P_NEUFLAG = lv_p_neuflag
         P_T134_KZPRC = lv_p_t134_kzprc
         P_KZRFB = lv_p_kzrfb
    IMPORTING
         WMDMA = lv_wmdma
    TABLES
         MPTAB = lt_mptab
    EXCEPTIONS
        ERR_MDMA_D_SPECIAL_CHECK = 1
        ERR_MDMA_D_SPECIAL_CHECK2 = 2
. " MDMA_D_SPECIAL_CHECK




ABAP code using 7.40 inline data declarations to call FM MDMA_D_SPECIAL_CHECK

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 MSGTYP FROM RMMG08_012 INTO @DATA(ld_p_kz_no_warn).
 
 
 
 
 
 
 
"SELECT single KZREF FROM T130F INTO @DATA(ld_p_neuflag).
 
"SELECT single KZPRC FROM T134 INTO @DATA(ld_p_t134_kzprc).
 
"SELECT single KZRFB FROM MTCOM INTO @DATA(ld_p_kzrfb).
 


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!