RSSERP22 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 RSSERP22 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: KNOTEN = Node (techn. name)
Selection Text: S_FORMS = Form
Title: Find forms
Text Symbol: 001 = Choose form:
Text Symbol: 003 = Search also in subordinate nodes
Text Symbol: 005 = Form hit list
Text Symbol: 006 = Nodes:
Text Symbol: 007 = No entries exist for specified selections
Text Symbol: 008 = Form does not currently exist in the system
Text Symbol: 009 = Find text in docu
Text Symbol: 010 = and
INCLUDE RSSERPDT.
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.
RS_VARIANT_TEXT CALL FUNCTION 'RS_VARIANT_TEXT' EXPORTING CURR_REPORT = VARI_TAB-REPORT "#EC * LANGU = SY-LANGU VARIANT = VARI_TAB-VARIANT IMPORTING V_TEXT = L_VARIANT_TEXT EXCEPTIONS NO_TEXT = 01.
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.