MWPERF03 is a standard ABAP INCLUDE 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 MWPERF03 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: Form Routines for Hierarchy Display
INCLUDE LWPSAWPS.
No SAP DATABASE tables are accessed within this REPORT code!
RS_TREE_GET_NODE call function 'RS_TREE_GET_NODE' exporting node_id = insert_id importing node_info = l_node exceptions id_not_found = 1 others = 2.
RS_TREE_SET_NODE call function 'RS_TREE_SET_NODE' exporting node_info = l_node exceptions id_not_found = 1 others = 2.
RS_TREE_CONSTRUCT call function 'RS_TREE_CONSTRUCT' exporting insert_id = insert_id relationship = relationship tables nodetab = g_t_nodes.
RS_TREE_LIST_DISPLAY call function 'RS_TREE_LIST_DISPLAY' exporting callback_program = 'SAPMWPER' callback_user_command = 'TREE_COMMANDS' callback_text_display = '' callback_color_display = ' ' status = 'OWN' check_duplicate_name = '1' color_of_link = '1' color_of_node = '4' lower_case_sensitive = ' ' modification_log = ' ' node_length = 30 text_length = 75 text_length1 = 0 text_length2 = 0 return_marked_subtree = ' ' screen_start_column = 0 screen_start_line = 0 screen_end_column = 0 screen_end_line = 0 suppress_node_output = ' ' importing f15 = e_f15.
RS_TREE_SET_NODE call function 'RS_TREE_SET_NODE' exporting node_info = node_info exceptions id_not_found = 1 others = 2.
RS_TREE_EXPAND call function 'RS_TREE_EXPAND' exporting node_id = id exceptions not_found = 1 others = 2.
RS_TREE_COMPRESS call function 'RS_TREE_COMPRESS' exporting node_id = id exceptions not_found = 1 others = 2.
RS_TREE_LIST call function 'RS_TREE_LIST' exporting node_id = node_id all = 'X' with_attributes = 'X' tables list = nodes exceptions cycle_detected = 1 node_not_found = 2 others = 3.
RS_TREE_DELETE_NODE call function 'RS_TREE_DELETE_NODE' exporting node_id = '000000' exceptions id_not_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.