ADPRIOTOOLF01 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 ADPRIOTOOLF01 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!
TREEV_CREATE_COLUMN_TREE CALL FUNCTION 'TREEV_CREATE_COLUMN_TREE' EXPORTING owner_repid = this_repid dynnr = this_dynnr container = 'TREE_CONTAINER' left = 0 "container on dynpro top = 0 "used to size control width = 10 "set position height = 10 " alignment = align_at_top * metric = cntl_metric_dynpro * FONT = CNTL_FONT_DEFAULTS no_flush = 'X' * LINK_REPID = * SHELLSTYLE = * PARENTID = reg_event_expand_no_children = 'X' register_event_item_dbl_click = 'X' "Definition of the register_event_node_dbl_click = 'X' "events which will be register_event_header_click = 'X' "pass. to the backend
TREEV_COLLAPSE_ALL_NODES CALL FUNCTION 'TREEV_COLLAPSE_ALL_NODES' EXPORTING handle = tree no_flush = '' EXCEPTIONS failed = 1 cntl_system_error = 2 OTHERS = 3.
STATUS_READ_MULTI CALL FUNCTION 'STATUS_READ_MULTI' EXPORTING client = sy-mandt only_active = 'X' * ALL_IN_BUFFER = ' ' * GET_CHANGE_DOCUMENTS = ' ' * NO_BUFFER_FILL = ' ' TABLES objnr_tab = l_jsto_pre status = l_jest * JSTO_TAB = * JCDO_TAB = * JCDS_TAB = .
TREEV_UPDATE_NODES_AND_ITEMS CALL FUNCTION 'TREEV_UPDATE_NODES_AND_ITEMS' EXPORTING handle = tree * ITEM_TABLE_STRUCTURE_NAME = no_flush = 'X' TABLES node_table = lt_treev_unod * ITEM_TABLE = EXCEPTIONS failed = 1 missing_item_table_struct_name = 2 instance_not_found = 3 not_allowed_for_simple_tree = 4 cntl_system_error = 5 error_in_tables = 6 dp_error = 7 table_structure_name_not_found = 8 OTHERS = 9 .
TREEV_NODE_SET_HIDDEN * CALL FUNCTION 'TREEV_NODE_SET_HIDDEN' * EXPORTING * HANDLE = tree * NODE_KEY = lt_nodes-node_key * HIDDEN = space ** NO_FLUSH = * EXCEPTIONS * FAILED = 1 * NODE_NOT_FOUND = 2 * CNTL_SYSTEM_ERROR = 3 * OTHERS = 4 * .
TREEV_NODE_SET_HIDDEN CALL FUNCTION 'TREEV_NODE_SET_HIDDEN' EXPORTING handle = tree node_key = node_key hidden = 'X' no_flush = 'X' EXCEPTIONS failed = 1 node_not_found = 2 cntl_system_error = 3 OTHERS = 4.
HELP_OBJECT_SHOW_FOR_FIELD CALL FUNCTION 'HELP_OBJECT_SHOW_FOR_FIELD' EXPORTING called_for_tab = l_tabname called_for_field = l_fieldname EXCEPTIONS object_not_found = 1 sapscript_error = 2 OTHERS = 3.
HELP_OBJECT_SHOW_FOR_FIELD CALL FUNCTION 'HELP_OBJECT_SHOW_FOR_FIELD' EXPORTING called_for_tab = l_tabname called_for_field = l_fieldname EXCEPTIONS object_not_found = 1 sapscript_error = 2 OTHERS = 3.
TREEV_SCROLL CALL FUNCTION 'TREEV_SCROLL' EXPORTING handle = tree scroll_command = scroll * NO_FLUSH = EXCEPTIONS failed = 1 illegal_scroll_command = 2 cntl_system_error = 3 OTHERS = 4.
LT_VARIANTS_MAINTAIN CALL FUNCTION 'LT_VARIANTS_MAINTAIN' EXPORTING * I_TOOL = is_variant = ls_variant i_user_specific = l_user_specific * I_TABNAME = * I_TABNAME_SLAVE = * I_CALLBACK_HEADER_TRANSPORT = * IS_LAYOUT = * IT_DEFAULT_FIELDCAT = EXCEPTIONS foreign_lock = 1 OTHERS = 2 .
TREEV_NODE_SET_HIDDEN CALL FUNCTION 'TREEV_NODE_SET_HIDDEN' EXPORTING handle = tree node_key = lt_filled_nodes-node_key hidden = lt_filled_nodes-hidden no_flush = 'X' EXCEPTIONS failed = 1 node_not_found = 2 cntl_system_error = 3 OTHERS = 4.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.