RFKKRF20 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Use this report only for test purposes...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 RFKKRF20 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.
Title: Process Returned Debits File in DTAUS Format
Text Symbol: 004 = Created
Text Symbol: 003 = Retrns lot
Text Symbol: 002 = Error in FKK_REFUSAL_BATCH_APPEND
Text Symbol: 001 = XDFKKRP contains no data
INCLUDE RFKKRF01.
No SAP DATABASE tables are accessed within this REPORT code!
WS_UPLOAD * call function 'WS_UPLOAD' * exporting filename = filename * filetype = f_type * tables * data_tab = rectab * exceptions * file_open_error = 1 * file_read_error = 2 * conversion_error = 3 * invalid_table_width = 4 * invalid_type = 5 * no_batch = 6 * unknown_error = 7.
FKK_REFUSAL_BATCH_APPEND CALL FUNCTION 'FKK_REFUSAL_BATCH_APPEND' TABLES T_FKKRP = XDFKKRP EXCEPTIONS OTHERS = 1.
FKK_REFUSAL_BATCH_CREATE CALL FUNCTION 'FKK_REFUSAL_BATCH_CREATE' CHANGING C_FKKRK = DFKKRK EXCEPTIONS OTHERS = 1.
FKK_GET_APPLICATION CALL FUNCTION 'FKK_GET_APPLICATION' IMPORTING E_APPLK = DFKKRK-APPLK.
FKK_ACCOUNT_DETERMINE CALL FUNCTION 'FKK_ACCOUNT_DETERMINE' EXPORTING I_TFK033D = H_TFK033D IMPORTING E_TFK033D = H_TFK033D EXCEPTIONS ERROR_MESSAGE = 0.
FKK_ACCOUNT_DETERMINE_1051 CALL FUNCTION 'FKK_ACCOUNT_DETERMINE_1051'.
GET_BANK_ACCOUNT CALL FUNCTION 'GET_BANK_ACCOUNT' EXPORTING I_BANKL = BANKL I_BANKN = BANKN IMPORTING E_T012 = T012 E_T012K = T012K EXCEPTIONS BANK_ACCOUNT_NOT_FOUND = 01 BANK_KEY_FALSE = 02 BANK_KEY_NOT_FOUND = 03 MULTIPLE_BANK_ACCOUNT = 04 INPUT_WRONG = 05.
FKK_RLS_CLOSE CALL FUNCTION 'FKK_RLS_CLOSE' EXPORTING I_KEYR1 = DFKKRK-KEYR1 EXCEPTIONS NOT_FOUND = 1 NO_AUTHORIZATION = 2 NOT_VALID = 3 OTHERS = 4.
FKK_REFUSAL_BATCH_CLOSE * CALL FUNCTION 'FKK_REFUSAL_BATCH_CLOSE' * EXPORTING * i_keyr1 = dfkkrk-keyr1 * EXCEPTIONS * OTHERS = 1.
FKK_RLS_POST_LOT CALL FUNCTION 'FKK_RLS_POST_LOT' EXPORTING I_KEYR1 = DFKKRK-KEYR1 EXCEPTIONS OTHERS = 1.
FKK_REFUSAL_BATCH_POST * CALL FUNCTION 'FKK_REFUSAL_BATCH_POST' * EXPORTING * i_keyr1 = dfkkrk-keyr1 * EXCEPTIONS * OTHERS = 1.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.