SAP ISU_M_TRANSPORT_OBJECTS Function Module for INTERNAL: IS-U Migration - Create Transport Order for Migration Objects
ISU_M_TRANSPORT_OBJECTS is a standard isu m transport objects 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 - Create Transport Order for Migration Objects 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 transport objects FM, simply by entering the name ISU_M_TRANSPORT_OBJECTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: EMIG_TRANSPORT
Program Name: SAPLEMIG_TRANSPORT
Main Program: SAPLEMIG_TRANSPORT
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_M_TRANSPORT_OBJECTS 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_TRANSPORT_OBJECTS'"INTERNAL: IS-U Migration - Create Transport Order for Migration Objects.
EXPORTING
X_COMPANY = "Company (Client) for IS-U Migration
* X_SIMULATION = ' ' "Simulation Run
* X_CONTR = "IS-U Mig: Control Data for Transorting Migration Customizing
TABLES
XT_OBJECTS = "IS-U Migration: Help Structure for Transport Objects
XT_SPECIAL_OBJ = "
EXCEPTIONS
NOT_AUTHORIZED = 1 INVALID_COMPANY = 2 ACTION_CANCELLED = 3
IMPORTING Parameters details for ISU_M_TRANSPORT_OBJECTS
X_COMPANY - Company (Client) for IS-U Migration
Data type: TEMOB-FIRMAOptional: No
Call by Reference: No ( called with pass by value option)
X_SIMULATION - Simulation Run
Data type: TRPARI-W_SIMULATDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_CONTR - IS-U Mig: Control Data for Transorting Migration Customizing
Data type: TEMTR_CONTROptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISU_M_TRANSPORT_OBJECTS
XT_OBJECTS - IS-U Migration: Help Structure for Transport Objects
Data type: TEMTR_OBJECTSOptional: No
Call by Reference: Yes
XT_SPECIAL_OBJ -
Data type: TEMTR_SPECIALOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOT_AUTHORIZED -
Data type:Optional: No
Call by Reference: Yes
INVALID_COMPANY -
Data type:Optional: No
Call by Reference: Yes
ACTION_CANCELLED - Action canceled
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for ISU_M_TRANSPORT_OBJECTS 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_company | TYPE TEMOB-FIRMA, " | |||
| lt_xt_objects | TYPE STANDARD TABLE OF TEMTR_OBJECTS, " | |||
| lv_not_authorized | TYPE TEMTR_OBJECTS, " | |||
| lv_x_simulation | TYPE TRPARI-W_SIMULAT, " SPACE | |||
| lt_xt_special_obj | TYPE STANDARD TABLE OF TEMTR_SPECIAL, " | |||
| lv_invalid_company | TYPE TEMTR_SPECIAL, " | |||
| lv_x_contr | TYPE TEMTR_CONTR, " | |||
| lv_action_cancelled | TYPE TEMTR_CONTR. " |
|   CALL FUNCTION 'ISU_M_TRANSPORT_OBJECTS' "INTERNAL: IS-U Migration - Create Transport Order for Migration Objects |
| EXPORTING | ||
| X_COMPANY | = lv_x_company | |
| X_SIMULATION | = lv_x_simulation | |
| X_CONTR | = lv_x_contr | |
| TABLES | ||
| XT_OBJECTS | = lt_xt_objects | |
| XT_SPECIAL_OBJ | = lt_xt_special_obj | |
| EXCEPTIONS | ||
| NOT_AUTHORIZED = 1 | ||
| INVALID_COMPANY = 2 | ||
| ACTION_CANCELLED = 3 | ||
| . " ISU_M_TRANSPORT_OBJECTS | ||
ABAP code using 7.40 inline data declarations to call FM ISU_M_TRANSPORT_OBJECTS
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_company). | ||||
| "SELECT single W_SIMULAT FROM TRPARI INTO @DATA(ld_x_simulation). | ||||
| DATA(ld_x_simulation) | = ' '. | |||
Search for further information about these or an SAP related objects