RSTMSTPL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RSTMSTPL into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: VERBOSE = Verbose Mode
Selection Text: SYSTEM = System
Selection Text: SLOG = SLOG
Selection Text: DOMAIN = Transport Domain
Selection Text: ALOG = ALOG
Title: TMS: Display tp System Log
Text Symbol: 001 = tp System Log
Text Symbol: 002 = File:
Text Symbol: 003 = Return Code Threshold:
Text Symbol: 004 = Request
Text Symbol: 005 = SID
Text Symbol: 006 = RC
Text Symbol: 007 = Time Stamp
Text Symbol: 008 = Owner
Text Symbol: 009 = User
Text Symbol: 010 = Host
Text Symbol: 011 = System Log Entries
Text Symbol: 012 = tp Key
Text Symbol: 013 = Threshold:
Text Symbol: 014 = Log file is empty
Text Symbol: 015 = Could not read log file
Text Symbol: ALO = Transport Step Monitor
Text Symbol: CLI = Cl.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
TMS_MGR_READ_TP_SYSLOG call function 'TMS_MGR_READ_TP_SYSLOG' exporting iv_system = system iv_domain = domain iv_read_alog = lv_read_alog iv_read_slog = lv_read_slog iv_skip_alog = lv_skip_alog iv_skip_slog = lv_skip_slog iv_tp_alog = gv_alog_name iv_tp_slog = gv_slog_name iv_monitor = 'X' iv_verbose = verbose importing es_tp_syslogs = ls_tp_syslogs exceptions others = 99.
POPUP_TO_GET_VALUE call function 'POPUP_TO_GET_VALUE' exporting fieldname = 'RETCODE' tabname = 'TPSTAT' titel = 'Schwelle:'(013) valuein = gv_rc_threshold importing answer = gv_popup_answer valueout = gv_rc_threshold exceptions others = 0.
TMS_UI_DOCU_INTERFACE call function 'TMS_UI_DOCU_INTERFACE' exporting iv_object = gc_tms_docu_rstmstpl.
TMS_UI_DOCU_INTERFACE call function 'TMS_UI_DOCU_INTERFACE' exporting iv_object = gc_tms_docu_rstmstpl_slog.
TMS_UI_SHOW_TRANSPORT_REQUEST call function 'TMS_UI_SHOW_TRANSPORT_REQUEST' exporting iv_request = gv_trkorr iv_target_system = gv_sid iv_verbose = verbose exceptions others = 0.
TMS_UI_SHOW_TRANSPORT_LOGS call function 'TMS_UI_SHOW_TRANSPORT_LOGS' exporting iv_request = gv_trkorr iv_system = gv_sid iv_owner = gv_owner iv_verbose = verbose exceptions others = 0.
TMS_UI_SHOW_TRANSPORT_REQUEST call function 'TMS_UI_SHOW_TRANSPORT_REQUEST' exporting iv_request = gv_trkorr iv_target_system = gv_sid iv_verbose = verbose exceptions others = 0.
TMS_UI_SHOW_TRANSPORT_LOGS call function 'TMS_UI_SHOW_TRANSPORT_LOGS' exporting iv_request = gv_trkorr iv_system = gv_sid iv_owner = gv_owner iv_verbose = verbose exceptions others = 0.
DD_DOMVALUE_TEXT_GET call function 'DD_DOMVALUE_TEXT_GET' exporting domname = 'TRTPSTEP' value = gv_domval importing dd07v_wa = gs_dd07v_wa rc = gv_subrc.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.