ADITES11 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 ADITES11 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: Application Areas with ID
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
BM_EU_TREE_CONSTRUCT CALL FUNCTION 'BM_EU_TREE_CONSTRUCT' EXPORTING LEVELS = LEVELS TABLES NODETAB = NODES.
RS_TREE_CONSTRUCT CALL FUNCTION 'RS_TREE_CONSTRUCT' TABLES NODETAB = NODES EXCEPTIONS TREE_FAILURE = 01 ID_NOT_FOUND = 02 WRONG_RELATIONSHIP = 03.
RS_TREE_LIST_DISPLAY CALL FUNCTION 'RS_TREE_LIST_DISPLAY' EXPORTING CALLBACK_PROGRAM = 'ADITES11' CALLBACK_USER_COMMAND = 'USER_COMMAND' CALLBACK_TEXT_DISPLAY = ' ' CALLBACK_COLOR_DISPLAY = ' ' STATUS = 'AP_SHOW' * CHECK_DUPLICATE_NAME = '3' COLOR_OF_LINK = '1' COLOR_OF_NODE = '4' LOWER_CASE_SENSITIVE = ' ' MODIFICATION_LOG = ' ' NODE_LENGTH = 10 TEXT_LENGTH = 60 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 = ' '.
BM_BRANCH_INSERT CALL FUNCTION 'BM_BRANCH_INSERT' EXPORTING VIEW_TYP = 'H' OBJECT_TYP = OBJ_TYP OBJECT_ID = NODE_OBJ MODEL_TYP = 'HT' NODE_ID = NODE-ID LEVELS = 1 NODE_DISPLAY = ' ' TEXT_DISPLAY = 'X'.
BM_NAVIGATION_POPUP CALL FUNCTION 'BM_NAVIGATION_POPUP' EXPORTING NAV_TYP = NODE_TYP NAV_OBJ = NODE_OBJ GRAPHIC_ACTIVE = SPACE MODIFY = 'X'.
BM_BRANCH_INSERT CALL FUNCTION 'BM_BRANCH_INSERT' EXPORTING VIEW_TYP = 'H' OBJECT_TYP = OBJ_TYP OBJECT_ID = NODE_OBJ MODEL_TYP = 'HT' NODE_ID = NODE-ID LEVELS = 0 NODE_DISPLAY = ' ' TEXT_DISPLAY = 'X'.
BM_SHOW_DETAILS CALL FUNCTION 'BM_SHOW_DETAILS' EXPORTING NODE_TYP = 'HF' MODIFY = 'X' TABLES OBJECTS = OBJECT_DEFS.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.