RFBKABL0 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for You can use program RFBKABL0 to display changes to bank master data for all banks...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RFBKABL0 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: BANKL = Bank Key
Selection Text: BANKS = Bank Country
Selection Text: DATUM = Changed On
Selection Text: GRUPP = Field Group
Selection Text: SORT = Sorting
Selection Text: UNAME = Changed By
Title: Display of Bank Changes
Text Symbol: 001 = Sort by Date
Text Symbol: 002 = Sort by Bank
Text Symbol: 003 = Sort by Name of Change User
Text Symbol: 004 = Date of Change:
Text Symbol: 005 = Bank Country
Text Symbol: 006 = Changed By
Text Symbol: 007 = Bank Key
Text Symbol: B01 = General Selections
Text Symbol: B02 = Output Control
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CHANGEDOCUMENT_READ_HEADERS CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS' EXPORTING objectclass = 'BANK' objectid = objectid username = username date_of_change = datum-low date_until = datum-high TABLES i_cdhdr = icdhdr_help EXCEPTIONS no_position_found = 1 OTHERS = 2.
CHANGEDOCUMENT_READ_HEADERS CALL FUNCTION 'CHANGEDOCUMENT_READ_HEADERS' exporting objectclass = 'BANK' objectid = objectid username = username date_of_change = datum-low date_until = datum-high tables i_cdhdr = icdhdr exceptions no_position_found = 1 others = 2.
CHANGEDOCUMENT_READ_POSITIONS call function 'CHANGEDOCUMENT_READ_POSITIONS' exporting changenumber = icdhdr-changenr importing header = cdhdr tables editpos = helpcdpos exceptions no_position_found = 1 others = 2.
REUSE_ALV_HIERSEQ_LIST_DISPLAY call function 'REUSE_ALV_HIERSEQ_LIST_DISPLAY' exporting i_callback_program = prog is_layout = alv_layout it_fieldcat = alv_fieldcat it_sort = alv_sort it_events = alv_events i_tabname_header = 'OUTTAB1' i_tabname_item = 'OUTTAB2' i_structure_name_item = 'BANK_CHANGES' is_keyinfo = alv_keyinfo tables t_outtab_header = outtab1 t_outtab_item = outtab2 exceptions program_error = 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.