SAP FCOM_EXP_ACTPRC_POST Function Module for Post actitivity prices to database
FCOM_EXP_ACTPRC_POST is a standard fcom exp actprc post 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 actitivity prices to database 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 fcom exp actprc post FM, simply by entering the name FCOM_EXP_ACTPRC_POST into the relevant SAP transaction such as SE37 or SE38.
Function Group: FCOM_EXP_ACTIVITY_PLANNING
Program Name: SAPLFCOM_EXP_ACTIVITY_PLANNING
Main Program: SAPLFCOM_EXP_ACTIVITY_PLANNING
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function FCOM_EXP_ACTPRC_POST 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 'FCOM_EXP_ACTPRC_POST'"Post actitivity prices to database.
EXPORTING
INP_PARM = "Input DS for Reading Activity Price Data
* BLTXT = "Document Header Text
IMPORTING
EXP_PARM = "Export DS for Reading Activity Price Data
TABLES
IT_PLAN_DATA = "Planning Data for Activity Prices (External Format)
ET_MESSAGE_RETURN = "Messages
IMPORTING Parameters details for FCOM_EXP_ACTPRC_POST
INP_PARM - Input DS for Reading Activity Price Data
Data type: FCOM_EXP_ACTVAL_INPOptional: No
Call by Reference: No ( called with pass by value option)
BLTXT - Document Header Text
Data type: CO_BLTXTOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FCOM_EXP_ACTPRC_POST
EXP_PARM - Export DS for Reading Activity Price Data
Data type: FCOM_EXP_ACTVAL_EXPOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FCOM_EXP_ACTPRC_POST
IT_PLAN_DATA - Planning Data for Activity Prices (External Format)
Data type: FCOM_EXP_ACTPRCOptional: No
Call by Reference: Yes
ET_MESSAGE_RETURN - Messages
Data type: BAPIRETURNOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FCOM_EXP_ACTPRC_POST 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_exp_parm | TYPE FCOM_EXP_ACTVAL_EXP, " | |||
| lv_inp_parm | TYPE FCOM_EXP_ACTVAL_INP, " | |||
| lt_it_plan_data | TYPE STANDARD TABLE OF FCOM_EXP_ACTPRC, " | |||
| lv_bltxt | TYPE CO_BLTXT, " | |||
| lt_et_message_return | TYPE STANDARD TABLE OF BAPIRETURN. " |
|   CALL FUNCTION 'FCOM_EXP_ACTPRC_POST' "Post actitivity prices to database |
| EXPORTING | ||
| INP_PARM | = lv_inp_parm | |
| BLTXT | = lv_bltxt | |
| IMPORTING | ||
| EXP_PARM | = lv_exp_parm | |
| TABLES | ||
| IT_PLAN_DATA | = lt_it_plan_data | |
| ET_MESSAGE_RETURN | = lt_et_message_return | |
| . " FCOM_EXP_ACTPRC_POST | ||
ABAP code using 7.40 inline data declarations to call FM FCOM_EXP_ACTPRC_POST
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