MF02ABNK 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 MF02ABNK 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: ZEIT = Time Changed
Selection Text: USNAM = Changed By
Selection Text: FNAME = Field Name
Selection Text: DATUM = From Change Date
Selection Text: BANKS = Bank Country
Selection Text: BANKL = Bank Key
Title: Bank Master Record Changes
Text Symbol: T05 = Chg. Document
Text Symbol: T04 = Overview
Text Symbol: T01 = Changed Fields
Text Symbol: 210 = Date Field New Old
Text Symbol: 204 = Fld
Text Symbol: 203 = User
Text Symbol: 202 = Time
Text Symbol: 201 = Date
Text Symbol: 110 = Details
Text Symbol: 109 = Chg. Document
Text Symbol: 107 = Changed In
Text Symbol: 106 = << Text missing >>
Text Symbol: 105 = Changed in $1 $2 $3 $4
Text Symbol: 104 = Changed To
Text Symbol: 103 = Changed By
Text Symbol: 008 = Old
Text Symbol: 007 = New
Text Symbol: 005 = Bank Details
Text Symbol: 004 = Bank Acct
Text Symbol: 003 = Bank Key
Text Symbol: 002 = Bnk Ctry
Text Symbol: 001 = Bank Changes
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 = objekt objectid = keylow username = usnam time_of_change = zeit date_of_change = datum TABLES i_cdhdr = icdhdr EXCEPTIONS no_position_found = 1 OTHERS = 2.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = ddif_tabname fieldname = ddif_fieldname TABLES dfies_tab = dfies_tab EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.
CHANGEDOCUMENT_READ_POSITIONS CALL FUNCTION 'CHANGEDOCUMENT_READ_POSITIONS' EXPORTING changenumber = icdhdr-changenr IMPORTING header = cdhdr TABLES editpos = ausg EXCEPTIONS no_position_found = 1 OTHERS = 2.
GET_FIELDTAB CALL FUNCTION 'GET_FIELDTAB' "DD03P-ERROR EXPORTING tabname = t01_tbnam withtext = 'X' TABLES fieldtab = dfies_tab.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.