IDOC_TREE_CONTROLF01 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 IDOC_TREE_CONTROLF01 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!
EDI_DOCUMENT_PRINT CALL FUNCTION 'EDI_DOCUMENT_PRINT' EXPORTING DOCNUM = docnum .
SWU_OBJECT_REFRESH CALL FUNCTION 'SWU_OBJECT_REFRESH' EXPORTING OBJTYPE = 'IDOC' .
SWU_OBJECT_PUBLISH CALL FUNCTION 'SWU_OBJECT_PUBLISH' EXPORTING OBJTYPE = 'IDOC' OBJKEY = docnum * CREATOR = ' ' * METHOD = ' ' * TABLES * CONTAINER = EXCEPTIONS OTHERS = 0 .
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING NAME = icon_yellow_light info = text-011 IMPORTING RESULT = hugo EXCEPTIONS OTHERS = 0 .
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING NAME = icon_green_light info = text-013 IMPORTING RESULT = hugo EXCEPTIONS OTHERS = 0 .
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING NAME = icon_red_light info = text-012 IMPORTING RESULT = hugo EXCEPTIONS OTHERS = 0 .
HELP_START CALL FUNCTION 'HELP_START' EXPORTING HELP_INFOS = info_langtext * IMPORTING * SELECTION = * SELECT_VALUE = * RSMDY_RET = TABLES DYNPSELECT = int_dselc DYNPVALUETAB = int_dval .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.