SAP FKK_INV_CFC_CASE_SELECT Function Module for
FKK_INV_CFC_CASE_SELECT is a standard fkk inv cfc case select 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 inv cfc case select FM, simply by entering the name FKK_INV_CFC_CASE_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKKINV_CFC
Program Name: SAPLFKKINV_CFC
Main Program: SAPLFKKINV_CFC
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_INV_CFC_CASE_SELECT 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_INV_CFC_CASE_SELECT'".
EXPORTING
I_APPLK = "Application Area
* I_MDCAT = "
* I_VTREF_RANGES = "Range Table Type VTREF
* I_SRCDOCCAT_RANGES = "Ranges Table for Document Category for Source Document
* I_SRCDOCNO_RANGES = "Ranges Table for Source Document Number
* I_SRCDOC_TAB = "Table of Source Documents to Be Invoiced
* I_NOT_CLARIFIED = ' ' "
* I_WHERE_TAB = "Table Type for WHERE Clause
* I_INVDOCNO = "
* I_INVDOCNO_RANGES = "
* I_INVCFCNO = "Number of Clarification Case
* I_INVCFCNO_RANGES = "Ranges Table for CFC Case
* I_GPART = "Business Partner Number
* I_GPART_RANGES = "Range Table GPART
* I_VKONT = "Contract Account Number
* I_VKONT_RANGES = "Range Table VKONT
IMPORTING
E_FKKINV_CFC_TAB = "Clarification Cases (Table for type FKKINV_CFC)
IMPORTING Parameters details for FKK_INV_CFC_CASE_SELECT
I_APPLK - Application Area
Data type: APPLK_KKOptional: No
Call by Reference: Yes
I_MDCAT -
Data type: MDCAT_CI_KKOptional: Yes
Call by Reference: Yes
I_VTREF_RANGES - Range Table Type VTREF
Data type: FKK_RT_VTREFOptional: Yes
Call by Reference: Yes
I_SRCDOCCAT_RANGES - Ranges Table for Document Category for Source Document
Data type: FKK_RT_SRCDOCCATOptional: Yes
Call by Reference: Yes
I_SRCDOCNO_RANGES - Ranges Table for Source Document Number
Data type: FKK_RT_SRCDOCNOOptional: Yes
Call by Reference: Yes
I_SRCDOC_TAB - Table of Source Documents to Be Invoiced
Data type: FKKINV_SRCDOC_TABOptional: Yes
Call by Reference: Yes
I_NOT_CLARIFIED -
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_WHERE_TAB - Table Type for WHERE Clause
Data type: FKK_MAD_TWHERELOptional: Yes
Call by Reference: Yes
I_INVDOCNO -
Data type: INVDOCNO_KKOptional: Yes
Call by Reference: Yes
I_INVDOCNO_RANGES -
Data type: FKK_RT_INVDOCNOOptional: Yes
Call by Reference: Yes
I_INVCFCNO - Number of Clarification Case
Data type: INVCFCNO_KKOptional: Yes
Call by Reference: Yes
I_INVCFCNO_RANGES - Ranges Table for CFC Case
Data type: FKK_RT_INVCFCNOOptional: Yes
Call by Reference: Yes
I_GPART - Business Partner Number
Data type: GPART_KKOptional: Yes
Call by Reference: Yes
I_GPART_RANGES - Range Table GPART
Data type: FKK_RT_GPARTOptional: Yes
Call by Reference: Yes
I_VKONT - Contract Account Number
Data type: VKONT_KKOptional: Yes
Call by Reference: Yes
I_VKONT_RANGES - Range Table VKONT
Data type: FKK_RT_VKONTOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FKK_INV_CFC_CASE_SELECT
E_FKKINV_CFC_TAB - Clarification Cases (Table for type FKKINV_CFC)
Data type: FKKINV_CFC_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FKK_INV_CFC_CASE_SELECT 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: | ||||
| lv_i_applk | TYPE APPLK_KK, " | |||
| lv_e_fkkinv_cfc_tab | TYPE FKKINV_CFC_TAB, " | |||
| lv_i_mdcat | TYPE MDCAT_CI_KK, " | |||
| lv_i_vtref_ranges | TYPE FKK_RT_VTREF, " | |||
| lv_i_srcdoccat_ranges | TYPE FKK_RT_SRCDOCCAT, " | |||
| lv_i_srcdocno_ranges | TYPE FKK_RT_SRCDOCNO, " | |||
| lv_i_srcdoc_tab | TYPE FKKINV_SRCDOC_TAB, " | |||
| lv_i_not_clarified | TYPE XFELD, " SPACE | |||
| lv_i_where_tab | TYPE FKK_MAD_TWHEREL, " | |||
| lv_i_invdocno | TYPE INVDOCNO_KK, " | |||
| lv_i_invdocno_ranges | TYPE FKK_RT_INVDOCNO, " | |||
| lv_i_invcfcno | TYPE INVCFCNO_KK, " | |||
| lv_i_invcfcno_ranges | TYPE FKK_RT_INVCFCNO, " | |||
| lv_i_gpart | TYPE GPART_KK, " | |||
| lv_i_gpart_ranges | TYPE FKK_RT_GPART, " | |||
| lv_i_vkont | TYPE VKONT_KK, " | |||
| lv_i_vkont_ranges | TYPE FKK_RT_VKONT. " |
|   CALL FUNCTION 'FKK_INV_CFC_CASE_SELECT' " |
| EXPORTING | ||
| I_APPLK | = lv_i_applk | |
| I_MDCAT | = lv_i_mdcat | |
| I_VTREF_RANGES | = lv_i_vtref_ranges | |
| I_SRCDOCCAT_RANGES | = lv_i_srcdoccat_ranges | |
| I_SRCDOCNO_RANGES | = lv_i_srcdocno_ranges | |
| I_SRCDOC_TAB | = lv_i_srcdoc_tab | |
| I_NOT_CLARIFIED | = lv_i_not_clarified | |
| I_WHERE_TAB | = lv_i_where_tab | |
| I_INVDOCNO | = lv_i_invdocno | |
| I_INVDOCNO_RANGES | = lv_i_invdocno_ranges | |
| I_INVCFCNO | = lv_i_invcfcno | |
| I_INVCFCNO_RANGES | = lv_i_invcfcno_ranges | |
| I_GPART | = lv_i_gpart | |
| I_GPART_RANGES | = lv_i_gpart_ranges | |
| I_VKONT | = lv_i_vkont | |
| I_VKONT_RANGES | = lv_i_vkont_ranges | |
| IMPORTING | ||
| E_FKKINV_CFC_TAB | = lv_e_fkkinv_cfc_tab | |
| . " FKK_INV_CFC_CASE_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM FKK_INV_CFC_CASE_SELECT
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_not_clarified) | = ' '. | |||
Search for further information about these or an SAP related objects