SAP ISU_MAN_TRANSPORT_EE15_OBJECTS Function Module for









ISU_MAN_TRANSPORT_EE15_OBJECTS is a standard isu man transport ee15 objects 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 isu man transport ee15 objects FM, simply by entering the name ISU_MAN_TRANSPORT_EE15_OBJECTS into the relevant SAP transaction such as SE37 or SE38.

Function Group: E15G
Program Name: SAPLE15G
Main Program: SAPLE15G
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISU_MAN_TRANSPORT_EE15_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_MAN_TRANSPORT_EE15_OBJECTS'"
EXPORTING
X_TAB = "
* X_ALTTAB = "
* X_ALTTAB2 = "
X_SOBJ = "
* X_KEYTAB_TE419 = "
* X_KEYTAB_TE420 = "
* X_KEYTAB_TE422 = "

IMPORTING
Y_OK = "

TABLES
* XT_TE420AS = "
* XT_TE422AS = "

EXCEPTIONS
GENERAL_FAULT = 1 KORRNR_ERROR = 2 APPEND_ERROR = 3
.



IMPORTING Parameters details for ISU_MAN_TRANSPORT_EE15_OBJECTS

X_TAB -

Data type: E071K-TRKORR
Optional: No
Call by Reference: No ( called with pass by value option)

X_ALTTAB -

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

X_ALTTAB2 -

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

X_SOBJ -

Data type: E071K-TRKORR
Optional: No
Call by Reference: No ( called with pass by value option)

X_KEYTAB_TE419 -

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

X_KEYTAB_TE420 -

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

X_KEYTAB_TE422 -

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

EXPORTING Parameters details for ISU_MAN_TRANSPORT_EE15_OBJECTS

Y_OK -

Data type: REGEN-KENNZX
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ISU_MAN_TRANSPORT_EE15_OBJECTS

XT_TE420AS -

Data type: TE420AS
Optional: Yes
Call by Reference: Yes

XT_TE422AS -

Data type: TE422AS
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

GENERAL_FAULT -

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

KORRNR_ERROR -

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

APPEND_ERROR -

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

Copy and paste ABAP code example for ISU_MAN_TRANSPORT_EE15_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_y_ok  TYPE REGEN-KENNZX, "   
lv_x_tab  TYPE E071K-TRKORR, "   
lt_xt_te420as  TYPE STANDARD TABLE OF TE420AS, "   
lv_general_fault  TYPE TE420AS, "   
lv_x_alttab  TYPE E071K-TRKORR, "   
lt_xt_te422as  TYPE STANDARD TABLE OF TE422AS, "   
lv_korrnr_error  TYPE TE422AS, "   
lv_x_alttab2  TYPE E071K-TRKORR, "   
lv_append_error  TYPE E071K, "   
lv_x_sobj  TYPE E071K-TRKORR, "   
lv_x_keytab_te419  TYPE ISUTS_KEYTAB_TE419, "   
lv_x_keytab_te420  TYPE ISUTS_KEYTAB_TE420, "   
lv_x_keytab_te422  TYPE ISUTS_KEYTAB_TE422. "   

  CALL FUNCTION 'ISU_MAN_TRANSPORT_EE15_OBJECTS'  "
    EXPORTING
         X_TAB = lv_x_tab
         X_ALTTAB = lv_x_alttab
         X_ALTTAB2 = lv_x_alttab2
         X_SOBJ = lv_x_sobj
         X_KEYTAB_TE419 = lv_x_keytab_te419
         X_KEYTAB_TE420 = lv_x_keytab_te420
         X_KEYTAB_TE422 = lv_x_keytab_te422
    IMPORTING
         Y_OK = lv_y_ok
    TABLES
         XT_TE420AS = lt_xt_te420as
         XT_TE422AS = lt_xt_te422as
    EXCEPTIONS
        GENERAL_FAULT = 1
        KORRNR_ERROR = 2
        APPEND_ERROR = 3
. " ISU_MAN_TRANSPORT_EE15_OBJECTS




ABAP code using 7.40 inline data declarations to call FM ISU_MAN_TRANSPORT_EE15_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 KENNZX FROM REGEN INTO @DATA(ld_y_ok).
 
"SELECT single TRKORR FROM E071K INTO @DATA(ld_x_tab).
 
 
 
"SELECT single TRKORR FROM E071K INTO @DATA(ld_x_alttab).
 
 
 
"SELECT single TRKORR FROM E071K INTO @DATA(ld_x_alttab2).
 
 
"SELECT single TRKORR FROM E071K INTO @DATA(ld_x_sobj).
 
 
 
 


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!