MF700S03 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 MF700S03 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: Financial Transaction Selection
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DEALDATA_READ CALL FUNCTION 'DEALDATA_READ' EXPORTING COMPANYCODE = PAR_BUKRS DEALNO = PAR_GNR STATUSNO = PAR_ZNR CURRENTLY_ACTIVE_STATUS = 'X' IMPORTING DEAL = A_FHA STATUS = A_FHAZU TABLES * CONDITIONGROUPS = A_GRFINKO CONDITIONS = A_FINKO POSITIONS = A_FHAPO * DEAL_POSITIONS = A_FHAPO_Z0 EXCEPTIONS DEAL_NOT_FOUND = 01 STATUS_NOT_FOUND = 02.
FTR_CHECK_ACTIVE CALL FUNCTION 'FTR_CHECK_ACTIVE' EXPORTING I_BUKRS = A_FHA-BUKRS I_RFHA = A_FHA-RFHA * I_RFHAZU = I_SAKTIV = A_FHA-SAKTIV EXCEPTIONS NOT_ACTIVE = 1 OTHERS = 2 .
TB_DEAL_PAYMENT_DATA_READ CALL FUNCTION 'TB_DEAL_PAYMENT_DATA_READ' EXPORTING COMPANYCODE = PAR_BUKRS DEALNUMBER = PAR_GNR TABLES PAYMENT_DATA = A_ZV.
TLR_TRADE_ID_READ CALL FUNCTION 'TLR_TRADE_ID_READ' EXPORTING iv_bukrs = n_fha-bukrs iv_rfha = n_fha-rfha IMPORTING et_trade_id = a_trade_id[] EXCEPTIONS no_trade_id_found = 1 OTHERS = 2.
DEAL_DATA_UNDL_IMPORT CALL FUNCTION 'DEAL_DATA_UNDL_IMPORT' IMPORTING U_VTBFHA = A_FHA U_VTBFHAZU = A_FHAZU TABLES * CONDITIONGROUPS = A_GRFINKO U_VTBFINKO = A_FINKO U_VTBFHAPO = A_FHAPO EXCEPTIONS MEMORY_NOT_FOUND = 01.
SWU_OBJECT_PUBLISH CALL FUNCTION 'SWU_OBJECT_PUBLISH' EXPORTING OBJTYPE = C_OBJECT_TYPE OBJKEY = L_OBJECT_KEY EXCEPTIONS OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.