SAP FM_CCF_REBUILD_PREPARE_OI Function Module for









FM_CCF_REBUILD_PREPARE_OI is a standard fm ccf rebuild prepare oi 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 rebuild prepare oi FM, simply by entering the name FM_CCF_REBUILD_PREPARE_OI 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_REBUILD_PREPARE_OI 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_REBUILD_PREPARE_OI'"
EXPORTING
* I_F_FMIKEYOI = "Common Key for Funds Management Actual Data
* I_T_FMIOI = "Commitment Line Items
* I_FLG_REVERSE = ' ' "
* I_FLG_AVC = ' ' "
* I_FLG_TEST = 'X' "
* I_FLG_REBUILD = ' ' "Single-Character Indicator

EXCEPTIONS
FM_DOC_MISSING = 1 FM_DOC_CF = 2 CF_IMPOSSIBLE = 3 ROLLBACK_REQUIRED = 4
.



IMPORTING Parameters details for FM_CCF_REBUILD_PREPARE_OI

I_F_FMIKEYOI - Common Key for Funds Management Actual Data

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

I_T_FMIOI - Commitment Line Items

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

I_FLG_REVERSE -

Data type: CHAR1
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_AVC -

Data type: CHAR1
Default: SPACE
Optional: Yes
Call by Reference: Yes

I_FLG_TEST -

Data type: CHAR1
Default: 'X'
Optional: Yes
Call by Reference: Yes

I_FLG_REBUILD - Single-Character Indicator

Data type: CHAR1
Default: SPACE
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

FM_DOC_MISSING -

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

FM_DOC_CF - Document is in fiscal year change

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

CF_IMPOSSIBLE -

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

ROLLBACK_REQUIRED -

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

Copy and paste ABAP code example for FM_CCF_REBUILD_PREPARE_OI 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_f_fmikeyoi  TYPE FMIKEYOI, "   
lv_fm_doc_missing  TYPE FMIKEYOI, "   
lv_fm_doc_cf  TYPE FMIKEYOI, "   
lv_i_t_fmioi  TYPE FMCCF_T_FMIOI, "   
lv_cf_impossible  TYPE FMCCF_T_FMIOI, "   
lv_i_flg_reverse  TYPE CHAR1, "   SPACE
lv_i_flg_avc  TYPE CHAR1, "   SPACE
lv_rollback_required  TYPE CHAR1, "   
lv_i_flg_test  TYPE CHAR1, "   'X'
lv_i_flg_rebuild  TYPE CHAR1. "   SPACE

  CALL FUNCTION 'FM_CCF_REBUILD_PREPARE_OI'  "
    EXPORTING
         I_F_FMIKEYOI = lv_i_f_fmikeyoi
         I_T_FMIOI = lv_i_t_fmioi
         I_FLG_REVERSE = lv_i_flg_reverse
         I_FLG_AVC = lv_i_flg_avc
         I_FLG_TEST = lv_i_flg_test
         I_FLG_REBUILD = lv_i_flg_rebuild
    EXCEPTIONS
        FM_DOC_MISSING = 1
        FM_DOC_CF = 2
        CF_IMPOSSIBLE = 3
        ROLLBACK_REQUIRED = 4
. " FM_CCF_REBUILD_PREPARE_OI




ABAP code using 7.40 inline data declarations to call FM FM_CCF_REBUILD_PREPARE_OI

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_flg_reverse) = ' '.
 
DATA(ld_i_flg_avc) = ' '.
 
 
DATA(ld_i_flg_test) = 'X'.
 
DATA(ld_i_flg_rebuild) = ' '.
 


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!