RSSERP20 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 RSSERP20 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: DBANWNDG = from application
Selection Text: AUTOR = Created by
Selection Text: ANWENDNG = Application
Selection Text: AENDERER = Last changed by
Selection Text: EXTREP = Extended report name
Selection Text: KNOTEN = Node (techn. name)
Selection Text: LOGDB = Logical database
Selection Text: REPORTS = Report Name
Selection Text: TITEL = Title
Title: Find Report
Text Symbol: 001 = Report selection:
Text Symbol: 002 = Additional select. criteria for ABAP reports
Text Symbol: 003 = Search also in subordinate nodes
Text Symbol: 005 = Report hit list
Text Symbol: 006 = Nodes:
Text Symbol: 007 = No entries exist for specified selections
Text Symbol: 008 = Report does not exist in system at present
Text Symbol: 009 = Find text in docu
Text Symbol: 010 = and
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
RS_TREE_SET_CURRENT_TREE CALL FUNCTION 'RS_TREE_SET_CURRENT_TREE' TABLES NODELIST = I_STREENODE.
RS_TREE_LIST CALL FUNCTION 'RS_TREE_LIST' EXPORTING ALL = 'X' NODE_ID = KNOTEN_ID TABLES LIST = KNOTEN_TAB EXCEPTIONS CYCLE_DETECTED = 01 NODE_NOT_FOUND = 02.
RSAQ_READ_QUERY_TITEL CALL FUNCTION 'RSAQ_READ_QUERY_TITEL' EXPORTING WORKSPACE = L_WORKSPACE USERGROUP = L_USERGROUP QUERY = L_QUERY IMPORTING TITEL = P_TREFFER_TAB-REP_TITEL EXCEPTIONS NO_USERGROUP = 1 NO_QUERY = 2 OTHERS = 3.
SELECT_FORM CALL FUNCTION 'SELECT_FORM' EXPORTING FORM = L_TDFORM LANGUAGE = '*' THROUGHCLIENT = 'X' TABLES SELECTIONS = L_SELECTED_LAYOUT_SETS EXCEPTIONS OTHERS = 1.
K_RW_REPORT_CHECK CALL FUNCTION 'K_RW_REPORT_CHECK' EXPORTING I_REPORT = P_TREFFER_TAB-REPORT I_EXTDREPORT = P_TREFFER_TAB-EXTDREPORT I_REPORTTYPE = P_TREFFER_TAB-REPORTTYPE IMPORTING E_TEXT = P_TREFFER_TAB-REP_TITEL EXCEPTIONS NOT_FOUND = 1 NOT_GENERATED = 2. "#EC *
RS_VARIANT_TEXT CALL FUNCTION 'RS_VARIANT_TEXT' EXPORTING CURR_REPORT = VARI_TAB-REPORT LANGU = SY-LANGU VARIANT = VARI_TAB-VARIANT IMPORTING V_TEXT = L_VARIANT_TEXT EXCEPTIONS NO_TEXT = 01.
DOCU_GET CALL FUNCTION 'DOCU_GET' EXPORTING ID = 'RE' LANGU = SY-LANGU OBJECT = L_DOCU_OBJECT TYP = 'E' TABLES LINE = L_DOCU_TAB EXCEPTIONS OTHERS = 04.
DOCU_INIT CALL FUNCTION 'DOCU_INIT' EXPORTING ID = 'RE' OBJECT = L_DOCU_OBJECT TYP = 'E' LANGU = SY-LANGU IMPORTING FOUND = L_DOCU_FOUND.
DOCU_CALL CALL FUNCTION 'DOCU_CALL' EXPORTING DISPL = C_TRUE DISPL_MODE = 2 ID = 'RE' OBJECT = L_DOCU_OBJECT TYP = 'E' LANGU = SY-LANGU.
K_RW_REPORT_DOCU_DISPLAY CALL FUNCTION 'K_RW_REPORT_DOCU_DISPLAY' EXPORTING I_REPORT = P_TREFFER_TAB-REPORT I_EXTDREPORT = P_TREFFER_TAB-EXTDREPORT I_REPORTTYPE = P_TREFFER_TAB-REPORTTYPE EXCEPTIONS NO_DOCUMENTATION_FOUND = 01. "#EC *
RS_REPORTINGTREE_NODE_AUTH CALL FUNCTION 'RS_REPORTINGTREE_NODE_AUTH' EXPORTING AUTHGROUP = P_SERPTREE-AUTHGROUP EXCEPTIONS NO_SUBMIT_AUTH = 01.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.