MF64PF10 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 MF64PF10 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: Data backup and band width
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
GET_PRICE_TYP_AUTH_FLG CALL FUNCTION 'GET_PRICE_TYP_AUTH_FLG' IMPORTING ex_price_typ_auth = lv_flg_auth_prictyp.
READ_CUSTOMIZED_MESSAGE CALL FUNCTION 'READ_CUSTOMIZED_MESSAGE' EXPORTING i_arbgb = 'FTR0' i_dtype = 'W' i_msgnr = '036' IMPORTING e_msgty = l_wa_msgty.
CHANGEDOCUMENT_PREPARE_TABLES CALL FUNCTION 'CHANGEDOCUMENT_PREPARE_TABLES' EXPORTING CHECK_INDICATOR = SPACE TABLENAME = 'ATRAS' TABLES TABLE_NEW = XT_ATRAS TABLE_OLD = XT_ATRAS_OLD EXCEPTIONS NAMETAB_ERROR = 01.
TRANSACTIONS_ATRAS_UPDATE CALL FUNCTION 'TRANSACTIONS_ATRAS_UPDATE' IN UPDATE TASK TABLES VTAB = XT_ATRAS DTAB = XT_ATRAS_OLD.
FIMA_DAYS_BETWEEN_TWO_DATES CALL FUNCTION 'FIMA_DAYS_BETWEEN_TWO_DATES' EXPORTING I_DATUM_VON = WA_ATRAS-DKURS I_DATUM_BIS = I_DATUM IMPORTING E_TAGE = TAGE.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.