PPORPF19 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 PPORPF19 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_COMPRESS CALL FUNCTION 'RS_TREE_COMPRESS' EXPORTING node_id = '000001' EXCEPTIONS not_found = 0 OTHERS = 0.
RS_TREE_EXPAND CALL FUNCTION 'RS_TREE_EXPAND' EXPORTING node_id = branch_tab-id depth = 1 EXCEPTIONS not_found = 0 OTHERS = 0.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = tabname TABLES dfies_tab = dfies_tab EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = 'OBFIELD' fieldname = object_field-fieldname TABLES dfies_tab = dfies_tab EXCEPTIONS OTHERS = 1.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = 'MAFIELD' fieldname = material_field-fieldname TABLES dfies_tab = dfies_tab EXCEPTIONS OTHERS = 1.
STATUS_BUFFER_REFRESH CALL FUNCTION 'STATUS_BUFFER_REFRESH'.
TIME_UNITS CALL FUNCTION 'TIME_UNITS' IMPORTING day = day.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.