SAP TMS_UI_SHOW_TRANSPORT_REQUEST Function Module for









TMS_UI_SHOW_TRANSPORT_REQUEST is a standard tms ui show transport request 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 tms ui show transport request FM, simply by entering the name TMS_UI_SHOW_TRANSPORT_REQUEST into the relevant SAP transaction such as SE37 or SE38.

Function Group: TMSU
Program Name: SAPLTMSU
Main Program: SAPLTMSU
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function TMS_UI_SHOW_TRANSPORT_REQUEST 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 'TMS_UI_SHOW_TRANSPORT_REQUEST'"
EXPORTING
IV_REQUEST = "
* IV_TARGET_SYSTEM = "
* IV_DOCU_ONLY = "
* IV_NEW_UI = "
* IV_VERBOSE = "
* IS_POPUP = "
* IS_QUEUE = "TMS CI: Systems
* IT_REQUESTS = "

EXCEPTIONS
SHOW_TRANSPORT_REQUEST_FAILED = 1
.



IMPORTING Parameters details for TMS_UI_SHOW_TRANSPORT_REQUEST

IV_REQUEST -

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

IV_TARGET_SYSTEM -

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

IV_DOCU_ONLY -

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

IV_NEW_UI -

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

IV_VERBOSE -

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

IS_POPUP -

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

IS_QUEUE - TMS CI: Systems

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

IT_REQUESTS -

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

EXCEPTIONS details

SHOW_TRANSPORT_REQUEST_FAILED -

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

Copy and paste ABAP code example for TMS_UI_SHOW_TRANSPORT_REQUEST 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_iv_request  TYPE TMSBUFFER-TRKORR, "   
lv_show_transport_request_failed  TYPE TMSBUFFER, "   
lv_iv_target_system  TYPE TMSCSYS-SYSNAM, "   
lv_iv_docu_only  TYPE STMS_FLAG, "   
lv_iv_new_ui  TYPE STMS_FLAG, "   
lv_iv_verbose  TYPE STMS_FLAG, "   
lv_is_popup  TYPE STRHI_POPUP, "   
lv_is_queue  TYPE TMSCSYS, "   
lv_it_requests  TYPE STMS_TR_REQUESTS. "   

  CALL FUNCTION 'TMS_UI_SHOW_TRANSPORT_REQUEST'  "
    EXPORTING
         IV_REQUEST = lv_iv_request
         IV_TARGET_SYSTEM = lv_iv_target_system
         IV_DOCU_ONLY = lv_iv_docu_only
         IV_NEW_UI = lv_iv_new_ui
         IV_VERBOSE = lv_iv_verbose
         IS_POPUP = lv_is_popup
         IS_QUEUE = lv_is_queue
         IT_REQUESTS = lv_it_requests
    EXCEPTIONS
        SHOW_TRANSPORT_REQUEST_FAILED = 1
. " TMS_UI_SHOW_TRANSPORT_REQUEST




ABAP code using 7.40 inline data declarations to call FM TMS_UI_SHOW_TRANSPORT_REQUEST

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 TRKORR FROM TMSBUFFER INTO @DATA(ld_iv_request).
 
 
"SELECT single SYSNAM FROM TMSCSYS INTO @DATA(ld_iv_target_system).
 
 
 
 
 
 
 


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!