SAP FVKM_CORP_ACT_EXECUTION Function Module for Post Corporate Action
FVKM_CORP_ACT_EXECUTION is a standard fvkm corp act execution SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Post Corporate Action processing and below is the pattern details for this FM, 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 fvkm corp act execution FM, simply by entering the name FVKM_CORP_ACT_EXECUTION into the relevant SAP transaction such as SE37 or SE38.
Function Group: FVKM
Program Name: SAPLFVKM
Main Program: SAPLFVKM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FVKM_CORP_ACT_EXECUTION 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 'FVKM_CORP_ACT_EXECUTION'"Post Corporate Action.
EXPORTING
IM_BUDAT = "Different FI Posting Date
IM_PERIOD = "Different FI Posting Period
IM_BLDAT = "Document Date
IM_XZUSATZ = "Assignment text
IM_SIMU = "Test Run Flag
TABLES
IM_RANGE_COMPANY_CODE = "Range Company Code
IM_RANGE_CANR = "Range KAMA Nummer
IMPORTING Parameters details for FVKM_CORP_ACT_EXECUTION
IM_BUDAT - Different FI Posting Date
Data type: TPM_FI_POSTING_DATEOptional: No
Call by Reference: Yes
IM_PERIOD - Different FI Posting Period
Data type: TPM_FI_POSTING_PERIODOptional: No
Call by Reference: Yes
IM_BLDAT - Document Date
Data type: BLDATOptional: No
Call by Reference: Yes
IM_XZUSATZ - Assignment text
Data type: XZUSATZOptional: No
Call by Reference: Yes
IM_SIMU - Test Run Flag
Data type: CHAR1Optional: No
Call by Reference: Yes
TABLES Parameters details for FVKM_CORP_ACT_EXECUTION
IM_RANGE_COMPANY_CODE - Range Company Code
Data type:Optional: No
Call by Reference: Yes
IM_RANGE_CANR - Range KAMA Nummer
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FVKM_CORP_ACT_EXECUTION 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_im_budat | TYPE TPM_FI_POSTING_DATE, " | |||
| lt_im_range_company_code | TYPE STANDARD TABLE OF TPM_FI_POSTING_DATE, " | |||
| lv_im_period | TYPE TPM_FI_POSTING_PERIOD, " | |||
| lt_im_range_canr | TYPE STANDARD TABLE OF TPM_FI_POSTING_PERIOD, " | |||
| lv_im_bldat | TYPE BLDAT, " | |||
| lv_im_xzusatz | TYPE XZUSATZ, " | |||
| lv_im_simu | TYPE CHAR1. " |
|   CALL FUNCTION 'FVKM_CORP_ACT_EXECUTION' "Post Corporate Action |
| EXPORTING | ||
| IM_BUDAT | = lv_im_budat | |
| IM_PERIOD | = lv_im_period | |
| IM_BLDAT | = lv_im_bldat | |
| IM_XZUSATZ | = lv_im_xzusatz | |
| IM_SIMU | = lv_im_simu | |
| TABLES | ||
| IM_RANGE_COMPANY_CODE | = lt_im_range_company_code | |
| IM_RANGE_CANR | = lt_im_range_canr | |
| . " FVKM_CORP_ACT_EXECUTION | ||
ABAP code using 7.40 inline data declarations to call FM FVKM_CORP_ACT_EXECUTION
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