TAT_BATCH_JOB_IWB_STAT_FOLDF01 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 TAT_BATCH_JOB_IWB_STAT_FOLDF01 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!
IW_C_CONTEXT_SET CALL FUNCTION 'IW_C_CONTEXT_SET' EXPORTING LANGUAGE = H_LANGU TABLES CONTEXT = H_CONTEXT.
INFO_OBJECTS_PROPERTIES_GET CALL FUNCTION 'INFO_OBJECTS_PROPERTIES_GET' TABLES INFO_OBJECTS = L_FOLDER CONTEXT = H_CONTEXT REQUESTED_PROPERTIES = L_REQ_PROP PROPERTIES = L_PROPERTIES.
IWB_FOLDER_INFO_OBJECTS_GET CALL FUNCTION 'IWB_FOLDER_INFO_OBJECTS_GET' IMPORTING ERROR_MSG = H_ERROR_MSG TABLES FOLDER = L_FOLDER INFO_OBJECTS = L_INFO_OBJECTS.
IWB_FOLDER_INFO_OBJECTS_GET CALL FUNCTION 'IWB_FOLDER_INFO_OBJECTS_GET' EXPORTING ONLY_OBJECTS_FOR_CONTEXT = C_YES IMPORTING ERROR_MSG = L_ERROR_MSG TABLES FOLDER = L_FOLDER INFO_OBJECTS = L_INFO_OBJECTS CONTEXT = H_CONTEXT REQUESTED_PROPERTIES = L_REQ_PROP PROPERTIES_OF_RESULT = L_PROPERTIES.
SDOK_LOIO_PHYSICAL_OBJECT_GET CALL FUNCTION 'SDOK_LOIO_PHYSICAL_OBJECT_GET' EXPORTING OBJECT_ID = LOIO_OBJECT IMPORTING PHYSICAL_OBJECT = PHIO_OBJECT TABLES CONTEXT = H_CONTEXT EXCEPTIONS NOT_EXISTING = 105 NO_PHYSICAL_OBJECT = 105 NOT_AUTHORIZED = 1000 OTHERS = 1000.
GET_PHIO_VERSREF_CHAIN CALL FUNCTION 'GET_PHIO_VERSREF_CHAIN' EXPORTING FST_PHIO_ID = PHIO_OBJECT-OBJID FST_PHIO_CLS = PHIO_OBJECT-CLASS TABLES P_RELATIONS = H_TAB_RELATIONS P_CHAIN = P_CHAIN.
IO_C_PROPERTIES_GET_PHIOS CALL FUNCTION 'IO_C_PROPERTIES_GET_PHIOS' EXPORTING SUPPRESS_SYS_PROPERTIES = ' ' TABLES INFO_OBJECTS = P_PHIO_OBJ PROPERTIES = P_PHIO_PROP.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.