MF700FEN 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 MF700FEN 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: Enqueue/Dequeue of Financial Transactions
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ENQUEUE_E_VTBFHA CALL FUNCTION 'ENQUEUE_E_VTBFHA' EXPORTING BUKRS = BUKRS * MANDT = SY-MANDT RFHA = RFHA * X_BUKRS = ' ' * X_RFHA = ' ' * _SCOPE = '2' * _WAIT = ' ' EXCEPTIONS FOREIGN_LOCK = 01 SYSTEM_FAILURE = 02.
DEQUEUE_E_VTBFHA CALL FUNCTION 'DEQUEUE_E_VTBFHA' EXPORTING BUKRS = BUKRS * MANDT = SY-MANDT RFHA = RFHA.
TB_REF_OBJECT_CHECK CALL FUNCTION 'TB_REF_OBJECT_CHECK' EXPORTING * IMP_REFTYP = ' ' IMP_OBJNR = OBJNR TABLES T_REFH = I_REFH T_REFON = I_REFON EXCEPTIONS REFTYP_UNKNOWN = 1 NO_REFERENCE_FOUND = 2 REF_TYPE_NOT_FOUND = 3 INTERNAL_ERROR = 4 OTHERS = 5.
TB_REF_REFERENCE_ENQUEUE CALL FUNCTION 'TB_REF_REFERENCE_ENQUEUE' EXPORTING IMP_REFTYP = CON_PROL IMP_REFNR = I_REFH-REFNR * IMP_OBJNR = ' ' EXCEPTIONS FOREIGN_LOCK_YOUR_USER = 1 FOREIGN_LOCK_OTHER_USER = 2 SYSTEM_FAILURE = 3 OTHERS = 4.
TB_REF_REFERENCE_DEQUEUE CALL FUNCTION 'TB_REF_REFERENCE_DEQUEUE' EXPORTING IMP_REFTYP = REFTYP IMP_REFNR = REFNR * IMP_OBJNR = ' ' EXCEPTIONS OTHERS = 1.
ENQUEUE_E_VTBFHA CALL FUNCTION 'ENQUEUE_E_VTBFHA' EXPORTING BUKRS = BUKRS * MANDT = SY-MANDT RFHA = RFHA * X_BUKRS = ' ' * X_RFHA = ' ' * _SCOPE = '2' * _WAIT = ' ' EXCEPTIONS FOREIGN_LOCK = 01 SYSTEM_FAILURE = 02.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.