ROIKHIG1 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 ROIKHIG1 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
O4PH - Display Load information
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.
Listing TAS Idoc status
Selection Text: DOCNO = Number of referenced document
Selection Text: ERDAT = Date of processing start
Selection Text: LIDNO = Load ID
Selection Text: PROC_C = Completely processed
Selection Text: PROC_U = Not completely processed
Title: LID History Information
Text Symbol: 001 = Function not yet processed
Text Symbol: 002 = Load ID
Text Symbol: 003 = FS
Text Symbol: 004 = LF
Text Symbol: 005 = Function name
Text Symbol: 006 = Message
Text Symbol: 007 = Document No
Text Symbol: 008 = Item No
Text Symbol: 009 = IDoc number
Text Symbol: 010 = Listing TAS Idoc status
Text Symbol: 011 = Success
Text Symbol: 012 = Warning
Text Symbol: 013 = Error
001 IDoc number
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FORMAT_MESSAGE CALL FUNCTION 'FORMAT_MESSAGE' EXPORTING id = g_oik02b_tab-msgid lang = sy-langu no = g_oik02b_tab-msgno v1 = g_oik02b_tab-msgv1 v2 = g_oik02b_tab-msgv2 v3 = g_oik02b_tab-msgv3 v4 = g_oik02b_tab-msgv4 IMPORTING msg = l_text EXCEPTIONS not_found = 1 OTHERS = 2.
EDI_DOCUMENT_TREE_DISPLAY * CALL FUNCTION 'EDI_DOCUMENT_TREE_DISPLAY' * EXPORTING * DOCNUM = DOCNUM * EXCEPTIONS * NO_IDOC_FOUND = 1 * OTHERS = 2.
EDI_DOCUMENT_TREE_DISPLAY CALL FUNCTION 'EDI_DOCUMENT_TREE_DISPLAY' EXPORTING docnum = gs_master-docnum EXCEPTIONS no_idoc_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.