RSTMSCBU 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 RSTMSCBU 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: SIZE = Display File Sizes
Selection Text: QUEUE = Import Queue
Selection Text: DOMAIN = Transport Domain
Title: TMS: Check Import Queue
Text Symbol: 020 = Cofiles
Text Symbol: 011 = File
Text Symbol: 010 = Datafiles
Text Symbol: 009 = are consistent
Text Symbol: 008 = Files in &1
Text Symbol: 007 = Directory:
Text Symbol: 006 = Unknown
Text Symbol: 005 = Import queue &1 consistent
Text Symbol: 004 = File &1 readable
Text Symbol: 003 = File empty
Text Symbol: 002 = File does not exist
Text Symbol: 001 = Check Import Queue
INCLUDE: LTMSCDEF, " CI MACROS
No SAP DATABASE tables are accessed within this REPORT code!
RS_TREE_LIST_DISPLAY call function 'RS_TREE_LIST_DISPLAY' exporting callback_program = 'RSTMSCBU' callback_user_command = 'USER_COMMAND' node_length = 30 text_length = 60 text_length1 = 60 text_length2 = 10 importing f15 = sy-ucomm.
TMS_MGR_CHECK_TRANSPORT_QUEUE call function 'TMS_MGR_CHECK_TRANSPORT_QUEUE' exporting iv_system = queue iv_domain = domain iv_size_check = size iv_monitor = gc_x iv_verbose = verbose importing es_tp_quetsts = gs_tp_quetsts exceptions others = 99.
RS_TREE_GET_CURRENT_LAYOUT call function 'RS_TREE_GET_CURRENT_LAYOUT' tables layout = gt_tree_layout exceptions others = 0.
RS_TREE_CONSTRUCT call function 'RS_TREE_CONSTRUCT' tables nodetab = gt_result exceptions others = 0.
RS_TREE_SET_CURRENT_LAYOUT call function 'RS_TREE_SET_CURRENT_LAYOUT' tables layout = gt_tree_layout exceptions others = 0.
RS_TREE_EXPAND call function 'RS_TREE_EXPAND' exporting node_id = gt_result-id exceptions others = 0.
RS_TREE_EXPAND call function 'RS_TREE_EXPAND' exporting node_id = gv_node_id exceptions others = 0.
TMS_UI_DOCU_INTERFACE call function 'TMS_UI_DOCU_INTERFACE' exporting iv_object = gc_tms_docu_rstmscbu.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.