SAP ISHMED_MMINT_HANDLER Function Module for
ISHMED_MMINT_HANDLER is a standard ishmed mmint handler 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 ishmed mmint handler FM, simply by entering the name ISHMED_MMINT_HANDLER into the relevant SAP transaction such as SE37 or SE38.
Function Group: N1MA
Program Name: SAPLN1MA
Main Program: SAPLN1MA
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISHMED_MMINT_HANDLER 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 'ISHMED_MMINT_HANDLER'".
EXPORTING
EINRI = "Institution
ORGID = "Organizational Unit
LNRLS = "
SAVKZ = "
SELKZ = "
VARKZ = "
DEPTH = "
* I_TCODE = "
* I_TITLE = ' 1' "
IMPORTING
SAVEL = "
TABLES
INLEI = "
OMATV = "
* N1MATKL = "
* N1MTART = "
EXCEPTIONS
NO_OP_OE = 1 NO_INPUT = 2 NO_FOUND = 3
IMPORTING Parameters details for ISHMED_MMINT_HANDLER
EINRI - Institution
Data type: TN01-EINRIOptional: No
Call by Reference: No ( called with pass by value option)
ORGID - Organizational Unit
Data type: NORG-ORGIDOptional: No
Call by Reference: No ( called with pass by value option)
LNRLS -
Data type: NLEI-LNRLSOptional: No
Call by Reference: No ( called with pass by value option)
SAVKZ -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SELKZ -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
VARKZ -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DEPTH -
Data type: IOptional: No
Call by Reference: No ( called with pass by value option)
I_TCODE -
Data type: SY-TCODEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_TITLE -
Data type: CDefault: ' 1'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISHMED_MMINT_HANDLER
SAVEL -
Data type: NTPK-TALSTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISHMED_MMINT_HANDLER
INLEI -
Data type: NLEIOptional: No
Call by Reference: No ( called with pass by value option)
OMATV -
Data type: VNMATVMZOptional: No
Call by Reference: No ( called with pass by value option)
N1MATKL -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
N1MTART -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_OP_OE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_INPUT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISHMED_MMINT_HANDLER 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_einri | TYPE TN01-EINRI, " | |||
| lt_inlei | TYPE STANDARD TABLE OF NLEI, " | |||
| lv_savel | TYPE NTPK-TALST, " | |||
| lv_no_op_oe | TYPE NTPK, " | |||
| lt_omatv | TYPE STANDARD TABLE OF VNMATVMZ, " | |||
| lv_orgid | TYPE NORG-ORGID, " | |||
| lv_no_input | TYPE NORG, " | |||
| lv_lnrls | TYPE NLEI-LNRLS, " | |||
| lt_n1matkl | TYPE STANDARD TABLE OF NLEI, " | |||
| lv_no_found | TYPE NLEI, " | |||
| lv_savkz | TYPE NLEI, " | |||
| lt_n1mtart | TYPE STANDARD TABLE OF NLEI, " | |||
| lv_selkz | TYPE NLEI, " | |||
| lv_varkz | TYPE NLEI, " | |||
| lv_depth | TYPE I, " | |||
| lv_i_tcode | TYPE SY-TCODE, " | |||
| lv_i_title | TYPE C. " ' 1' |
|   CALL FUNCTION 'ISHMED_MMINT_HANDLER' " |
| EXPORTING | ||
| EINRI | = lv_einri | |
| ORGID | = lv_orgid | |
| LNRLS | = lv_lnrls | |
| SAVKZ | = lv_savkz | |
| SELKZ | = lv_selkz | |
| VARKZ | = lv_varkz | |
| DEPTH | = lv_depth | |
| I_TCODE | = lv_i_tcode | |
| I_TITLE | = lv_i_title | |
| IMPORTING | ||
| SAVEL | = lv_savel | |
| TABLES | ||
| INLEI | = lt_inlei | |
| OMATV | = lt_omatv | |
| N1MATKL | = lt_n1matkl | |
| N1MTART | = lt_n1mtart | |
| EXCEPTIONS | ||
| NO_OP_OE = 1 | ||
| NO_INPUT = 2 | ||
| NO_FOUND = 3 | ||
| . " ISHMED_MMINT_HANDLER | ||
ABAP code using 7.40 inline data declarations to call FM ISHMED_MMINT_HANDLER
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 EINRI FROM TN01 INTO @DATA(ld_einri). | ||||
| "SELECT single TALST FROM NTPK INTO @DATA(ld_savel). | ||||
| "SELECT single ORGID FROM NORG INTO @DATA(ld_orgid). | ||||
| "SELECT single LNRLS FROM NLEI INTO @DATA(ld_lnrls). | ||||
| "SELECT single TCODE FROM SY INTO @DATA(ld_i_tcode). | ||||
| DATA(ld_i_title) | = ' 1'. | |||
Search for further information about these or an SAP related objects