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

Function FKK_SAMPLE_0315 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_SAMPLE_0315'".
EXPORTING
I_FKKMAGRP = "FI-CA Dunning: Groups Used in the Dunning Program
IT_FKKMAVS = "Table for Dunning Proposal
IT_FKKMARED = "Dunning Reductions
IT_FKKMAKO_PREVIOUS = "Dunning Headers of Last Dunning Notice(s)
IT_FKKMAZE_PREVIOUS = "Dunning Items of Last Dunning Notice(s)
* IT_FKKMAKO_ALL = "Dunning Headers for All Dunning Notices
* IT_FKKMAZE_ALL = "Dunning Items of All Dunning Notices
* I_PARA_0300 = "
IMPORTING
ET_FIMSG = "Tables of Dunning Items
E_STEP = "Collection Step
E_VALUEVECTOR = "Valuation Figures
ET_TRACE_DB = "Table Type for BRF Trace
IMPORTING Parameters details for FKK_SAMPLE_0315
I_FKKMAGRP - FI-CA Dunning: Groups Used in the Dunning Program
Data type: FKKMAGRPOptional: No
Call by Reference: Yes
IT_FKKMAVS - Table for Dunning Proposal
Data type: FKKMAVS_TOptional: No
Call by Reference: Yes
IT_FKKMARED - Dunning Reductions
Data type: FKKMARED_TOptional: No
Call by Reference: Yes
IT_FKKMAKO_PREVIOUS - Dunning Headers of Last Dunning Notice(s)
Data type: FKKMAKO_TOptional: No
Call by Reference: Yes
IT_FKKMAZE_PREVIOUS - Dunning Items of Last Dunning Notice(s)
Data type: FKKMAZE_TABOptional: No
Call by Reference: Yes
IT_FKKMAKO_ALL - Dunning Headers for All Dunning Notices
Data type: FKKMAKO_TOptional: Yes
Call by Reference: Yes
IT_FKKMAZE_ALL - Dunning Items of All Dunning Notices
Data type: FKKMAZE_TABOptional: Yes
Call by Reference: Yes
I_PARA_0300 -
Data type: FKKMA_0300Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FKK_SAMPLE_0315
ET_FIMSG - Tables of Dunning Items
Data type: TY_FIMSGOptional: No
Call by Reference: Yes
E_STEP - Collection Step
Data type: STEP_CM_KKOptional: No
Call by Reference: Yes
E_VALUEVECTOR - Valuation Figures
Data type: SI_VALUEVECTOROptional: No
Call by Reference: Yes
ET_TRACE_DB - Table Type for BRF Trace
Data type: FKKBRFTRACE_TABOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FKK_SAMPLE_0315 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_et_fimsg | TYPE TY_FIMSG, " | |||
| lv_i_fkkmagrp | TYPE FKKMAGRP, " | |||
| lv_e_step | TYPE STEP_CM_KK, " | |||
| lv_it_fkkmavs | TYPE FKKMAVS_T, " | |||
| lv_it_fkkmared | TYPE FKKMARED_T, " | |||
| lv_e_valuevector | TYPE SI_VALUEVECTOR, " | |||
| lv_et_trace_db | TYPE FKKBRFTRACE_TAB, " | |||
| lv_it_fkkmako_previous | TYPE FKKMAKO_T, " | |||
| lv_it_fkkmaze_previous | TYPE FKKMAZE_TAB, " | |||
| lv_it_fkkmako_all | TYPE FKKMAKO_T, " | |||
| lv_it_fkkmaze_all | TYPE FKKMAZE_TAB, " | |||
| lv_i_para_0300 | TYPE FKKMA_0300. " |
|   CALL FUNCTION 'FKK_SAMPLE_0315' " |
| EXPORTING | ||
| I_FKKMAGRP | = lv_i_fkkmagrp | |
| IT_FKKMAVS | = lv_it_fkkmavs | |
| IT_FKKMARED | = lv_it_fkkmared | |
| IT_FKKMAKO_PREVIOUS | = lv_it_fkkmako_previous | |
| IT_FKKMAZE_PREVIOUS | = lv_it_fkkmaze_previous | |
| IT_FKKMAKO_ALL | = lv_it_fkkmako_all | |
| IT_FKKMAZE_ALL | = lv_it_fkkmaze_all | |
| I_PARA_0300 | = lv_i_para_0300 | |
| IMPORTING | ||
| ET_FIMSG | = lv_et_fimsg | |
| E_STEP | = lv_e_step | |
| E_VALUEVECTOR | = lv_e_valuevector | |
| ET_TRACE_DB | = lv_et_trace_db | |
| . " FKK_SAMPLE_0315 | ||
ABAP code using 7.40 inline data declarations to call FM FKK_SAMPLE_0315
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