GRAFINC3 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 GRAFINC3 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!
RS_TREE_LIST_DISPLAY CALL FUNCTION 'RS_TREE_LIST_DISPLAY' EXPORTING CALLBACK_PROGRAM = PROGNAME CALLBACK_USER_COMMAND = 'HIER_COMMAND' * callback_text_display = 'HIER_TEXT' CALLBACK_COLOR_DISPLAY = 'HIER_COLOR' CALLBACK_TOP_OF_PAGE = 'HIER_HEADER' * status = 'IMPLICIT' * CHECK_DUPLICATE_NAME = '1' * COLOR_OF_LINK = '1' * COLOR_OF_NODE = '4' LOWER_CASE_SENSITIVE = 'X' * MODIFICATION_LOG = ' ' * NODE_LENGTH = 30 * TEXT_LENGTH = 75 * TEXT_LENGTH1 = 0 * TEXT_LENGTH2 = 0 RETURN_MARKED_SUBTREE = 'X' * screen_start_column = 0 * screen_start_line = 0 * screen_end_column = 0 * screen_end_line = 0 SUPPRESS_NODE_OUTPUT = 'X' IMPORTING F15 = F15 EXCEPTIONS OTHERS = 1.
RS_TREE_SET_NODE CALL FUNCTION 'RS_TREE_SET_NODE' EXPORTING NODE_INFO = NEW_NODE EXCEPTIONS ID_NOT_FOUND = 1 OTHERS = 2.
RS_TREE_GET_NODE CALL FUNCTION 'RS_TREE_GET_NODE' EXPORTING NODE_ID = NODETAB-PARENT IMPORTING NODE_INFO = NEW_NODE EXCEPTIONS ID_NOT_FOUND = 1 OTHERS = 2.
RS_TREE_CONSTRUCT CALL FUNCTION 'RS_TREE_CONSTRUCT' EXPORTING INSERT_ID = '000000' RELATIONSHIP = ' ' TABLES NODETAB = NODETAB EXCEPTIONS TREE_FAILURE = 1 ID_NOT_FOUND = 2 WRONG_RELATIONSHIP = 3 OTHERS = 4.
RS_TREE_LIST CALL FUNCTION 'RS_TREE_LIST' EXPORTING NODE_ID = 1 "Id des ersten Knotens ALL = 'X' WITH_ATTRIBUTES = 'X' TABLES LIST = ALLNODES EXCEPTIONS CYCLE_DETECTED = 1 NODE_NOT_FOUND = 2 OTHERS = 3.
RS_TREE_LIST CALL FUNCTION 'RS_TREE_LIST' EXPORTING NODE_ID = 1 "Id des ersten Knotens ALL = 'X' WITH_ATTRIBUTES = 'X' TABLES LIST = ALLNODES EXCEPTIONS CYCLE_DETECTED = 1 NODE_NOT_FOUND = 2 OTHERS = 3.
RS_TREE_CONSTRUCT CALL FUNCTION 'RS_TREE_CONSTRUCT' EXPORTING INSERT_ID = '000000' RELATIONSHIP = ' ' TABLES NODETAB = ALLNODES EXCEPTIONS TREE_FAILURE = 1 ID_NOT_FOUND = 2 WRONG_RELATIONSHIP = 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.