SAP CPCC_ES_TASK_MAINTAIN_COM Function Module for Maint. Task List: Component Allocations









CPCC_ES_TASK_MAINTAIN_COM is a standard cpcc es task maintain com SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Maint. Task List: Component Allocations 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 cpcc es task maintain com FM, simply by entering the name CPCC_ES_TASK_MAINTAIN_COM into the relevant SAP transaction such as SE37 or SE38.

Function Group: CPCC_ES
Program Name: SAPLCPCC_ES
Main Program: SAPLCPCC_ES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CPCC_ES_TASK_MAINTAIN_COM 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 'CPCC_ES_TASK_MAINTAIN_COM'"Maint. Task List: Component Allocations
EXPORTING
IS_TASK_ID = "
* IV_KEY_DATE = "
* IV_CHANGE_NO = "
IT_COMP_ALLOC = "
IT_COMP_ALLOC_X = "

CHANGING
CT_RETURN = "
.



IMPORTING Parameters details for CPCC_ES_TASK_MAINTAIN_COM

IS_TASK_ID -

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

IV_KEY_DATE -

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

IV_CHANGE_NO -

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

IT_COMP_ALLOC -

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

IT_COMP_ALLOC_X -

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

CHANGING Parameters details for CPCC_ES_TASK_MAINTAIN_COM

CT_RETURN -

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

Copy and paste ABAP code example for CPCC_ES_TASK_MAINTAIN_COM 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_ct_return  TYPE BAPIRET2_T, "   
lv_is_task_id  TYPE CPCL_TSK_IDENT_TYPE, "   
lv_iv_key_date  TYPE DATUM, "   
lv_iv_change_no  TYPE AENNR, "   
lv_it_comp_alloc  TYPE BAPI_ES_TASK_MAINT_COM_T, "   
lv_it_comp_alloc_x  TYPE BAPI_ES_TASK_MAINT_COM_X_T. "   

  CALL FUNCTION 'CPCC_ES_TASK_MAINTAIN_COM'  "Maint. Task List: Component Allocations
    EXPORTING
         IS_TASK_ID = lv_is_task_id
         IV_KEY_DATE = lv_iv_key_date
         IV_CHANGE_NO = lv_iv_change_no
         IT_COMP_ALLOC = lv_it_comp_alloc
         IT_COMP_ALLOC_X = lv_it_comp_alloc_x
    CHANGING
         CT_RETURN = lv_ct_return
. " CPCC_ES_TASK_MAINTAIN_COM




ABAP code using 7.40 inline data declarations to call FM CPCC_ES_TASK_MAINTAIN_COM

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!