RFEBKAT4 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Program for testing IDoc settings for the bank statement and for lockbox data...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 RFEBKAT4 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: MESTYP = Message type
Selection Text: P_KUKEY = Bank statement short ID
Selection Text: SNDPORT = Sender port
Selection Text: SNDPRTN = Sender partner number
Title: Test Program: IDocs are created from the bank data store
Text Symbol: 001 = IDocs created for bank statements
Text Symbol: 002 = IDocs created for credit memo/debit displays
Text Symbol: 003 = Test bank
Text Symbol: 004 = Test site
Text Symbol: 005 = Test co.
INCLUDE: RFEBKATC, RFEBKATM. "HW661400
INCLUDE: RFEBKATC, RFEBKATM. "HW661400
No SAP DATABASE tables are accessed within this REPORT code!
IDOC_INBOUND_WRITE_TO_DB CALL FUNCTION 'IDOC_INBOUND_WRITE_TO_DB' EXPORTING PI_STATUS_MESSAGE = I_EDI_DS IMPORTING PE_IDOC_NUMBER = DOCNUM PE_STATE_OF_PROCESSING = STPROC PE_INBOUND_PROCESS_DATA = I_TEDE2 TABLES T_DATA_RECORDS = I_EDI_DD CHANGING PC_CONTROL_RECORD = EDI_DC EXCEPTIONS IDOC_NOT_SAVED = 1 OTHERS = 2.
IDOC_INBOUND_WRITE_TO_DB CALL FUNCTION 'IDOC_INBOUND_WRITE_TO_DB' EXPORTING PI_STATUS_MESSAGE = I_EDI_DS IMPORTING PE_IDOC_NUMBER = DOCNUM PE_STATE_OF_PROCESSING = STPROC PE_INBOUND_PROCESS_DATA = I_TEDE2 TABLES T_DATA_RECORDS = I_EDI_DD CHANGING PC_CONTROL_RECORD = EDI_DC EXCEPTIONS IDOC_NOT_SAVED = 1 OTHERS = 2.
GET_BANKCODE CALL FUNCTION 'GET_BANKCODE' EXPORTING I_BANKS = BANKS I_BANKL = BANKL IMPORTING E_BKCODE = BKCODE EXCEPTIONS OTHERS = 3.
GET_BANKCODE CALL FUNCTION 'GET_BANKCODE' EXPORTING I_BANKS = BANKS I_BANKL = BANKL IMPORTING E_BKCODE = BKCODE EXCEPTIONS OTHERS = 3.
GET_BANKCODE CALL FUNCTION 'GET_BANKCODE' EXPORTING I_BANKS = BANKS I_BANKL = BANKL IMPORTING E_BKCODE = BKCODE EXCEPTIONS OTHERS = 3.
GET_BANKCODE CALL FUNCTION 'GET_BANKCODE' EXPORTING I_BANKS = BANKS I_BANKL = BANKL IMPORTING E_BKCODE = BKCODE EXCEPTIONS OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.