SAP FCOM_AVC_PLAN_LIST Function Module for









FCOM_AVC_PLAN_LIST is a standard fcom avc plan list 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 fcom avc plan list FM, simply by entering the name FCOM_AVC_PLAN_LIST into the relevant SAP transaction such as SE37 or SE38.

Function Group: FCOM_BUDGETPLAN
Program Name: SAPLFCOM_BUDGETPLAN
Main Program: SAPLFCOM_BUDGETPLAN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function FCOM_AVC_PLAN_LIST 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_AVC_PLAN_LIST'"
EXPORTING
I_APPLICATION = "
* I_CO_PERS_ONLY = "
I_TYPE = "
* I_CO_AREA = "
* I_SINGLE_WBS = "
* I_SINGLE_ORDER = "
* I_ORDER_GROUP = "
* I_WBS_GROUP = "
* I_YEAR = "
* I_VERSION = "

IMPORTING
E_DATE = "
E_TIME = "
E_OVERALL = "
E_TOTAL_ANNUAL_YEAR = "

TABLES
T_BUDGETPLAN = "
ET_TCURX = "
.



IMPORTING Parameters details for FCOM_AVC_PLAN_LIST

I_APPLICATION -

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

I_CO_PERS_ONLY -

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

I_TYPE -

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

I_CO_AREA -

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

I_SINGLE_WBS -

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

I_SINGLE_ORDER -

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

I_ORDER_GROUP -

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

I_WBS_GROUP -

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

I_YEAR -

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

I_VERSION -

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

EXPORTING Parameters details for FCOM_AVC_PLAN_LIST

E_DATE -

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

E_TIME -

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

E_OVERALL -

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

E_TOTAL_ANNUAL_YEAR -

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

TABLES Parameters details for FCOM_AVC_PLAN_LIST

T_BUDGETPLAN -

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

ET_TCURX -

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

Copy and paste ABAP code example for FCOM_AVC_PLAN_LIST 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_e_date  TYPE SYDATUM, "   
lt_t_budgetplan  TYPE STANDARD TABLE OF FCOM_S_BUDGETPLAN, "   
lv_i_application  TYPE CHAR1, "   
lv_i_co_pers_only  TYPE CHAR1, "   
lv_e_time  TYPE SYUZEIT, "   
lv_i_type  TYPE CHAR1, "   
lt_et_tcurx  TYPE STANDARD TABLE OF TCURX, "   
lv_e_overall  TYPE CHAR1, "   
lv_i_co_area  TYPE KOKRS, "   
lv_i_single_wbs  TYPE PS_POSID, "   
lv_e_total_annual_year  TYPE CHAR1, "   
lv_i_single_order  TYPE AUFNR, "   
lv_i_order_group  TYPE SETID, "   
lv_i_wbs_group  TYPE SETID, "   
lv_i_year  TYPE GJAHR, "   
lv_i_version  TYPE VERSN. "   

  CALL FUNCTION 'FCOM_AVC_PLAN_LIST'  "
    EXPORTING
         I_APPLICATION = lv_i_application
         I_CO_PERS_ONLY = lv_i_co_pers_only
         I_TYPE = lv_i_type
         I_CO_AREA = lv_i_co_area
         I_SINGLE_WBS = lv_i_single_wbs
         I_SINGLE_ORDER = lv_i_single_order
         I_ORDER_GROUP = lv_i_order_group
         I_WBS_GROUP = lv_i_wbs_group
         I_YEAR = lv_i_year
         I_VERSION = lv_i_version
    IMPORTING
         E_DATE = lv_e_date
         E_TIME = lv_e_time
         E_OVERALL = lv_e_overall
         E_TOTAL_ANNUAL_YEAR = lv_e_total_annual_year
    TABLES
         T_BUDGETPLAN = lt_t_budgetplan
         ET_TCURX = lt_et_tcurx
. " FCOM_AVC_PLAN_LIST




ABAP code using 7.40 inline data declarations to call FM FCOM_AVC_PLAN_LIST

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!