SAP FM_CCF_ITEM_PROCESS_REV Function Module for
FM_CCF_ITEM_PROCESS_REV is a standard fm ccf item process rev 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 item process rev FM, simply by entering the name FM_CCF_ITEM_PROCESS_REV into the relevant SAP transaction such as SE37 or SE38.
Function Group: FMYC_CCF
Program Name: SAPLFMYC_CCF
Main Program: SAPLFMYC_CCF
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FM_CCF_ITEM_PROCESS_REV 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_ITEM_PROCESS_REV'".
EXPORTING
* I_DIAS = ' ' "Process with Dialog
I_F_CONTROL_DATA = "Control Data for Fiscal Year Change (FM)
* I_T_FMIOI = "
* I_T_FMIFIIT = "
I_T_FMCCFD_OLD = "
CHANGING
C_F_BUDGET_DATA = "Commitments Carryforward Data for Automatic Budget Carryfwd
* C_F_OUTLIST = "Output and Transfer Table Year-End Operations (FM)
C_T_FMCCFD = "
C_T_FMCCFD_CHG = "
* C_T_FMIOI_NEW = "
* C_T_FMIFIIT_NEW = "
* C_T_MESSAGES = "
* C_FLG_LOCK = "
IMPORTING Parameters details for FM_CCF_ITEM_PROCESS_REV
I_DIAS - Process with Dialog
Data type: FM_PROCESS_DIALOGDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_F_CONTROL_DATA - Control Data for Fiscal Year Change (FM)
Data type: IFM_CCF_CONTROL_DATAOptional: No
Call by Reference: Yes
I_T_FMIOI -
Data type: FMCCF_T_FMIOIOptional: Yes
Call by Reference: Yes
I_T_FMIFIIT -
Data type: FMCCF_T_FMIFIITOptional: Yes
Call by Reference: Yes
I_T_FMCCFD_OLD -
Data type: FMCCF_T_FMCCFDOptional: No
Call by Reference: Yes
CHANGING Parameters details for FM_CCF_ITEM_PROCESS_REV
C_F_BUDGET_DATA - Commitments Carryforward Data for Automatic Budget Carryfwd
Data type: IFM_CCF_BUDGET_DATAOptional: No
Call by Reference: Yes
C_F_OUTLIST - Output and Transfer Table Year-End Operations (FM)
Data type: IFM_CCF_OUTPUT_LISTOptional: Yes
Call by Reference: Yes
C_T_FMCCFD -
Data type: FMCCF_T_FMCCFDOptional: No
Call by Reference: Yes
C_T_FMCCFD_CHG -
Data type: FMCCF_T_FMCCFDOptional: No
Call by Reference: Yes
C_T_FMIOI_NEW -
Data type: FMCCF_T_FMIOIOptional: Yes
Call by Reference: Yes
C_T_FMIFIIT_NEW -
Data type: FMCCF_T_FMIFIITOptional: Yes
Call by Reference: Yes
C_T_MESSAGES -
Data type: FMCCF_T_MESSAGESOptional: Yes
Call by Reference: Yes
C_FLG_LOCK -
Data type: XFELDOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for FM_CCF_ITEM_PROCESS_REV 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_i_dias | TYPE FM_PROCESS_DIALOG, " SPACE | |||
| lv_c_f_budget_data | TYPE IFM_CCF_BUDGET_DATA, " | |||
| lv_c_f_outlist | TYPE IFM_CCF_OUTPUT_LIST, " | |||
| lv_i_f_control_data | TYPE IFM_CCF_CONTROL_DATA, " | |||
| lv_i_t_fmioi | TYPE FMCCF_T_FMIOI, " | |||
| lv_c_t_fmccfd | TYPE FMCCF_T_FMCCFD, " | |||
| lv_i_t_fmifiit | TYPE FMCCF_T_FMIFIIT, " | |||
| lv_c_t_fmccfd_chg | TYPE FMCCF_T_FMCCFD, " | |||
| lv_c_t_fmioi_new | TYPE FMCCF_T_FMIOI, " | |||
| lv_i_t_fmccfd_old | TYPE FMCCF_T_FMCCFD, " | |||
| lv_c_t_fmifiit_new | TYPE FMCCF_T_FMIFIIT, " | |||
| lv_c_t_messages | TYPE FMCCF_T_MESSAGES, " | |||
| lv_c_flg_lock | TYPE XFELD. " |
|   CALL FUNCTION 'FM_CCF_ITEM_PROCESS_REV' " |
| EXPORTING | ||
| I_DIAS | = lv_i_dias | |
| I_F_CONTROL_DATA | = lv_i_f_control_data | |
| I_T_FMIOI | = lv_i_t_fmioi | |
| I_T_FMIFIIT | = lv_i_t_fmifiit | |
| I_T_FMCCFD_OLD | = lv_i_t_fmccfd_old | |
| CHANGING | ||
| C_F_BUDGET_DATA | = lv_c_f_budget_data | |
| C_F_OUTLIST | = lv_c_f_outlist | |
| C_T_FMCCFD | = lv_c_t_fmccfd | |
| C_T_FMCCFD_CHG | = lv_c_t_fmccfd_chg | |
| C_T_FMIOI_NEW | = lv_c_t_fmioi_new | |
| C_T_FMIFIIT_NEW | = lv_c_t_fmifiit_new | |
| C_T_MESSAGES | = lv_c_t_messages | |
| C_FLG_LOCK | = lv_c_flg_lock | |
| . " FM_CCF_ITEM_PROCESS_REV | ||
ABAP code using 7.40 inline data declarations to call FM FM_CCF_ITEM_PROCESS_REV
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.| DATA(ld_i_dias) | = ' '. | |||
Search for further information about these or an SAP related objects