F053RF01 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 F053RF01 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: Include KMDELF01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
K_MESSAGE_TRANSFORM CALL FUNCTION 'K_MESSAGE_TRANSFORM' EXPORTING PAR_LANGU = SY-LANGU PAR_MSGID = P_MSGS-MSGID PAR_MSGNO = P_MSGS-MSGNO PAR_MSGTY = P_MSGS-MSGTY PAR_MSGV1 = P_MSGS-MSGV1 PAR_MSGV2 = P_MSGS-MSGV2 PAR_MSGV3 = P_MSGS-MSGV3 PAR_MSGV4 = P_MSGS-MSGV4 IMPORTING PAR_MSGTX = P_TEXT EXCEPTIONS NO_MESSAGE_FOUND = 1 PAR_MSGID_MISSING = 2 PAR_MSGNO_MISSING = 3 PAR_MSGTY_MISSING = 4 OTHERS = 5.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = 'SAPF053R' IS_LAYOUT = T_LAYOUT IT_FIELDCAT = T_FIELDCAT IT_EVENTS = LT_EVENTS TABLES T_OUTTAB = T_DELETED EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
REUSE_ALV_LIST_DISPLAY CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY' EXPORTING I_CALLBACK_PROGRAM = 'SAPF053R' IS_LAYOUT = T_LAYOUT IT_FIELDCAT = T_FIELDCAT IT_EVENTS = LT_EVENTS TABLES T_OUTTAB = T_NOT_DELETED EXCEPTIONS PROGRAM_ERROR = 1 OTHERS = 2.
REUSE_ALV_BLOCK_LIST_DISPLAY * call function 'REUSE_ALV_BLOCK_LIST_DISPLAY' * exceptions * others = 1.
ENQUEUE_EFSKM1 CALL FUNCTION 'ENQUEUE_EFSKM1' EXPORTING KTOPL = P_KTOPL MUSTR = P_MUSTR EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2 OTHERS = 3.
DEQUEUE_EFSKM1 CALL FUNCTION 'DEQUEUE_EFSKM1' EXPORTING KTOPL = P_KTOPL MUSTR = P_MUSTR EXCEPTIONS SYSTEM_FAILURE = 1 OTHERS = 2.
GENREF_DOCUMENT_CHANGES_DELETE CALL FUNCTION 'GENREF_DOCUMENT_CHANGES_DELETE' EXPORTING I_DELETE = P_TEST IMPORTING E_DBCNT = SY-DBCNT TABLES T_MUSTR = T_MUSTR EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.