SAP MMIM_ENTRYCHECK_MAIN Function Module for Input Checks Reporting MM-IM









MMIM_ENTRYCHECK_MAIN is a standard mmim entrycheck main SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Input Checks Reporting MM-IM 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 mmim entrycheck main FM, simply by entering the name MMIM_ENTRYCHECK_MAIN into the relevant SAP transaction such as SE37 or SE38.

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



Function MMIM_ENTRYCHECK_MAIN 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 'MMIM_ENTRYCHECK_MAIN'"Input Checks Reporting MM-IM
TABLES
* IT_MATNR = "
* IT_RESWK = "
* IT_VGART = "
* IT_SOBKZ = "
* IT_BUKRS = "
* IT_POSID = "
* IT_USNAM = "
* IT_WERKS = "
* IT_LGORT = "
* IT_LIFNR = "
* IT_KUNNR = "
* IT_BWART = "
* IT_EKORG = "
* IT_EKGRP = "
* IT_GRUND = "
.



TABLES Parameters details for MMIM_ENTRYCHECK_MAIN

IT_MATNR -

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

IT_RESWK -

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

IT_VGART -

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

IT_SOBKZ -

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

IT_BUKRS -

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

IT_POSID -

Data type:
Optional: Yes
Call by Reference: Yes

IT_USNAM -

Data type:
Optional: Yes
Call by Reference: Yes

IT_WERKS -

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

IT_LGORT -

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

IT_LIFNR -

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

IT_KUNNR -

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

IT_BWART -

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

IT_EKORG -

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

IT_EKGRP -

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

IT_GRUND -

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

Copy and paste ABAP code example for MMIM_ENTRYCHECK_MAIN 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_it_matnr  TYPE STANDARD TABLE OF STRING, "   
lt_it_reswk  TYPE STANDARD TABLE OF STRING, "   
lt_it_vgart  TYPE STANDARD TABLE OF STRING, "   
lt_it_sobkz  TYPE STANDARD TABLE OF STRING, "   
lt_it_bukrs  TYPE STANDARD TABLE OF STRING, "   
lt_it_posid  TYPE STANDARD TABLE OF STRING, "   
lt_it_usnam  TYPE STANDARD TABLE OF STRING, "   
lt_it_werks  TYPE STANDARD TABLE OF STRING, "   
lt_it_lgort  TYPE STANDARD TABLE OF STRING, "   
lt_it_lifnr  TYPE STANDARD TABLE OF STRING, "   
lt_it_kunnr  TYPE STANDARD TABLE OF STRING, "   
lt_it_bwart  TYPE STANDARD TABLE OF STRING, "   
lt_it_ekorg  TYPE STANDARD TABLE OF STRING, "   
lt_it_ekgrp  TYPE STANDARD TABLE OF STRING, "   
lt_it_grund  TYPE STANDARD TABLE OF STRING. "   

  CALL FUNCTION 'MMIM_ENTRYCHECK_MAIN'  "Input Checks Reporting MM-IM
    TABLES
         IT_MATNR = lt_it_matnr
         IT_RESWK = lt_it_reswk
         IT_VGART = lt_it_vgart
         IT_SOBKZ = lt_it_sobkz
         IT_BUKRS = lt_it_bukrs
         IT_POSID = lt_it_posid
         IT_USNAM = lt_it_usnam
         IT_WERKS = lt_it_werks
         IT_LGORT = lt_it_lgort
         IT_LIFNR = lt_it_lifnr
         IT_KUNNR = lt_it_kunnr
         IT_BWART = lt_it_bwart
         IT_EKORG = lt_it_ekorg
         IT_EKGRP = lt_it_ekgrp
         IT_GRUND = lt_it_grund
. " MMIM_ENTRYCHECK_MAIN




ABAP code using 7.40 inline data declarations to call FM MMIM_ENTRYCHECK_MAIN

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.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!