MF02BI00 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 MF02BI00 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!
SEARCH_BANK_ADDRESS CALL FUNCTION 'SEARCH_BANK_ADDRESS' EXPORTING i_banks = bnka-banks IMPORTING e_bnka = *bnka.
GET_TEMP_NUMBER_BANK_ADDRESS CALL FUNCTION 'GET_TEMP_NUMBER_BANK_ADDRESS' IMPORTING tmp_number = temp_number.
CHECK_BEGIN_BANK_ADDRESS CALL FUNCTION 'CHECK_BEGIN_BANK_ADDRESS' EXPORTING bank_country = bnka-banks bank_number = bnka-bankl EXCEPTIONS not_valid = 1.
READ_BANK_ADDRESS CALL FUNCTION 'READ_BANK_ADDRESS' EXPORTING bank_country = bnka-banks bank_number = bnka-bankl IMPORTING bnka_wa = bnka EXCEPTIONS not_found = 4.
INIT_BANK_ADDRESS CALL FUNCTION 'INIT_BANK_ADDRESS'.
READ_CUSTOMIZED_MESSAGE CALL FUNCTION 'READ_CUSTOMIZED_MESSAGE' EXPORTING i_arbgb = 'BF00' i_dtype = 'S' i_msgnr = '210' IMPORTING e_msgty = typ_mess.
CHECK_AUTHORITY_BANK CALL FUNCTION 'CHECK_AUTHORITY_BANK' EXPORTING i_activity = l_actvt i_banks = bnka-banks EXCEPTIONS not_authorized = 1 OTHERS = 2.
DATA_TRANSFER_BANK_ADDRESS CALL FUNCTION 'DATA_TRANSFER_BANK_ADDRESS' EXPORTING bnka_new = bnka bnka_old = *bnka.
BANK_NUMBER_CHECK CALL FUNCTION 'BANK_NUMBER_CHECK' EXPORTING bank_country = bnka-banks bank_number = bnka-bankl.
POSTAL_GIRO_ACCOUNT_CHECK CALL FUNCTION 'POSTAL_GIRO_ACCOUNT_CHECK' EXPORTING bank_country = bnka-banks postal_giro_account = bankn.
BANK_BLZ_CHECK CALL FUNCTION 'BANK_BLZ_CHECK' EXPORTING bank_country = bnka-banks bank_number = bnka-bnklz.
BANK_BLZ_CHECK CALL FUNCTION 'BANK_BLZ_CHECK' EXPORTING bank_country = bnka-banks bank_number = bnka-bnklz.
POSTAL_GIRO_ACCOUNT_CHECK CALL FUNCTION 'POSTAL_GIRO_ACCOUNT_CHECK' EXPORTING bank_country = bnka-banks postal_giro_account = bankn.
SWIFT_CODE_CHECK CALL FUNCTION 'SWIFT_CODE_CHECK' EXPORTING bank_country = bnka-banks swift_code = bnka-swift.
DATA_TRANSFER_BANK_ADDRESS CALL FUNCTION 'DATA_TRANSFER_BANK_ADDRESS' EXPORTING bnka_new = bnka bnka_old = *bnka address_ad = addr-update.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.