RSMO1B 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 RSMO1B 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.
Title: List output monitor
Text Symbol: 050 = No data available
Text Symbol: 044 = Appl. comp.
Text Symbol: 042 = InfoCube
Text Symbol: 041 = Data group
Text Symbol: 040 = Data Package
Text Symbol: 032 = Sta
Text Symbol: 031 = Detail information: Double-click on affected row.
Text Symbol: 030 = Not yet finished !!!
Text Symbol: 029 = Transfer and update determined
Text Symbol: 028 = Data transfer has not started yet
Text Symbol: 026 = Status
Text Symbol: 025 = Upd. records
Text Symbol: 024 = Req. records
Text Symbol: 023 = IDoc no.
Text Symbol: 022 = Info no.
Text Symbol: 021 = Time
Text Symbol: 020 = Date
Text Symbol: 019 = Error
Text Symbol: 018 = User
Text Symbol: 017 = Hierarchies
Text Symbol: 016 = Texts
Text Symbol: 015 = Master data
Text Symbol: 014 = Transaction data
Text Symbol: 013 = Data Type
Text Symbol: 012 = Source System
Text Symbol: 011 = InfoSource
Text Symbol: 010 = InfoSource
Text Symbol: 002 = Maintain this IDOC?
Text Symbol: 001 = IDOC no.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSD_CUBE_GET * CALL FUNCTION 'RSD_CUBE_GET' * EXPORTING * i_infocube = data_cond-infocube *** I_DDSTATE = 'A' *** I_BYPASS_BUFFER = ' ' * IMPORTING *** E_S_CUBE = *** E_DDSTATE = * e_s_tbhd = s_tbhd * EXCEPTIONS * infocube_not_found = 1 * illegal_input = 2 * others = 3.
EDI_DOCUMENT_STATUS_DISPLAY CALL FUNCTION 'EDI_DOCUMENT_STATUS_DISPLAY' EXPORTING DOCNUM = IDOC_NUM * ACTIONS = ' ' * STATUS_KEY = ' ' * CALL_ASYN = ' ' TREE_DISPLAY = 'Y' * IMPORTING * ACTION = EXCEPTIONS NO_STATUS_RECORD_FOUND = 1 OTHERS = 2.
RSMO_MESSAGE_POPUP * CALL FUNCTION 'RSMO_MESSAGE_POPUP' * EXPORTING * DATA = G_S_DATA * 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.