FGRWE_SPLIT_SCREEN 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 FGRWE_SPLIT_SCREEN 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ACC_CA_TREE_DELETE CALL FUNCTION 'ACC_CA_TREE_DELETE'.
ACC_CA_TREE_HIDE CALL FUNCTION 'ACC_CA_TREE_HIDE' EXPORTING i_tree_number = '00' EXCEPTIONS OTHERS = 1.
ACC_CA_TREE_INITIALIZE CALL FUNCTION 'ACC_CA_TREE_INITIALIZE' EXPORTING i_callback_repid = 'SAPFGRWE' i_callback_form = 'TREE_CALLBACK' i_docking_repid = l_program i_docking_dynnr = l_dynnr i_number_of_trees = 3 TABLES it_tree_properties = l_t_tree_properties EXCEPTIONS OTHERS = 1.
ACC_CA_TREE_DOCK CALL FUNCTION 'ACC_CA_TREE_DOCK' EXPORTING i_repid = l_program i_dynnr = l_dynnr EXCEPTIONS OTHERS = 1.
ACC_CA_TREE_GET_LAYOUT_RSTHIE CALL FUNCTION 'ACC_CA_TREE_GET_LAYOUT_RSTHIE' EXPORTING i_tree_number = '03' TABLES et_rsthie = g_t_rsthie_vare EXCEPTIONS OTHERS = 4.
ACC_CA_TREE_HIDE CALL FUNCTION 'ACC_CA_TREE_HIDE' EXPORTING i_tree_number = l_tree_number i_no_flush = 'X'.
ACC_CA_TREE_CREATE_FROM_RSTHIE CALL FUNCTION 'ACC_CA_TREE_CREATE_FROM_RSTHIE' EXPORTING i_tree_number = l_tree_number i_expand_to_level = l_level i_use_rsthie_layout = p_x_use_layout i_heading = p_text i_no_flush = 'X' TABLES it_rsthie = p_t_rsthie it_rsttxt = p_t_rsttxt it_rsttyp = p_t_rsttyp.
ACC_CA_TREE_SELECT_NODE CALL FUNCTION 'ACC_CA_TREE_SELECT_NODE' EXPORTING i_tree_number = l_tree_number i_rsthie_id = p_mark_id i_no_flush = 'X'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.