SAP FKK_CR_CHECK_READ_DEFER_VOID Function Module for
FKK_CR_CHECK_READ_DEFER_VOID is a standard fkk cr check read defer void SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for fkk cr check read defer void FM, simply by entering the name FKK_CR_CHECK_READ_DEFER_VOID into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKCHKREP
Program Name: SAPLFKCHKREP
Main Program: SAPLFKCHKREP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_CR_CHECK_READ_DEFER_VOID pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'FKK_CR_CHECK_READ_DEFER_VOID'".
EXPORTING
* I_DELAY_H = 24 "
* I_REPORT_DATE = "Report Date with Voided Check
* I_REPORT_TIME = "Report Time for Check Voiding
* I_BUKRS = "Company Code
* I_HBKID = "Short Key for a House Bank
* I_HKTID = "ID for Account Details
TABLES
ET_CHECKS = "Repository For Checks
* IT_VOIDRS = "Ranges Structure for Check Voiding Reasons (FI-CA)
EXCEPTIONS
WRONG_CALL = 1 NO_ENTRY_FOUND = 2
IMPORTING Parameters details for FKK_CR_CHECK_READ_DEFER_VOID
I_DELAY_H -
Data type: NUMC2Default: 24
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_REPORT_DATE - Report Date with Voided Check
Data type: FKKCR-VOIDRDOptional: Yes
Call by Reference: No ( called with pass by value option)
I_REPORT_TIME - Report Time for Check Voiding
Data type: FKKCR-VOIDRTOptional: Yes
Call by Reference: No ( called with pass by value option)
I_BUKRS - Company Code
Data type: FKKCR-BBUKROptional: Yes
Call by Reference: No ( called with pass by value option)
I_HBKID - Short Key for a House Bank
Data type: FKKCR-HBKIDOptional: Yes
Call by Reference: No ( called with pass by value option)
I_HKTID - ID for Account Details
Data type: FKKCR-HKTIDOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FKK_CR_CHECK_READ_DEFER_VOID
ET_CHECKS - Repository For Checks
Data type: FKKCROptional: No
Call by Reference: Yes
IT_VOIDRS - Ranges Structure for Check Voiding Reasons (FI-CA)
Data type: FKKR_VOIDRSOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
WRONG_CALL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_ENTRY_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FKK_CR_CHECK_READ_DEFER_VOID Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_et_checks | TYPE STANDARD TABLE OF FKKCR, " | |||
| lv_i_delay_h | TYPE NUMC2, " 24 | |||
| lv_wrong_call | TYPE NUMC2, " | |||
| lt_it_voidrs | TYPE STANDARD TABLE OF FKKR_VOIDRS, " | |||
| lv_i_report_date | TYPE FKKCR-VOIDRD, " | |||
| lv_no_entry_found | TYPE FKKCR, " | |||
| lv_i_report_time | TYPE FKKCR-VOIDRT, " | |||
| lv_i_bukrs | TYPE FKKCR-BBUKR, " | |||
| lv_i_hbkid | TYPE FKKCR-HBKID, " | |||
| lv_i_hktid | TYPE FKKCR-HKTID. " |
|   CALL FUNCTION 'FKK_CR_CHECK_READ_DEFER_VOID' " |
| EXPORTING | ||
| I_DELAY_H | = lv_i_delay_h | |
| I_REPORT_DATE | = lv_i_report_date | |
| I_REPORT_TIME | = lv_i_report_time | |
| I_BUKRS | = lv_i_bukrs | |
| I_HBKID | = lv_i_hbkid | |
| I_HKTID | = lv_i_hktid | |
| TABLES | ||
| ET_CHECKS | = lt_et_checks | |
| IT_VOIDRS | = lt_it_voidrs | |
| EXCEPTIONS | ||
| WRONG_CALL = 1 | ||
| NO_ENTRY_FOUND = 2 | ||
| . " FKK_CR_CHECK_READ_DEFER_VOID | ||
ABAP code using 7.40 inline data declarations to call FM FKK_CR_CHECK_READ_DEFER_VOID
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_i_delay_h) | = 24. | |||
| "SELECT single VOIDRD FROM FKKCR INTO @DATA(ld_i_report_date). | ||||
| "SELECT single VOIDRT FROM FKKCR INTO @DATA(ld_i_report_time). | ||||
| "SELECT single BBUKR FROM FKKCR INTO @DATA(ld_i_bukrs). | ||||
| "SELECT single HBKID FROM FKKCR INTO @DATA(ld_i_hbkid). | ||||
| "SELECT single HKTID FROM FKKCR INTO @DATA(ld_i_hktid). | ||||
Search for further information about these or an SAP related objects