SAP FM_CCF_PROCESS_CPP Function Module for









FM_CCF_PROCESS_CPP is a standard fm ccf process cpp 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 fm ccf process cpp FM, simply by entering the name FM_CCF_PROCESS_CPP into the relevant SAP transaction such as SE37 or SE38.

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



Function FM_CCF_PROCESS_CPP 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 'FM_CCF_PROCESS_CPP'"
EXPORTING
I_F_CONTROL_DATA = "Control Data for Fiscal Year Change (FM)
I_TASK = "Description of a Task in Parallel Processing
I_RLDNR = "
I_WRTTP = "Value Type
I_F_ACCOUNT = "Funds Management Account Assignments

TABLES
R_REFBN = "Structure of a Range Table for a (10) Character Field
T_SUMLIST = "Output Table for Totals Transfer Fiscal Year Change (FM)
T_MESSAGES = "Commitments Carryforward: Return Parameter
R_BUKRS = "RANGE Structure for Company Code
R_ERLKZ = "
R_LOEKZ = "
R_KNGJAHR = "
R_PAYFLG = "
R_LOGSYS = "
T_VALUE_TYPES = "Fiscal Year Change-Carryforward Parameter per Value Type
T_OUTLIST = "Output and Transfer Table Year-End Operations (FM)
.



IMPORTING Parameters details for FM_CCF_PROCESS_CPP

I_F_CONTROL_DATA - Control Data for Fiscal Year Change (FM)

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

I_TASK - Description of a Task in Parallel Processing

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

I_RLDNR -

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

I_WRTTP - Value Type

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

I_F_ACCOUNT - Funds Management Account Assignments

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

TABLES Parameters details for FM_CCF_PROCESS_CPP

R_REFBN - Structure of a Range Table for a (10) Character Field

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

T_SUMLIST - Output Table for Totals Transfer Fiscal Year Change (FM)

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

T_MESSAGES - Commitments Carryforward: Return Parameter

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

R_BUKRS - RANGE Structure for Company Code

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

R_ERLKZ -

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

R_LOEKZ -

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

R_KNGJAHR -

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

R_PAYFLG -

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

R_LOGSYS -

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

T_VALUE_TYPES - Fiscal Year Change-Carryforward Parameter per Value Type

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

T_OUTLIST - Output and Transfer Table Year-End Operations (FM)

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

Copy and paste ABAP code example for FM_CCF_PROCESS_CPP 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:
lt_r_refbn  TYPE STANDARD TABLE OF RANGE_C10, "   
lv_i_f_control_data  TYPE IFM_CCF_CONTROL_DATA, "   
lt_t_sumlist  TYPE STANDARD TABLE OF IFM_CCF_TOTALS_LIST, "   
lt_t_messages  TYPE STANDARD TABLE OF IFM_CCF_MESSAGES, "   
lv_i_task  TYPE FM_TASKNAME, "   
lt_r_bukrs  TYPE STANDARD TABLE OF RANGE_C4, "   
lv_i_rldnr  TYPE RLDNR, "   
lt_r_erlkz  TYPE STANDARD TABLE OF RANGE_C1, "   
lv_i_wrttp  TYPE FM_WRTTP, "   
lt_r_loekz  TYPE STANDARD TABLE OF RANGE_C1, "   
lt_r_kngjahr  TYPE STANDARD TABLE OF RANGE_N4, "   
lv_i_f_account  TYPE IFM_DIMENSIONS, "   
lt_r_payflg  TYPE STANDARD TABLE OF RANGE_C1, "   
lt_r_logsys  TYPE STANDARD TABLE OF RANGE_C10, "   
lt_t_value_types  TYPE STANDARD TABLE OF IFM_CCF_VALUE_TYPES, "   
lt_t_outlist  TYPE STANDARD TABLE OF IFM_CCF_OUTPUT_LIST. "   

  CALL FUNCTION 'FM_CCF_PROCESS_CPP'  "
    EXPORTING
         I_F_CONTROL_DATA = lv_i_f_control_data
         I_TASK = lv_i_task
         I_RLDNR = lv_i_rldnr
         I_WRTTP = lv_i_wrttp
         I_F_ACCOUNT = lv_i_f_account
    TABLES
         R_REFBN = lt_r_refbn
         T_SUMLIST = lt_t_sumlist
         T_MESSAGES = lt_t_messages
         R_BUKRS = lt_r_bukrs
         R_ERLKZ = lt_r_erlkz
         R_LOEKZ = lt_r_loekz
         R_KNGJAHR = lt_r_kngjahr
         R_PAYFLG = lt_r_payflg
         R_LOGSYS = lt_r_logsys
         T_VALUE_TYPES = lt_t_value_types
         T_OUTLIST = lt_t_outlist
. " FM_CCF_PROCESS_CPP




ABAP code using 7.40 inline data declarations to call FM FM_CCF_PROCESS_CPP

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!