RSMO3 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 RSMO3 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: Further detail output list
Text Symbol: 028 = Status
Text Symbol: 029 = Data packet &1 should contain &2 entries
Text Symbol: 030 = Time
Text Symbol: 031 = IDoc no.
Text Symbol: 032 = Call.
Text Symbol: 033 = Explanation
Text Symbol: 034 = Status
Text Symbol: 035 = >>> Error <<<
Text Symbol: 040 = InfoPackage
Text Symbol: 041 = Group
Text Symbol: 042 = InfoCube
Text Symbol: 043 = Entries
Text Symbol: 044 = Check table
Text Symbol: 045 = Appl. comp.
Text Symbol: 060 = Updated InfoCube(s)
Text Symbol: 061 = No InfoCube updated !!!
Text Symbol: 062 = Updated check table(s)
Text Symbol: 064 = No check tables updated!!!
Text Symbol: 065 = Hierarchy
Text Symbol: 066 = Version
Text Symbol: 067 = To date
Text Symbol: 001 = IDOC no.
Text Symbol: 002 = Maintain this IDOC?
Text Symbol: 003 = Messages
Text Symbol: 004 = Double-click on row: Messages about data packet/caller
Text Symbol: 010 = InfoSource
Text Symbol: 011 = InfoSource
Text Symbol: 012 = Source System
Text Symbol: 013 = Data Type
Text Symbol: 014 = Transaction Data
Text Symbol: 015 = Master Data
Text Symbol: 016 = Texts
Text Symbol: 017 = Hierarchies
Text Symbol: 018 = User
Text Symbol: 019 = Date
Text Symbol: 020 = Time
Text Symbol: 021 = Error
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 = L_T_ICUBE-ICUBE * 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.
RSMO_MESSAGE_POPUP * CALL FUNCTION 'RSMO_MESSAGE_POPUP' * EXPORTING * DATA = G_S_DATA * EXCEPTIONS * OTHERS = 0.
DD_POPUP_WITH_INFOTEXT * CALL FUNCTION 'DD_POPUP_WITH_INFOTEXT' * EXPORTING * titel = text-003 * start_column = 20 * start_row = 5 * end_column = 80 * end_row = 8 * infoflag = ' ' * IMPORTING * answer = answer * TABLES * lines = text_tab * exceptions * others = 1.
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.