SAP FMKU_DERI_CCF_FLG_NOBUDGET Function Module for Derive flag no Budget CarryForward









FMKU_DERI_CCF_FLG_NOBUDGET is a standard fmku deri ccf flg nobudget SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Derive flag no Budget CarryForward 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 fmku deri ccf flg nobudget FM, simply by entering the name FMKU_DERI_CCF_FLG_NOBUDGET into the relevant SAP transaction such as SE37 or SE38.

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



Function FMKU_DERI_CCF_FLG_NOBUDGET 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 'FMKU_DERI_CCF_FLG_NOBUDGET'"Derive flag no Budget CarryForward
EXPORTING
I_FMAREA = "Financial Management Area
I_VERSION = "Version
* I_STRATEGY_ID = 'CCFB' "Strategy ID
* I_ENV = 'SAP' "Environment for strategy
I_SYEAR = "Closing Operations in FM: Sender Fiscal Year
I_S_BUDGET_ADDRESS = "FM account assignment
I_WRTTP = "Value Type
I_BUKRS = "Company Code
I_FMBELNR = "Document Number of FM Line Item
I_REFBN = "Reference Document Number
I_REFBT = "Reference document category
I_KNGJAHR = "Fiscal year for FI document number

IMPORTING
E_FLG_NO_BUDGET = "Flag: No Carry Forward of Budget

EXCEPTIONS
DERIVATION_FAILED = 1
.



IMPORTING Parameters details for FMKU_DERI_CCF_FLG_NOBUDGET

I_FMAREA - Financial Management Area

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

I_VERSION - Version

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

I_STRATEGY_ID - Strategy ID

Data type: ABADRSTRATID
Default: 'CCFB'
Optional: Yes
Call by Reference: Yes

I_ENV - Environment for strategy

Data type: ABADRENV
Default: 'SAP'
Optional: Yes
Call by Reference: Yes

I_SYEAR - Closing Operations in FM: Sender Fiscal Year

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

I_S_BUDGET_ADDRESS - FM account assignment

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

I_WRTTP - Value Type

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

I_BUKRS - Company Code

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

I_FMBELNR - Document Number of FM Line Item

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

I_REFBN - Reference Document Number

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

I_REFBT - Reference document category

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

I_KNGJAHR - Fiscal year for FI document number

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

EXPORTING Parameters details for FMKU_DERI_CCF_FLG_NOBUDGET

E_FLG_NO_BUDGET - Flag: No Carry Forward of Budget

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

EXCEPTIONS details

DERIVATION_FAILED - Call of derivation tool failed

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FMKU_DERI_CCF_FLG_NOBUDGET 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_fmarea  TYPE FIKRS, "   
lv_e_flg_no_budget  TYPE FM_CCF_NO_BUDGET, "   
lv_derivation_failed  TYPE FM_CCF_NO_BUDGET, "   
lv_i_version  TYPE VERSN, "   
lv_i_strategy_id  TYPE ABADRSTRATID, "   'CCFB'
lv_i_env  TYPE ABADRENV, "   'SAP'
lv_i_syear  TYPE FM_CCF_SYEAR, "   
lv_i_s_budget_address  TYPE FMKU_S_DIMPART, "   
lv_i_wrttp  TYPE FM_WRTTP, "   
lv_i_bukrs  TYPE BUKRS, "   
lv_i_fmbelnr  TYPE FM_BELNR, "   
lv_i_refbn  TYPE CO_REFBN, "   
lv_i_refbt  TYPE FM_REFBTYP, "   
lv_i_kngjahr  TYPE FM_KNGJAHR. "   

  CALL FUNCTION 'FMKU_DERI_CCF_FLG_NOBUDGET'  "Derive flag no Budget CarryForward
    EXPORTING
         I_FMAREA = lv_i_fmarea
         I_VERSION = lv_i_version
         I_STRATEGY_ID = lv_i_strategy_id
         I_ENV = lv_i_env
         I_SYEAR = lv_i_syear
         I_S_BUDGET_ADDRESS = lv_i_s_budget_address
         I_WRTTP = lv_i_wrttp
         I_BUKRS = lv_i_bukrs
         I_FMBELNR = lv_i_fmbelnr
         I_REFBN = lv_i_refbn
         I_REFBT = lv_i_refbt
         I_KNGJAHR = lv_i_kngjahr
    IMPORTING
         E_FLG_NO_BUDGET = lv_e_flg_no_budget
    EXCEPTIONS
        DERIVATION_FAILED = 1
. " FMKU_DERI_CCF_FLG_NOBUDGET




ABAP code using 7.40 inline data declarations to call FM FMKU_DERI_CCF_FLG_NOBUDGET

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_strategy_id) = 'CCFB'.
 
DATA(ld_i_env) = 'SAP'.
 
 
 
 
 
 
 
 
 


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!