SAP RKE_TRANSPORT_OBJECTS Function Module for









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

Function Group: KXOB
Program Name: SAPLKXOB
Main Program: SAPLKXOB
Appliation area: K
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function RKE_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 'RKE_TRANSPORT_OBJECTS'"
EXPORTING
* APPLCLASS = ' ' "
* SUBCLASS = ' ' "
RETURN_OBJECTTYPES = "
* OBJECTTYPE = 'I3ZS' "
* FILTER_PROGRAM = ' ' "
* FILTER_FORM = ' ' "
* IT_F1_TAB = "
* I_ALL_LANGUAGES = ' ' "
* I_TRANS_INFO = "
.



IMPORTING Parameters details for RKE_TRANSPORT_OBJECTS

APPLCLASS -

Data type: TKES1-APPLCLASS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

SUBCLASS -

Data type: TKES1-SUBCLASS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

RETURN_OBJECTTYPES -

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

OBJECTTYPE -

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

FILTER_PROGRAM -

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

FILTER_FORM -

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

IT_F1_TAB -

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

I_ALL_LANGUAGES -

Data type: SY-BATCH
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TRANS_INFO -

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

Copy and paste ABAP code example for RKE_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_applclass  TYPE TKES1-APPLCLASS, "   SPACE
lv_subclass  TYPE TKES1-SUBCLASS, "   SPACE
lv_return_objecttypes  TYPE TKES1, "   
lv_objecttype  TYPE TKES1, "   'I3ZS'
lv_filter_program  TYPE TKES1, "   SPACE
lv_filter_form  TYPE TKES1, "   SPACE
lv_it_f1_tab  TYPE KXOB_T_TRANSPORT_F1, "   
lv_i_all_languages  TYPE SY-BATCH, "   SPACE
lv_i_trans_info  TYPE KXOB_YS_TRANS_INFO. "   

  CALL FUNCTION 'RKE_TRANSPORT_OBJECTS'  "
    EXPORTING
         APPLCLASS = lv_applclass
         SUBCLASS = lv_subclass
         RETURN_OBJECTTYPES = lv_return_objecttypes
         OBJECTTYPE = lv_objecttype
         FILTER_PROGRAM = lv_filter_program
         FILTER_FORM = lv_filter_form
         IT_F1_TAB = lv_it_f1_tab
         I_ALL_LANGUAGES = lv_i_all_languages
         I_TRANS_INFO = lv_i_trans_info
. " RKE_TRANSPORT_OBJECTS




ABAP code using 7.40 inline data declarations to call FM RKE_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 APPLCLASS FROM TKES1 INTO @DATA(ld_applclass).
DATA(ld_applclass) = ' '.
 
"SELECT single SUBCLASS FROM TKES1 INTO @DATA(ld_subclass).
DATA(ld_subclass) = ' '.
 
 
DATA(ld_objecttype) = 'I3ZS'.
 
DATA(ld_filter_program) = ' '.
 
DATA(ld_filter_form) = ' '.
 
 
"SELECT single BATCH FROM SY INTO @DATA(ld_i_all_languages).
DATA(ld_i_all_languages) = ' '.
 
 


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!