RSMO1 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 RSMO1 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: DAT = Selection date
Selection Text: DAT1 = Archiving date
Selection Text: DAT2 = Date for importing
Selection Text: DAT3 = Delete date
Title: Monitor report
Text Symbol: 011 = Import from archive?
Text Symbol: 012 = Date selection for deleting from archive entries
Text Symbol: 013 = Do you really want to delete the whole archive?
Text Symbol: 014 = Delete from archive?
Text Symbol: 010 = Do you really want to import the whole archive to the monitor IC ?
Text Symbol: 001 = Date selection
Text Symbol: 002 = Date selection for archiving
Text Symbol: 003 = Caution!
Text Symbol: 004 = Yes
Text Symbol: 005 = No
Text Symbol: 006 = Archive ?
Text Symbol: 007 = You have not selected anything!
Text Symbol: 008 = Do you really want to archive the whole monitor IC ?
Text Symbol: 009 = Date selection for importing the data from the archive
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RSSM_MON_SHOW_MONITOR_IC CALL FUNCTION 'RSSM_MON_SHOW_MONITOR_IC' IMPORTING OK_CODE = OKCODE TABLES SELECTION_TABLE = SELECTION_TABLE STATUS_TABLE = STATUS_TABLE CHANGING C_ONLY = L_ONLY C_WITH = L_WITH C_WITHOUT = L_WITHOUT C_FREE = L_FREE C_NOW = L_NOW C_YESTERDAY = L_YESTERDAY C_WEEK = L_WEEK C_MONTH = L_MONTH C_LISTE = L_LISTE C_DYNPRO = L_DYNPRO EXCEPTIONS OTHERS = 1.
RSSM_MON_READ_MON_IC_RNR_COMP CALL FUNCTION 'RSSM_MON_READ_MON_IC_RNR_COMP' EXPORTING SPRACHE = SY-LANGU TABLES DATA = DATA SELECTION_TABLE = SELECTION_TABLE EXCEPTIONS OTHERS = 1.
RSSM_MON_LIST_MONITOR_IC CALL FUNCTION 'RSSM_MON_LIST_MONITOR_IC' TABLES I_T_GNR_ITAB = GNR_ITAB I_T_IDOC_ITAB = IDOC_ITAB I_T_STATUS_ITAB = STATUS_TABLE CHANGING E_COMMAND = L_COMMAND EXCEPTIONS OTHERS = 1.
POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING * DEFAULTOPTION = '1' TEXTLINE1 = TEXT-003 TEXTLINE2 = TEXT-007 TEXTLINE3 = TEXT-008 TEXT_OPTION1 = TEXT-004 TEXT_OPTION2 = TEXT-005 TITEL = TEXT-006 * START_COLUMN = 25 * START_ROW = 6 CANCEL_DISPLAY = '' IMPORTING ANSWER = L_ANSWER EXCEPTIONS OTHERS = 0.
RSSM_MON_READ_MON_IC_RNR_COMP CALL FUNCTION 'RSSM_MON_READ_MON_IC_RNR_COMP' EXPORTING SPRACHE = SY-LANGU TABLES DATA = DATA SELECTION_TABLE = SELECTION_TABLE EXCEPTIONS OTHERS = 1.
RSSM_MON_ARCHIVE_MONITOR_IC * CALL FUNCTION 'RSSM_MON_ARCHIVE_MONITOR_IC' * TABLES * I_T_RNR = L_T_RSRNR * EXCEPTIONS * OTHERS = 0.
POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING * DEFAULTOPTION = '1' TEXTLINE1 = TEXT-003 TEXTLINE2 = TEXT-007 TEXTLINE3 = TEXT-010 TEXT_OPTION1 = TEXT-004 TEXT_OPTION2 = TEXT-005 TITEL = TEXT-011 * START_COLUMN = 25 * START_ROW = 6 CANCEL_DISPLAY = '' IMPORTING ANSWER = L_ANSWER EXCEPTIONS OTHERS = 0.
RSSM_MON_READ_MON_IC_RNR_COMP CALL FUNCTION 'RSSM_MON_READ_MON_IC_RNR_COMP' EXPORTING SPRACHE = SY-LANGU TABLES DATA = DATA SELECTION_TABLE = SELECTION_TABLE EXCEPTIONS OTHERS = 1.
RSSM_MON_RETRIEVE_MONITOR_IC * CALL FUNCTION 'RSSM_MON_RETRIEVE_MONITOR_IC' * TABLES * I_T_RNR = L_T_RSRNR * EXCEPTIONS * OTHERS = 0.
POPUP_TO_DECIDE CALL FUNCTION 'POPUP_TO_DECIDE' EXPORTING * DEFAULTOPTION = '1' TEXTLINE1 = TEXT-003 TEXTLINE2 = TEXT-007 TEXTLINE3 = TEXT-013 TEXT_OPTION1 = TEXT-004 TEXT_OPTION2 = TEXT-005 TITEL = TEXT-014 * START_COLUMN = 25 * START_ROW = 6 CANCEL_DISPLAY = '' IMPORTING ANSWER = L_ANSWER EXCEPTIONS OTHERS = 0.
RSSM_MON_READ_MON_IC_RNR_COMP CALL FUNCTION 'RSSM_MON_READ_MON_IC_RNR_COMP' EXPORTING SPRACHE = SY-LANGU TABLES DATA = DATA SELECTION_TABLE = SELECTION_TABLE EXCEPTIONS OTHERS = 1.
RSSM_MON_DELETE_MONITOR_ARC * CALL FUNCTION 'RSSM_MON_DELETE_MONITOR_ARC' * TABLES * I_T_RNR = L_T_RSRNR * 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.