SAP ISM_MP_MIGRATION_CHECK_ALOG Function Module for
ISM_MP_MIGRATION_CHECK_ALOG is a standard ism mp migration check alog 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 ism mp migration check alog FM, simply by entering the name ISM_MP_MIGRATION_CHECK_ALOG into the relevant SAP transaction such as SE37 or SE38.
Function Group: JPMM07
Program Name: SAPLJPMM07
Main Program: SAPLJPMM07
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISM_MP_MIGRATION_CHECK_ALOG 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 'ISM_MP_MIGRATION_CHECK_ALOG'".
EXPORTING
* MSGNO_SHORT = "
* MSGV1_SHORT = "
* MSGV2_SHORT = "
* MSGV3_SHORT = "
* MSGV4_SHORT = "
* MSGID_SHORT = "
DRERZ = "
TABLES
PROTOCOL_TAB = "
IMPORTING Parameters details for ISM_MP_MIGRATION_CHECK_ALOG
MSGNO_SHORT -
Data type: SYST-MSGNOOptional: Yes
Call by Reference: Yes
MSGV1_SHORT -
Data type: SYST-MSGV1Optional: Yes
Call by Reference: Yes
MSGV2_SHORT -
Data type: SYST-MSGV2Optional: Yes
Call by Reference: Yes
MSGV3_SHORT -
Data type: SYST-MSGV3Optional: Yes
Call by Reference: Yes
MSGV4_SHORT -
Data type: SYST-MSGV4Optional: Yes
Call by Reference: Yes
MSGID_SHORT -
Data type: SYST-MSGIDOptional: Yes
Call by Reference: Yes
DRERZ -
Data type: JDTDRER-DRERZOptional: No
Call by Reference: Yes
TABLES Parameters details for ISM_MP_MIGRATION_CHECK_ALOG
PROTOCOL_TAB -
Data type: MPMIG_CHECK_STRUOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISM_MP_MIGRATION_CHECK_ALOG 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_msgno_short | TYPE SYST-MSGNO, " | |||
| lt_protocol_tab | TYPE STANDARD TABLE OF MPMIG_CHECK_STRU, " | |||
| lv_msgv1_short | TYPE SYST-MSGV1, " | |||
| lv_msgv2_short | TYPE SYST-MSGV2, " | |||
| lv_msgv3_short | TYPE SYST-MSGV3, " | |||
| lv_msgv4_short | TYPE SYST-MSGV4, " | |||
| lv_msgid_short | TYPE SYST-MSGID, " | |||
| lv_drerz | TYPE JDTDRER-DRERZ. " |
|   CALL FUNCTION 'ISM_MP_MIGRATION_CHECK_ALOG' " |
| EXPORTING | ||
| MSGNO_SHORT | = lv_msgno_short | |
| MSGV1_SHORT | = lv_msgv1_short | |
| MSGV2_SHORT | = lv_msgv2_short | |
| MSGV3_SHORT | = lv_msgv3_short | |
| MSGV4_SHORT | = lv_msgv4_short | |
| MSGID_SHORT | = lv_msgid_short | |
| DRERZ | = lv_drerz | |
| TABLES | ||
| PROTOCOL_TAB | = lt_protocol_tab | |
| . " ISM_MP_MIGRATION_CHECK_ALOG | ||
ABAP code using 7.40 inline data declarations to call FM ISM_MP_MIGRATION_CHECK_ALOG
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 MSGNO FROM SYST INTO @DATA(ld_msgno_short). | ||||
| "SELECT single MSGV1 FROM SYST INTO @DATA(ld_msgv1_short). | ||||
| "SELECT single MSGV2 FROM SYST INTO @DATA(ld_msgv2_short). | ||||
| "SELECT single MSGV3 FROM SYST INTO @DATA(ld_msgv3_short). | ||||
| "SELECT single MSGV4 FROM SYST INTO @DATA(ld_msgv4_short). | ||||
| "SELECT single MSGID FROM SYST INTO @DATA(ld_msgid_short). | ||||
| "SELECT single DRERZ FROM JDTDRER INTO @DATA(ld_drerz). | ||||
Search for further information about these or an SAP related objects