SAP FCOM_EXP_ACTPRC_FORUSER Function Module for Get activitiy prices (including the respective quantities) per user









FCOM_EXP_ACTPRC_FORUSER is a standard fcom exp actprc foruser SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get activitiy prices (including the respective quantities) per user 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 foruser FM, simply by entering the name FCOM_EXP_ACTPRC_FORUSER 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_FORUSER 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_FORUSER'"Get activitiy prices (including the respective quantities) per user
EXPORTING
INP_PARM = "Input DS for Reading Activity Price Data

IMPORTING
EXP_PARM = "Export DS for Reading Activity Price Data

TABLES
IT_OBJECTS = "Relevant Cost Centers (Objects)
* IT_ORDERTYPE = "Relevant Order Types
ET_PLAN_DATA = "Planning Data for Activity Prices (External Format)
* ET_ACTTYPE = "Relevant Activity Types
ET_MESSAGE_RETURN = "Messages
.



IMPORTING Parameters details for FCOM_EXP_ACTPRC_FORUSER

INP_PARM - Input DS for Reading Activity Price Data

Data type: FCOM_EXP_ACTVAL_INP
Optional: No
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FCOM_EXP_ACTPRC_FORUSER

EXP_PARM - Export DS for Reading Activity Price Data

Data type: FCOM_EXP_ACTVAL_EXP
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for FCOM_EXP_ACTPRC_FORUSER

IT_OBJECTS - Relevant Cost Centers (Objects)

Data type: FCOM_S_EXP_KOSTL
Optional: No
Call by Reference: Yes

IT_ORDERTYPE - Relevant Order Types

Data type: SEL_AUFART
Optional: Yes
Call by Reference: Yes

ET_PLAN_DATA - Planning Data for Activity Prices (External Format)

Data type: FCOM_EXP_ACTPRC
Optional: No
Call by Reference: Yes

ET_ACTTYPE - Relevant Activity Types

Data type: FCOM_EXP_LSTAR_INFOS
Optional: Yes
Call by Reference: Yes

ET_MESSAGE_RETURN - Messages

Data type: BAPIRETURN1
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FCOM_EXP_ACTPRC_FORUSER 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_objects  TYPE STANDARD TABLE OF FCOM_S_EXP_KOSTL, "   
lt_it_ordertype  TYPE STANDARD TABLE OF SEL_AUFART, "   
lt_et_plan_data  TYPE STANDARD TABLE OF FCOM_EXP_ACTPRC, "   
lt_et_acttype  TYPE STANDARD TABLE OF FCOM_EXP_LSTAR_INFOS, "   
lt_et_message_return  TYPE STANDARD TABLE OF BAPIRETURN1. "   

  CALL FUNCTION 'FCOM_EXP_ACTPRC_FORUSER'  "Get activitiy prices (including the respective quantities) per user
    EXPORTING
         INP_PARM = lv_inp_parm
    IMPORTING
         EXP_PARM = lv_exp_parm
    TABLES
         IT_OBJECTS = lt_it_objects
         IT_ORDERTYPE = lt_it_ordertype
         ET_PLAN_DATA = lt_et_plan_data
         ET_ACTTYPE = lt_et_acttype
         ET_MESSAGE_RETURN = lt_et_message_return
. " FCOM_EXP_ACTPRC_FORUSER




ABAP code using 7.40 inline data declarations to call FM FCOM_EXP_ACTPRC_FORUSER

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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!