MF05AI00_BSED_BANK 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 MF05AI00_BSED_BANK 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!
READ_BANK_ADDRESS CALL FUNCTION 'READ_BANK_ADDRESS' EXPORTING bank_country = bnka_tr_s-banks bank_number = bsed-bank.
READ_BANK_ADDRESS CALL FUNCTION 'READ_BANK_ADDRESS' EXPORTING bank_country = tmp_tr_bnk bank_number = bsed-bank.
READ_BANK_ADDRESS CALL FUNCTION 'READ_BANK_ADDRESS' EXPORTING bank_country = t001-land1 bank_number = bsed-bank.
INPUT_IBAN_DIAL CALL FUNCTION 'INPUT_IBAN_DIAL' EXPORTING i_mode = ' ' i_tabname = 'BKPF' i_tabkey = l_tabkey i_accno_handling = '3' IMPORTING e_banks = iban05a-banks e_bankl = iban05a-bankl e_bankn = l_bankn e_iban = iban05a-iban EXCEPTIONS no_conversion = 1 action_cancelled = 2 OTHERS = 3.
INPUT_IBAN_DIAL CALL FUNCTION 'INPUT_IBAN_DIAL' EXPORTING i_mode = ' ' i_tabname = 'BKPF' i_tabkey = l_tabkey IMPORTING e_banks = iban05a-banks e_bankl = iban05a-bankl e_bankn = l_bankn e_iban = iban05a-iban EXCEPTIONS no_conversion = 1 action_cancelled = 2 OTHERS = 3.
READ_BANK_ADDRESS CALL FUNCTION 'READ_BANK_ADDRESS' EXPORTING bank_country = iban05a-banks bank_number = iban05a-bankl IMPORTING bnka_wa = bnktab EXCEPTIONS not_found = 1 OTHERS = 2.
MAINTAIN_IBAN_DIAL CALL FUNCTION 'MAINTAIN_IBAN_DIAL' EXPORTING i_mode = 'A' i_banks = t001-land1 i_bankl = bsed-bank i_bankn = bsed-accou i_bkont = ' ' IMPORTING e_iban = iban05a-iban EXCEPTIONS action_cancelled = 1 bank_not_found = 2 iban_not_found = 3 OTHERS = 4.
DELETE_FROM_MEMORY CALL FUNCTION 'DELETE_FROM_MEMORY' EXPORTING i_banks = iban05a-banks i_bankl = iban05a-bankl i_bankn = l_bankn i_bkont = ' ' EXCEPTIONS iban_not_found = 1 OTHERS = 2.
READ_IBAN CALL FUNCTION 'READ_IBAN' EXPORTING i_banks = t001-land1 i_bankl = bsed-bank i_bankn = bsed-accou i_bkont = ' ' IMPORTING e_iban = iban05a-iban EXCEPTIONS iban_not_found = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.