SAP Reports / Programs

RFKKCRCL SAP ABAP Report - Clarification Processing of Cashed Checks







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


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

FP53 - Clarif.Process. of Cashed Checks


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RFKKCRCL. "Basic submit
SUBMIT RFKKCRCL AND RETURN. "Return to original report after report execution complete
SUBMIT RFKKCRCL VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT RFKKCRCL

INCLUDE RFKKCRCL_LCL_APPL.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RFKKCRCL or its description.