MF64MF10 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 MF64MF10 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 MF64MF10
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FWBD_SEC_ACCOUNT_POSITION_READ * CALL FUNCTION 'FWBD_SEC_ACCOUNT_POSITION_READ' * EXPORTING * i_bukrs = bukrs * i_ranl = ranl * i_rldepo = rldepo * i_longshortkz = longshortkz * IMPORTING * e_vwpbdep = wa_vwpbdep * EXCEPTIONS * i_bukrs_is_initial = 1 * i_ranl_is_initial = 2 * i_rldepo_is_initial = 3 * entry_not_found = 4 * others = 5.
COMPANY_CODE_READ_SEC CALL FUNCTION 'COMPANY_CODE_READ_SEC' EXPORTING I_BUKRS = BUKRS IMPORTING E_T001 = E_T001 * e_tzbz = EXCEPTIONS T001_ENTRY_NOT_FOUND = 1 TZBZ_ENTRY_NOT_FOUND = 2 I_BUKRS_INITIAL = 3 OTHERS = 4.
MASTER_DATA_READ_SEC CALL FUNCTION 'MASTER_DATA_READ_SEC' EXPORTING I_RANL = RANL IMPORTING E_VWPANLA = E_VWPANLA EXCEPTIONS ENTRY_NOT_FOUND = 1 I_RANL_INITIAL = 2 OTHERS = 3.
SECURITIES_ACCOUNT_READ_SEC CALL FUNCTION 'SECURITIES_ACCOUNT_READ_SEC' EXPORTING I_BUKRS = BUKRS I_RLDEPO = RLDEPO IMPORTING E_TWD01 = E_TWD01 EXCEPTIONS ENTRY_NOT_FOUND = 1 I_BUKRS_INITIAL = 2 I_RLDEPO_INITIAL = 3 OTHERS = 4.
ENQUEUE_EFWBEST CALL FUNCTION 'ENQUEUE_EFWBEST' EXPORTING * MODE_VWPBUKR = 'E' * MANDT = SY-MANDT BUKRS = FM_BUKRS RANL = FM_RANL * X_BUKRS = ' ' * X_RANL = ' ' * _SCOPE = '2' * _WAIT = ' ' * _COLLECT = ' ' EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.