RFKKCHK04 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Submit Checks This reports notes checks as having been escheated (escheatment date is set) and outputs a list...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 RFKKCHK04 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: ERNAM = Check Created By
Selection Text: ERDAT = Check Created On
Selection Text: DOC1R = Payment Number
Selection Text: CASHRT = Report Time for Cashing Check
Selection Text: CASHRD = Report Date for Cashing Check
Selection Text: CASHR = Redeemability Report
Selection Text: BUKRS = Company Code
Selection Text: BUDAT = Date of Issue
Selection Text: AETIM = Time
Selection Text: AENAM = Changed By
Selection Text: AEDAT = Changed On
Selection Text: ACC1T = Contract Account Category
Selection Text: ACC1R = Ref. Contract Account
Selection Text: ZTNUM = Check Number
Selection Text: STATE = Status
Selection Text: REGION = D Region
Selection Text: P_VOIDRS = D Check Voiding Reason
Selection Text: P_UPD = Select and Assign Checks
Selection Text: P_REP = Create List
Selection Text: P_ESCHDY = Day Checks Assigned
Selection Text: P_ESCHDT = Assignment Date
Selection Text: P_ENQ = Block Check Entries
Selection Text: LAUFI = Run ID
Selection Text: LAUFD = Run Date
Selection Text: HKTID = Account ID
Selection Text: HBKID = House Bank
Selection Text: GPA1R = Business Partner
Selection Text: FAEDN = Check Valid From
Selection Text: ERTIM = Time Check Created
Title: Assign Checks
Text Symbol: 002 = General Data
Text Symbol: 003 = General Selections
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FKK_CR_CHECK_AUTHORITY_CHECK call function 'FKK_CR_CHECK_AUTHORITY_CHECK' EXPORTING i_check_key = lv_fkkcrkey i_activity = '02' EXCEPTIONS wrong_call = 1 no_authorization = 2 others = 3.
ENQUEUE_EFKKCR call function 'ENQUEUE_EFKKCR' EXPORTING mode_dfkkcr = 'E' mandt = sy-mandt herkf = lv_fkkcrkey-herkf org1t = lv_fkkcrkey-org1t org1r = lv_fkkcrkey-org1r hbkid = lv_fkkcrkey-hbkid hktid = lv_fkkcrkey-hktid ztart = lv_fkkcrkey-ztart ztnum = lv_fkkcrkey-ztnum _scope = '2' EXCEPTIONS foreign_lock = 1 system_failure = 2 others = 3.
BUP_PARTNER_GET call function 'BUP_PARTNER_GET' EXPORTING i_partner = lv_bp IMPORTING e_but000_address = lv_bus000ext EXCEPTIONS partner_not_found = 1 wrong_parameters = 2 others = 3.
REUSE_ALV_FIELDCATALOG_MERGE call function 'REUSE_ALV_FIELDCATALOG_MERGE' EXPORTING i_program_name = lv_repid i_internal_tabname = lc_tabname i_structure_name = 'FKKCRESCH2' i_client_never_display = gc_x CHANGING ct_fieldcat = t_fieldcat.
REUSE_ALV_GRID_DISPLAY call function 'REUSE_ALV_GRID_DISPLAY' EXPORTING i_save = 'A' i_callback_program = lv_repid it_fieldcat = t_fieldcat[] TABLES t_outtab = t_fkkcr_out EXCEPTIONS program_error = 1 others = 2.
FKK_GET_APPLICATION call function 'FKK_GET_APPLICATION' IMPORTING e_applk = lv_appl EXCEPTIONS no_appl_selected = 1 others = 2.
FKK_FUNC_MODULE_DETERMINE call function 'FKK_FUNC_MODULE_DETERMINE' EXPORTING i_fbeve = '0244' i_applk = lv_appl TABLES t_fbstab = t_fkfbc EXCEPTIONS others = 1.
FKK_SAMPLE_0244 call function 'FKK_SAMPLE_0244'.
FKK_CR_CHECK_SAVE call function 'FKK_CR_CHECK_SAVE' TABLES t_old_check = t_dfkkcr t_new_chkadd = t_fkkcraddi t_old_chkadd = t_fkkcraddu EXCEPTIONS db_failure = 1 others = 2.
DEQUEUE_ALL call function 'DEQUEUE_ALL'.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.