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

Function FKK_RDI_SELECT_INIT 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_RDI_SELECT_INIT'".
EXPORTING
IS_SEL_CRIT = "Selection Criteria for Enhanced Distribution Information
* I_FLG_NO_DOC = "
* I_BW_STRAT = "
* I_FLG_ORIG_DOC = "
* I_FLG_DISTR_DOC = "
* I_FLG_AGGRF = "Read Aggregated Distribution Information
* I_FLG_PAYM = "Read Payment Information
* I_FLG_SIMU = "Read Simulated Assigned Payments
* I_FLG_MULTICALL = "
* I_FLG_BW_INIT = "
* I_FLG_BW_DELTA = "
IMPORTING Parameters details for FKK_RDI_SELECT_INIT
IS_SEL_CRIT - Selection Criteria for Enhanced Distribution Information
Data type: FKKRDI_SEL_CRITOptional: No
Call by Reference: Yes
I_FLG_NO_DOC -
Data type: XFELDOptional: Yes
Call by Reference: Yes
I_BW_STRAT -
Data type: RDI_BW_STRA_KKOptional: Yes
Call by Reference: Yes
I_FLG_ORIG_DOC -
Data type: XFELDOptional: Yes
Call by Reference: Yes
I_FLG_DISTR_DOC -
Data type: XFELDOptional: Yes
Call by Reference: Yes
I_FLG_AGGRF - Read Aggregated Distribution Information
Data type: RDI_XAGGR_READ_KKOptional: Yes
Call by Reference: Yes
I_FLG_PAYM - Read Payment Information
Data type: RDI_XPAYM_READ_KKOptional: Yes
Call by Reference: Yes
I_FLG_SIMU - Read Simulated Assigned Payments
Data type: RDI_XSIMU_READ_KKOptional: Yes
Call by Reference: Yes
I_FLG_MULTICALL -
Data type: XFELDOptional: Yes
Call by Reference: Yes
I_FLG_BW_INIT -
Data type: XFELDOptional: Yes
Call by Reference: Yes
I_FLG_BW_DELTA -
Data type: XFELDOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for FKK_RDI_SELECT_INIT 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_is_sel_crit | TYPE FKKRDI_SEL_CRIT, " | |||
| lv_i_flg_no_doc | TYPE XFELD, " | |||
| lv_i_bw_strat | TYPE RDI_BW_STRA_KK, " | |||
| lv_i_flg_orig_doc | TYPE XFELD, " | |||
| lv_i_flg_distr_doc | TYPE XFELD, " | |||
| lv_i_flg_aggrf | TYPE RDI_XAGGR_READ_KK, " | |||
| lv_i_flg_paym | TYPE RDI_XPAYM_READ_KK, " | |||
| lv_i_flg_simu | TYPE RDI_XSIMU_READ_KK, " | |||
| lv_i_flg_multicall | TYPE XFELD, " | |||
| lv_i_flg_bw_init | TYPE XFELD, " | |||
| lv_i_flg_bw_delta | TYPE XFELD. " |
|   CALL FUNCTION 'FKK_RDI_SELECT_INIT' " |
| EXPORTING | ||
| IS_SEL_CRIT | = lv_is_sel_crit | |
| I_FLG_NO_DOC | = lv_i_flg_no_doc | |
| I_BW_STRAT | = lv_i_bw_strat | |
| I_FLG_ORIG_DOC | = lv_i_flg_orig_doc | |
| I_FLG_DISTR_DOC | = lv_i_flg_distr_doc | |
| I_FLG_AGGRF | = lv_i_flg_aggrf | |
| I_FLG_PAYM | = lv_i_flg_paym | |
| I_FLG_SIMU | = lv_i_flg_simu | |
| I_FLG_MULTICALL | = lv_i_flg_multicall | |
| I_FLG_BW_INIT | = lv_i_flg_bw_init | |
| I_FLG_BW_DELTA | = lv_i_flg_bw_delta | |
| . " FKK_RDI_SELECT_INIT | ||
ABAP code using 7.40 inline data declarations to call FM FKK_RDI_SELECT_INIT
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