SAP FKKCORR_EXP_EV_SET_RECEIVER Function Module for
FKKCORR_EXP_EV_SET_RECEIVER is a standard fkkcorr exp ev set receiver 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 fkkcorr exp ev set receiver FM, simply by entering the name FKKCORR_EXP_EV_SET_RECEIVER into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKKCORR_EXP_EVENT_REQUEST
Program Name: SAPLFKKCORR_EXP_EVENT_REQUEST
Main Program: SAPLFKKCORR_EXP_EVENT_REQUEST
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKKCORR_EXP_EV_SET_RECEIVER 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 'FKKCORR_EXP_EV_SET_RECEIVER'".
EXPORTING
* I_APPLK = ' ' "
* I_FLG_WITHOUT_RECEIVER = ' ' "
* I_RECEIVER_ORIG = ' ' "
* I_RECEIVER_COPY = ' ' "
* I_SENDER = ' ' "
* I_CORR_ROLE = ' ' "
* I_CORR_VARIANT = ' ' "
* I_RECEIVER_ORIG_ADRNR = ' ' "
* I_RECEIVER_COPY_ADRNR = ' ' "
IMPORTING Parameters details for FKKCORR_EXP_EV_SET_RECEIVER
I_APPLK -
Data type: CORR_APPLK_KKDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_FLG_WITHOUT_RECEIVER -
Data type: RCV_DTE_WITHOUT_RECEIVERDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_RECEIVER_ORIG -
Data type: CORR_PARTNER_KKDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_RECEIVER_COPY -
Data type: CORR_PARTNER_KKDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_SENDER -
Data type: CSEN_GP_KKDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_CORR_ROLE -
Data type: CORR_ROLE_KKDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_CORR_VARIANT -
Data type: COPRC_KKDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_RECEIVER_ORIG_ADRNR -
Data type: CREC_AD_KKDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_RECEIVER_COPY_ADRNR -
Data type: CREC_AD_KKDefault: SPACE
Optional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for FKKCORR_EXP_EV_SET_RECEIVER 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 CORR_APPLK_KK, " SPACE | |||
| lv_i_flg_without_receiver | TYPE RCV_DTE_WITHOUT_RECEIVER, " SPACE | |||
| lv_i_receiver_orig | TYPE CORR_PARTNER_KK, " SPACE | |||
| lv_i_receiver_copy | TYPE CORR_PARTNER_KK, " SPACE | |||
| lv_i_sender | TYPE CSEN_GP_KK, " SPACE | |||
| lv_i_corr_role | TYPE CORR_ROLE_KK, " SPACE | |||
| lv_i_corr_variant | TYPE COPRC_KK, " SPACE | |||
| lv_i_receiver_orig_adrnr | TYPE CREC_AD_KK, " SPACE | |||
| lv_i_receiver_copy_adrnr | TYPE CREC_AD_KK. " SPACE |
|   CALL FUNCTION 'FKKCORR_EXP_EV_SET_RECEIVER' " |
| EXPORTING | ||
| I_APPLK | = lv_i_applk | |
| I_FLG_WITHOUT_RECEIVER | = lv_i_flg_without_receiver | |
| I_RECEIVER_ORIG | = lv_i_receiver_orig | |
| I_RECEIVER_COPY | = lv_i_receiver_copy | |
| I_SENDER | = lv_i_sender | |
| I_CORR_ROLE | = lv_i_corr_role | |
| I_CORR_VARIANT | = lv_i_corr_variant | |
| I_RECEIVER_ORIG_ADRNR | = lv_i_receiver_orig_adrnr | |
| I_RECEIVER_COPY_ADRNR | = lv_i_receiver_copy_adrnr | |
| . " FKKCORR_EXP_EV_SET_RECEIVER | ||
ABAP code using 7.40 inline data declarations to call FM FKKCORR_EXP_EV_SET_RECEIVER
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_applk) | = ' '. | |||
| DATA(ld_i_flg_without_receiver) | = ' '. | |||
| DATA(ld_i_receiver_orig) | = ' '. | |||
| DATA(ld_i_receiver_copy) | = ' '. | |||
| DATA(ld_i_sender) | = ' '. | |||
| DATA(ld_i_corr_role) | = ' '. | |||
| DATA(ld_i_corr_variant) | = ' '. | |||
| DATA(ld_i_receiver_orig_adrnr) | = ' '. | |||
| DATA(ld_i_receiver_copy_adrnr) | = ' '. | |||
Search for further information about these or an SAP related objects