RSMO1A 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 RSMO1A 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: Status output monitor
Text Symbol: 050 = No data available
Text Symbol: 046 = (Archived record)
Text Symbol: 043 = Application Component
Text Symbol: 041 = Deletion of an archived entry ?
Text Symbol: 040 = No
Text Symbol: 039 = Yes
Text Symbol: 038 = Do you really want to delete this entry from the archive?
Text Symbol: 037 = End time
Text Symbol: 036 = End date
Text Symbol: 035 = Updated InfoCube
Text Symbol: 034 = InfoPackage
Text Symbol: 033 = InfoPackage group
Text Symbol: 032 = Source
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 = Updated records
Text Symbol: 024 = Requested records
Text Symbol: 023 = IDoc no.
Text Symbol: 022 = Info no.
Text Symbol: 021 = Start time
Text Symbol: 020 = Start 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.
INCLUDE IDOC2TOT .
No SAP DATABASE tables are accessed within this REPORT code!
RSA_LOGICAL_SYSTEM_BIW_GET CALL FUNCTION 'RSA_LOGICAL_SYSTEM_BIW_GET' IMPORTING E_LOGSYS_BIW = L_RLOGSYS EXCEPTIONS NO_LOGSYS_TO_THIS_CLIENT = 1 OTHERS = 2.
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 * tbhd_not_found = 2 * illegal_input = 3 * others = 4.
RSSM_MON_ARCHIVE_MONITOR_IC * CALL FUNCTION 'RSSM_MON_ARCHIVE_MONITOR_IC' * TABLES * I_T_RNR = L_T_RNR * EXCEPTIONS * OTHERS = 0.
RSSM_MON_RETRIEVE_MONITOR_IC * CALL FUNCTION 'RSSM_MON_RETRIEVE_MONITOR_IC' * TABLES * I_T_RNR = L_T_RNR * EXCEPTIONS * OTHERS = 0.
POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING * DEFAULTOPTION = '1' TEXTLINE1 = TEXT-038 * TEXTLINE2 = ' ' * TEXTLINE3 = ' ' TEXT_OPTION1 = TEXT-039 TEXT_OPTION2 = TEXT-040 TITEL = TEXT-041 * START_COLUMN = 25 * START_ROW = 6 CANCEL_DISPLAY = '' IMPORTING ANSWER = ANSWER EXCEPTIONS OTHERS = 0.
RSSM_MON_DELETE_MONITOR_ARC * CALL FUNCTION 'RSSM_MON_DELETE_MONITOR_ARC' * TABLES * I_T_RNR = L_T_RNR * EXCEPTIONS * OTHERS = 0.
RSAP_IDOC_MONITOR_FROM_BIW CALL FUNCTION 'RSAP_IDOC_MONITOR_FROM_BIW' DESTINATION DATA-LOGSYS TABLES SEL_TAB = SEL_TAB EXCEPTIONS COMMUNICATION_FAILURE = 1 MESSAGE L_MSGTXT SYSTEM_FAILURE = 2 MESSAGE L_MSGTXT 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.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.