BFBANK_S is a standard Executable ABAP Report 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 BFBANK_S 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.
Selection Text: SWIFT = D SWIFT Code
Selection Text: STRAS = D Street
Selection Text: ORT01 = D Location
Selection Text: LIMIT = Maximum Number of Hits
Selection Text: BRNCH = D Branch Office
Selection Text: BNKLZ = D Bank Number
Selection Text: BANKS = D Bank Country
Selection Text: BANKL = D Bank Key
Selection Text: BANKA = D Bank Name
Title: Find report for bank
Text Symbol: 013 = Selection restricted to &1 hits
Text Symbol: 012 = Hits
Text Symbol: 011 = Bank Data
Text Symbol: 010 = Find Bank
Text Symbol: 009 = Maximum Number of Hits
Text Symbol: 008 = Branch
Text Symbol: 007 = Loc
Text Symbol: 006 = Street
Text Symbol: 005 = Bank Name
Text Symbol: 004 = SWIFT Code
Text Symbol: 003 = Bank Number
Text Symbol: 002 = Bank Key
Text Symbol: 001 = Bnk Ctry
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
WEB_BANK_SEARCH CALL FUNCTION 'WEB_BANK_SEARCH' EXPORTING i_bank_ctry = banks i_bank_key = bankl i_bank_name = banka i_street = stras i_city = ort01 i_bank_branch = brnch i_bank_no = bnklz i_swift_code = swift TABLES t_banks = t_banks.
WEB_BANK_SHORT_OUTLEN CALL FUNCTION 'WEB_BANK_SHORT_OUTLEN' EXPORTING i_banka = t_out_banks-banka i_stras = t_out_banks-stras i_ort01 = t_out_banks-ort01 i_brnch = t_out_banks-brnch IMPORTING e_banka_s = t_out_banks-banka e_stras_s = t_out_banks-stras e_ort01_s = t_out_banks-ort01 e_brnch_s = t_out_banks-brnch.
REUSE_MINIALV_LIST_DISPLAY CALL FUNCTION 'REUSE_MINIALV_LIST_DISPLAY' EXPORTING * I_INTERFACE_CHECK = i_callback_program = prog * i_structure_name = g_tabname_item i_list_title = title is_layout = gt_layout * IS_LAYOUT2 = 'X' it_fieldcat = gt_fieldcat[] * IT_SORT = * I_DEFAULT = 'X' i_save = g_save * IS_VARIANT = TABLES t_outtab = t_out_banks * IT_FIELDCAT_HLINK = * IT_HLINKS = EXCEPTIONS program_error = 1 OTHERS = 2.
REUSE_ALV_FIELDCATALOG_MERGE CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = prog i_internal_tabname = g_tabname_item i_inclname = prog CHANGING ct_fieldcat = gt_fieldcat[].
REUSE_ALV_VARIANT_DEFAULT_GET CALL FUNCTION 'REUSE_ALV_VARIANT_DEFAULT_GET' EXPORTING i_save = g_save CHANGING cs_variant = gx_variant EXCEPTIONS not_found = 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.