SAP FKK_COLL_ITEMS_GET Function Module for
FKK_COLL_ITEMS_GET is a standard fkk coll items get 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 coll items get FM, simply by entering the name FKK_COLL_ITEMS_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKA5
Program Name: SAPLFKA5
Main Program: SAPLFKA5
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_COLL_ITEMS_GET 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_COLL_ITEMS_GET'".
EXPORTING
* I_INKGP = "Collection Agency
* I_RT_CPUDT = "Table Type for CPUDT
* I_RT_RVDAT = "
* I_RT_COLLITEM_ID = "Table Type for Range FKKR_COLLITEM_ID
* I_RT_PRCST = "
* I_RT_GPART = "Range Table GPART
IMPORTING
ET_FKKCOLLITEM = "Table Type for Collection Units (FKKCOLLITEM)
ET_FKKCOLLITEM_DISP = "
IMPORTING Parameters details for FKK_COLL_ITEMS_GET
I_INKGP - Collection Agency
Data type: INKGP_KKOptional: Yes
Call by Reference: No ( called with pass by value option)
I_RT_CPUDT - Table Type for CPUDT
Data type: FKK_RT_CPUDTOptional: Yes
Call by Reference: Yes
I_RT_RVDAT -
Data type: FKK_RT_CPUDTOptional: Yes
Call by Reference: Yes
I_RT_COLLITEM_ID - Table Type for Range FKKR_COLLITEM_ID
Data type: FKK_RT_COLLITEM_IDOptional: Yes
Call by Reference: Yes
I_RT_PRCST -
Data type: FKK_RT_PRCSTOptional: Yes
Call by Reference: Yes
I_RT_GPART - Range Table GPART
Data type: FKK_RT_GPARTOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FKK_COLL_ITEMS_GET
ET_FKKCOLLITEM - Table Type for Collection Units (FKKCOLLITEM)
Data type: FKKCOLLITEM_TABOptional: No
Call by Reference: Yes
ET_FKKCOLLITEM_DISP -
Data type: FKKCOLLITEM_DISP_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FKK_COLL_ITEMS_GET 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_inkgp | TYPE INKGP_KK, " | |||
| lv_et_fkkcollitem | TYPE FKKCOLLITEM_TAB, " | |||
| lv_i_rt_cpudt | TYPE FKK_RT_CPUDT, " | |||
| lv_et_fkkcollitem_disp | TYPE FKKCOLLITEM_DISP_TAB, " | |||
| lv_i_rt_rvdat | TYPE FKK_RT_CPUDT, " | |||
| lv_i_rt_collitem_id | TYPE FKK_RT_COLLITEM_ID, " | |||
| lv_i_rt_prcst | TYPE FKK_RT_PRCST, " | |||
| lv_i_rt_gpart | TYPE FKK_RT_GPART. " |
|   CALL FUNCTION 'FKK_COLL_ITEMS_GET' " |
| EXPORTING | ||
| I_INKGP | = lv_i_inkgp | |
| I_RT_CPUDT | = lv_i_rt_cpudt | |
| I_RT_RVDAT | = lv_i_rt_rvdat | |
| I_RT_COLLITEM_ID | = lv_i_rt_collitem_id | |
| I_RT_PRCST | = lv_i_rt_prcst | |
| I_RT_GPART | = lv_i_rt_gpart | |
| IMPORTING | ||
| ET_FKKCOLLITEM | = lv_et_fkkcollitem | |
| ET_FKKCOLLITEM_DISP | = lv_et_fkkcollitem_disp | |
| . " FKK_COLL_ITEMS_GET | ||
ABAP code using 7.40 inline data declarations to call FM FKK_COLL_ITEMS_GET
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.Search for further information about these or an SAP related objects