RFKCVSPAY01 is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). It is used for The report displays the following data in a log: o Reconcilation key opened o Number of incorrect documents o Number of documents posted and the document numbers created The report transfers the data from an application server file...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 RFKCVSPAY01 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: Include RFKCVSPAY01
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
FKK_GET_APPLICATION CALL FUNCTION 'FKK_GET_APPLICATION' IMPORTING e_applk = applk.
FKK_FIKEY_CHECK CALL FUNCTION 'FKK_FIKEY_CHECK' EXPORTING i_fikey = rec_key i_resob = '021' EXCEPTIONS non_existing = 1 OTHERS = 2.
FKK_FIKEY_OPEN CALL FUNCTION 'FKK_FIKEY_OPEN' EXPORTING i_fikey = rec_key i_resob = '021'.
FKK_DB_DFKKCVS_UPDATE CALL FUNCTION 'FKK_DB_DFKKCVS_UPDATE' EXPORTING i_dfkkcvs_upd = wa_dfkkcvs_real.
CFC_PROCESS_EVENT_CF_FILL CALL FUNCTION 'CFC_PROCESS_EVENT_CF_FILL' EXPORTING i_objap = 'CVS' i_application_item = dfkkcfcvs_exc.
FKK_GET_APPLICATION CALL FUNCTION 'FKK_GET_APPLICATION' EXPORTING i_no_dialog = 'X' IMPORTING e_applk = ld_applk EXCEPTIONS OTHERS = 1.
FKK_FUNC_MODULE_DETERMINE CALL FUNCTION 'FKK_FUNC_MODULE_DETERMINE' EXPORTING i_applk = ld_applk i_fbeve = '1113' TABLES t_fbstab = l_fbstab.
FKK_SAMPLE_1113 CALL FUNCTION 'FKK_SAMPLE_1113'.
FKK_FIKEY_CLOSE CALL FUNCTION 'FKK_FIKEY_CLOSE' EXPORTING i_fikey = rec_key i_delete_if_unused = 'X'.
FKK_GET_FORMERLY_CLEARED_ITEMS CALL FUNCTION 'FKK_GET_FORMERLY_CLEARED_ITEMS' EXPORTING i_augbl = wa_dfkkcvs-opbel TABLES t_fkkop = t_post_ag EXCEPTIONS OTHERS = 0.
FKK_CALCULATE_PAYMENT_AMOUNT * CALL FUNCTION 'FKK_CALCULATE_PAYMENT_AMOUNT' * EXPORTING * i_opbel = real_record-opbel * IMPORTING * e_nebtr = pay_amount.
ENQUEUE_EFKKCVS CALL FUNCTION 'ENQUEUE_EFKKCVS' EXPORTING nrzas = dfkkcvs_real-nrzas paynr = dfkkcvs_real-paynr x_nrzas = 'X' x_paynr = 'X' EXCEPTIONS foreign_lock = 1 system_failure = 2 OTHERS = 3.
DEQUEUE_EFKKCVS CALL FUNCTION 'DEQUEUE_EFKKCVS' EXPORTING nrzas = enqtab-nrzas paynr = enqtab-paynr.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.