SAP ISU_M_CUSTOMIZING_COMPARE Function Module for INTERNAL: IS-U Migration - Compare Migration Customizing
ISU_M_CUSTOMIZING_COMPARE is a standard isu m customizing compare SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for INTERNAL: IS-U Migration - Compare Migration Customizing 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 isu m customizing compare FM, simply by entering the name ISU_M_CUSTOMIZING_COMPARE into the relevant SAP transaction such as SE37 or SE38.
Function Group: EMIG_TRANSPORT
Program Name: SAPLEMIG_TRANSPORT
Main Program: SAPLEMIG_TRANSPORT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_M_CUSTOMIZING_COMPARE 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_M_CUSTOMIZING_COMPARE'"INTERNAL: IS-U Migration - Compare Migration Customizing.
EXPORTING
X_FIRMA = "Company (Client) for IS-U Migration
* X_NO_DIALOG = ' ' "
* X_NO_WARNING = 'X' "Do not display warnings
X_OBJECT = "Migration Object
* X_FIRMA_COMP = "
* X_OBJECT_COMP = "
* X_ORIG_COMPARE = ' ' "
* X_REM_COMPARE = ' ' "
* X_DEST_COMP = "Logical Destination (Specified when Calling Function)
* X_EXPERT_MODE = ' ' "
* X_SELECTION = 'X' "
IMPORTING
Y_EQUAL = "
EXCEPTIONS
INPUT_ERROR = 1 OBJECT_NOT_FOUND = 2 COMP_OBJECT_NOT_FOUND = 3 RFC_DEST_NOT_FOUND = 4 RFC_CALL_ERROR = 5 CALL_CANCELLED = 6 NO_ORIG_OBJECT = 7
IMPORTING Parameters details for ISU_M_CUSTOMIZING_COMPARE
X_FIRMA - Company (Client) for IS-U Migration
Data type: TEMOB-FIRMAOptional: No
Call by Reference: No ( called with pass by value option)
X_NO_DIALOG -
Data type: EMGGEN-KENNZXDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_NO_WARNING - Do not display warnings
Data type: EMGGEN-KENNZXDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_OBJECT - Migration Object
Data type: TEMOB-OBJECTOptional: No
Call by Reference: No ( called with pass by value option)
X_FIRMA_COMP -
Data type: TEMOB-FIRMAOptional: Yes
Call by Reference: No ( called with pass by value option)
X_OBJECT_COMP -
Data type: TEMOB-OBJECTOptional: Yes
Call by Reference: No ( called with pass by value option)
X_ORIG_COMPARE -
Data type: EMGGEN-KENNZXDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_REM_COMPARE -
Data type: EMGGEN-KENNZXDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_DEST_COMP - Logical Destination (Specified when Calling Function)
Data type: RFCDES-RFCDESTOptional: Yes
Call by Reference: No ( called with pass by value option)
X_EXPERT_MODE -
Data type: EMGGEN-KENNZXDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_SELECTION -
Data type: EMGGEN-KENNZXDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ISU_M_CUSTOMIZING_COMPARE
Y_EQUAL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INPUT_ERROR - General Error
Data type:Optional: No
Call by Reference: Yes
OBJECT_NOT_FOUND - Cannot Find Migration Object
Data type:Optional: No
Call by Reference: Yes
COMP_OBJECT_NOT_FOUND - Comparison Object not Found
Data type:Optional: No
Call by Reference: Yes
RFC_DEST_NOT_FOUND -
Data type:Optional: No
Call by Reference: Yes
RFC_CALL_ERROR -
Data type:Optional: No
Call by Reference: Yes
CALL_CANCELLED - Action was terminated by user
Data type:Optional: No
Call by Reference: Yes
NO_ORIG_OBJECT -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_M_CUSTOMIZING_COMPARE 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_firma | TYPE TEMOB-FIRMA, " | |||
| lv_y_equal | TYPE TEMOB, " | |||
| lv_input_error | TYPE TEMOB, " | |||
| lv_x_no_dialog | TYPE EMGGEN-KENNZX, " SPACE | |||
| lv_x_no_warning | TYPE EMGGEN-KENNZX, " 'X' | |||
| lv_x_object | TYPE TEMOB-OBJECT, " | |||
| lv_object_not_found | TYPE TEMOB, " | |||
| lv_x_firma_comp | TYPE TEMOB-FIRMA, " | |||
| lv_comp_object_not_found | TYPE TEMOB, " | |||
| lv_x_object_comp | TYPE TEMOB-OBJECT, " | |||
| lv_rfc_dest_not_found | TYPE TEMOB, " | |||
| lv_rfc_call_error | TYPE TEMOB, " | |||
| lv_x_orig_compare | TYPE EMGGEN-KENNZX, " SPACE | |||
| lv_x_rem_compare | TYPE EMGGEN-KENNZX, " SPACE | |||
| lv_call_cancelled | TYPE EMGGEN, " | |||
| lv_x_dest_comp | TYPE RFCDES-RFCDEST, " | |||
| lv_no_orig_object | TYPE RFCDES, " | |||
| lv_x_expert_mode | TYPE EMGGEN-KENNZX, " SPACE | |||
| lv_x_selection | TYPE EMGGEN-KENNZX. " 'X' |
|   CALL FUNCTION 'ISU_M_CUSTOMIZING_COMPARE' "INTERNAL: IS-U Migration - Compare Migration Customizing |
| EXPORTING | ||
| X_FIRMA | = lv_x_firma | |
| X_NO_DIALOG | = lv_x_no_dialog | |
| X_NO_WARNING | = lv_x_no_warning | |
| X_OBJECT | = lv_x_object | |
| X_FIRMA_COMP | = lv_x_firma_comp | |
| X_OBJECT_COMP | = lv_x_object_comp | |
| X_ORIG_COMPARE | = lv_x_orig_compare | |
| X_REM_COMPARE | = lv_x_rem_compare | |
| X_DEST_COMP | = lv_x_dest_comp | |
| X_EXPERT_MODE | = lv_x_expert_mode | |
| X_SELECTION | = lv_x_selection | |
| IMPORTING | ||
| Y_EQUAL | = lv_y_equal | |
| EXCEPTIONS | ||
| INPUT_ERROR = 1 | ||
| OBJECT_NOT_FOUND = 2 | ||
| COMP_OBJECT_NOT_FOUND = 3 | ||
| RFC_DEST_NOT_FOUND = 4 | ||
| RFC_CALL_ERROR = 5 | ||
| CALL_CANCELLED = 6 | ||
| NO_ORIG_OBJECT = 7 | ||
| . " ISU_M_CUSTOMIZING_COMPARE | ||
ABAP code using 7.40 inline data declarations to call FM ISU_M_CUSTOMIZING_COMPARE
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 FIRMA FROM TEMOB INTO @DATA(ld_x_firma). | ||||
| "SELECT single KENNZX FROM EMGGEN INTO @DATA(ld_x_no_dialog). | ||||
| DATA(ld_x_no_dialog) | = ' '. | |||
| "SELECT single KENNZX FROM EMGGEN INTO @DATA(ld_x_no_warning). | ||||
| DATA(ld_x_no_warning) | = 'X'. | |||
| "SELECT single OBJECT FROM TEMOB INTO @DATA(ld_x_object). | ||||
| "SELECT single FIRMA FROM TEMOB INTO @DATA(ld_x_firma_comp). | ||||
| "SELECT single OBJECT FROM TEMOB INTO @DATA(ld_x_object_comp). | ||||
| "SELECT single KENNZX FROM EMGGEN INTO @DATA(ld_x_orig_compare). | ||||
| DATA(ld_x_orig_compare) | = ' '. | |||
| "SELECT single KENNZX FROM EMGGEN INTO @DATA(ld_x_rem_compare). | ||||
| DATA(ld_x_rem_compare) | = ' '. | |||
| "SELECT single RFCDEST FROM RFCDES INTO @DATA(ld_x_dest_comp). | ||||
| "SELECT single KENNZX FROM EMGGEN INTO @DATA(ld_x_expert_mode). | ||||
| DATA(ld_x_expert_mode) | = ' '. | |||
| "SELECT single KENNZX FROM EMGGEN INTO @DATA(ld_x_selection). | ||||
| DATA(ld_x_selection) | = 'X'. | |||
Search for further information about these or an SAP related objects