RFKKCRCL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Clarification Processing of Cashed Checks If there are discrepancies between the issue data and the encashment data when the bank reports cashed checks, a clarification case is created and you can use this report to process the case...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 RFKKCRCL into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FP53 - Clarif.Process. of Cashed Checks
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: SO_UNAME = D User Name
Selection Text: SO_HKTID = D Account ID
Selection Text: SO_HBKID = D House Bank
Selection Text: SO_ERDAT = D Created On
Selection Text: SO_CHCKN = D Check Number
Selection Text: SO_BUKRS = D Company Code
Selection Text: SO_AUGRD = D Exception Reason
Selection Text: P_ALL_IT = Also Clarified Items
Title: Clarification Processing of Cashed Checks
Text Symbol: 009 = Has Status
Text Symbol: 008 = Does Not Exist in Check Register
Text Symbol: 007 = Check
Text Symbol: 006 = Do you really want to set case to completed?
Text Symbol: 005 = Case Clarified
Text Symbol: 004 = Do you really want to cancel processing?
Text Symbol: 003 = Data Will Be Lost
Text Symbol: 002 = Cancel Processing
Text Symbol: 001 = Selections
INCLUDE RFKKCRCL_LCL_APPL.
No SAP DATABASE tables are accessed within this REPORT code!
DD_DD07V_GET call function 'DD_DD07V_GET' exporting domain_name = 'AUGRD_CR_KK' tables dd07v_tab = lt_dd07v exceptions others = 1.
ICON_CREATE call function 'ICON_CREATE' exporting name = 'ICON_ACTIVATE' info = l_icontext importing result = c_statusicon exceptions others = 0.
ICON_CREATE call function 'ICON_CREATE' exporting name = 'ICON_DEACTIVATE' info = l_icontext importing result = c_statusicon exceptions others = 0.
ICON_CREATE call function 'ICON_CREATE' exporting name = 'ICON_GREATER' info = l_icontext importing result = c_statusicon exceptions others = 0.
ICON_CREATE call function 'ICON_CREATE' exporting name = 'ICON_LESS' info = l_icontext importing result = c_statusicon exceptions others = 0.
ICON_CREATE call function 'ICON_CREATE' exporting name = 'ICON_NOT_EQUAL' info = l_icontext importing result = c_statusicon exceptions others = 0.
ICON_CREATE call function 'ICON_CREATE' exporting name = 'ICON_TIME' info = l_icontext importing result = c_statusicon exceptions others = 0.
POPUP_TO_CONFIRM_STEP call function 'POPUP_TO_CONFIRM_STEP' exporting textline1 = text-003 textline2 = text-004 titel = text-002 importing answer = c_answer.
FKK_CR_CHECK_GET_INFO call function 'FKK_CR_CHECK_GET_INFO' exporting ix_use_key = 'X' i_check_key = l_fkkcrkey importing e_state = e_state exceptions no_entry = 1 others = 2.
DD_DD07V_GET call function 'DD_DD07V_GET' exporting domain_name = 'CHKSTATE' tables dd07v_tab = t_dd07v exceptions others = 1.
FKK_CR_CHECK_GET_OWNER_INFO call function 'FKK_CR_CHECK_GET_OWNER_INFO' exporting i_bukrs = dfkkcrcl-org1r(4) i_hbkid = dfkkcrcl-hbkid i_hktid = dfkkcrcl-hktid i_ztnum = dfkkcrcl-ztnum ix_info_popup = 'X' exceptions no_entry = 1 missing_params = 2 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.
RFKKCRCL - Clarification Processing of Cashed Checks RFKKCRCL - Clarification Processing of Cashed Checks RFKKCRCASH_CHECK - Clarification of Cashed Checks: Transfer Encashment Data to Clar.Table RFKKCRCASH_CHECK - Clarification of Cashed Checks: Transfer Encashment Data to Clar.Table RFKKCRA3 - Check Deposit Archiving - Reload Program RFKKCRA3 - Check Deposit Archiving - Reload Program