BUILD_SIMU_RESULTS_NODE_TREE is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name BUILD_SIMU_RESULTS_NODE_TREE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RTMATGRP_SIM
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BUILD_SIMU_RESULTS_NODE_TREE' "Build ALV Tree to Display Node Results for Simulation
EXPORTING
flag_mis_node_src = " xfeld Checkbox
flag_mis_node_tar = " xfeld Checkbox
flag_exp_node = " xfeld Checkbox
TABLES
node_results = " wrf_node_alv Structure CDT - ALV
CHANGING
tree_for_nodes = " cl_gui_alv_tree ALV Tree Control
. " BUILD_SIMU_RESULTS_NODE_TREE
The ABAP code below is a full code listing to execute function module BUILD_SIMU_RESULTS_NODE_TREE including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| it_node_results | TYPE STANDARD TABLE OF WRF_NODE_ALV,"TABLES PARAM |
| wa_node_results | LIKE LINE OF it_node_results . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_tree_for_nodes | TYPE CL_GUI_ALV_TREE , |
| ld_flag_mis_node_src | TYPE XFELD , |
| it_node_results | TYPE STANDARD TABLE OF WRF_NODE_ALV , |
| wa_node_results | LIKE LINE OF it_node_results, |
| ld_flag_mis_node_tar | TYPE XFELD , |
| ld_flag_exp_node | TYPE XFELD . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name BUILD_SIMU_RESULTS_NODE_TREE or its description.
BUILD_SIMU_RESULTS_NODE_TREE - Build ALV Tree to Display Node Results for Simulation BUILD_SIMU_RESULTS_ART_TREE - Build ALV Tree to Display Article Results for Simulation BUILD_SHORTCUT_MASS - Starts GUI with parameters BUILD_SHORTCUT - Starts GUI with parameters BUILD_SECTION - BUILD_RECOVERY_RESULT_TABLES - Overview of Generated IDocs