RSTMS_DEL_PROJECT_FROM_QUEUE 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 RSTMS_DEL_PROJECT_FROM_QUEUE 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: PROJ0 = Project 1
Selection Text: PROJ1 = Project 2
Selection Text: PROJ2 = Project 3
Selection Text: PROJ3 = Project 4
Selection Text: PROJ4 = Project 5
Selection Text: PROJ5 = Project 6
Selection Text: PROJ6 = Project 7
Selection Text: PROJ7 = Project 8
Selection Text: PROJ8 = Project 9
Selection Text: PROJ9 = Project 10
Selection Text: SYSTEM = D .
Title: TMS: Delete All Requests for a Project from Import Queue
Text Symbol: 000 = No project specified
Text Symbol: 001 = No requests found for project &1
Text Symbol: 002 = Could not delete requests
Text Symbol: 003 = &n requests deleted for project &p from import queue &s
Text Symbol: 004 = System &1 is an invalid system
INCLUDE: LTMSADEF, " ALT MACROS
No SAP DATABASE tables are accessed within this REPORT code!
TR_AUTHORITY_CHECK_ADMIN CALL FUNCTION 'TR_AUTHORITY_CHECK_ADMIN' EXPORTING iv_adminfunction = 'TABL' EXCEPTIONS OTHERS = 99.
TMS_CFG_READ_CONFIGURATION CALL FUNCTION 'TMS_CFG_READ_CONFIGURATION' EXPORTING iv_local_domain = 'X' iv_local_non_abap_sys = 'X' TABLES tt_sys = gt_sys EXCEPTIONS OTHERS = 99.
TMS_MGR_READ_TRANSPORT_QUEUE CALL FUNCTION 'TMS_MGR_READ_TRANSPORT_QUEUE' EXPORTING iv_system = system iv_collect_data = 'X' iv_count_only = space iv_read_shadow = space iv_maxrc_only = 'X' iv_read_locks = space iv_clear_locks = space iv_use_data_files = space iv_update_cache = space iv_monitor = 'X' iv_progress_min = 1 iv_progress_max = 20 iv_verbose = space TABLES tt_buffer = gt_buffer EXCEPTIONS OTHERS = 99.
TMS_MGR_MAINTAIN_TR_QUEUE CALL FUNCTION 'TMS_MGR_MAINTAIN_TR_QUEUE' EXPORTING iv_command = gc_tp_delfrombuffer iv_system = system iv_request = gc_tp_project_some iv_monitor = 'X' iv_verbose = space it_requests = gt_requests IMPORTING et_tp_maintains = gt_tp_maintains EXCEPTIONS OTHERS = 99.
TMS_ALT_LOG_RECORD CALL FUNCTION 'TMS_ALT_LOG_RECORD' EXPORTING iv_service = gc_tms_tp iv_function = gc_tms_mgr_maint_tr_queue iv_context = 'RSTMS_DEL_PROJECT_FROM_QUEUE' iv_execmode = gv_execmode iv_text = gv_text EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RSTMS_DEL_PROJECT_FROM_QUEUE - TMS: Delete All Requests for a Project from Import Queue RSTMS_DEL_PROJECT_FROM_QUEUE - TMS: Delete All Requests for a Project from Import Queue RSTMS_DEL_IMPORTED_REQUESTS - TMS: Delete All Requests for a Project from Import Queue RSTMS_DEL_IMPORTED_REQUESTS - TMS: Delete All Requests for a Project from Import Queue RSTMS_DEL_APPL_TYPES - Delete supported values for application types (per domain) RSTMS_DEL_APPL_TYPES - Delete supported values for application types (per domain)