MF64BF10 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 MF64BF10 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.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SECURITIES_ACCOUNT_READ_SEC CALL FUNCTION 'SECURITIES_ACCOUNT_READ_SEC' EXPORTING I_BUKRS = VWPDEPO-BUKRS I_RLDEPO = VWPDEPO-RLDEPO IMPORTING E_TWD01 = TWD01 EXCEPTIONS ENTRY_NOT_FOUND = 1 I_BUKRS_INITIAL = 2 I_RLDEPO_INITIAL = 3 OTHERS = 4.
POSITION_INDICATOR_COMPC_READ CALL FUNCTION 'POSITION_INDICATOR_COMPC_READ' EXPORTING I_BUKRS = VWPBUKR-BUKRS I_RANL = VWPBUKR-RANL IMPORTING E_VWPBUKR = H_VWPBUKR EXCEPTIONS ENTRY_NOT_FOUND = 1 I_BUKRS_INITIAL = 2 I_RANL_INITIAL = 3 OTHERS = 4.
POSITION_INDICATOR_SECACC_READ CALL FUNCTION 'POSITION_INDICATOR_SECACC_READ' EXPORTING I_BUKRS = VWPBUKR-BUKRS I_RANL = VWPBUKR-RANL I_RLDEPO = VWPDEPO-RLDEPO IMPORTING E_VWPDEPO = H_VWPDEPO EXCEPTIONS I_BUKRS_INITIAL = 1 I_RANL_INITIAL = 2 I_RLDEPO_INITIAL = 3 ENTRY_NOT_FOUND = 4 OTHERS = 5.
RS_TREE_GET_NODE_BY_NAME CALL FUNCTION 'RS_TREE_GET_NODE_BY_NAME' EXPORTING NODE_NAME = '000' IMPORTING NODE_INFO = NODE_INFO EXCEPTIONS NAME_NOT_FOUND = 1.
RS_TREE_GET_NODE_BY_NAME CALL FUNCTION 'RS_TREE_GET_NODE_BY_NAME' EXPORTING NODE_NAME = U_NEW_GROUP_NAME IMPORTING NODE_INFO = NODE_INFO.
EVALUATION_PARA_DETERMINE CALL FUNCTION 'EVALUATION_PARA_DETERMINE' EXPORTING BUKRS = U_BUKRS RANL = U_RANL * REVALUATION_RANGE = '01' RLDEPO = U_RLDEPO * X_EBENE = 'D' BYPASSING_BUFFER = 'X' IMPORTING * REVALUATION_AMORTICED_COST = * REVALUATION_CLASS = REVALUATION_GROUP = GROUP * REVALUATION_GROUP_ID = * REVALUATION_PRINCIPLE = * REVALUATION_TYPE = * EXCEPTIONS * TZRR1_NOT_FOUND = 1 * TZRCL_NOT_FOUND = 2 * OTHERS = 3 .
RS_TREE_GET_NODE_BY_NAME CALL FUNCTION 'RS_TREE_GET_NODE_BY_NAME' EXPORTING NODE_NAME = NAME IMPORTING NODE_INFO = NODE_INFO EXCEPTIONS NAME_NOT_FOUND = 1.
RS_TREE_GET_NODE_BY_NAME CALL FUNCTION 'RS_TREE_GET_NODE_BY_NAME' EXPORTING NODE_NAME = U_NEW_GROUP_NAME IMPORTING NODE_INFO = NODE_INFO.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.