SAP FM_FUNDS_CTR_CREATE_RFC Function Module for









FM_FUNDS_CTR_CREATE_RFC is a standard fm funds ctr create rfc 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 funds ctr create rfc FM, simply by entering the name FM_FUNDS_CTR_CREATE_RFC into the relevant SAP transaction such as SE37 or SE38.

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



Function FM_FUNDS_CTR_CREATE_RFC 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_FUNDS_CTR_CREATE_RFC'"
EXPORTING
I_FM_AREA = "
I_FUNDS_CTR = "
IS_FUNDS_CTR_HIVARNT = "
IT_FUNDS_CTR_DATA = "
IT_FUNDS_CTR_TEXT = "
* I_FLG_TESTRUN = 'X' "
* I_FLG_COMMIT = ' ' "

IMPORTING
ET_MESSAGES = "
.



IMPORTING Parameters details for FM_FUNDS_CTR_CREATE_RFC

I_FM_AREA -

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

I_FUNDS_CTR -

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

IS_FUNDS_CTR_HIVARNT -

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

IT_FUNDS_CTR_DATA -

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

IT_FUNDS_CTR_TEXT -

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

I_FLG_TESTRUN -

Data type: TESTRUN
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FLG_COMMIT -

Data type: XFELD
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FM_FUNDS_CTR_CREATE_RFC

ET_MESSAGES -

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

Copy and paste ABAP code example for FM_FUNDS_CTR_CREATE_RFC 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_fm_area  TYPE FIKRS, "   
lv_et_messages  TYPE BAPIRET2_T, "   
lv_i_funds_ctr  TYPE FISTL, "   
lv_is_funds_ctr_hivarnt  TYPE FMFUNDS_CTR_HIVARNT, "   
lv_it_funds_ctr_data  TYPE FMFUNDS_CTR_DATA_T, "   
lv_it_funds_ctr_text  TYPE FMFUNDS_CTR_TEXT_T, "   
lv_i_flg_testrun  TYPE TESTRUN, "   'X'
lv_i_flg_commit  TYPE XFELD. "   ' '

  CALL FUNCTION 'FM_FUNDS_CTR_CREATE_RFC'  "
    EXPORTING
         I_FM_AREA = lv_i_fm_area
         I_FUNDS_CTR = lv_i_funds_ctr
         IS_FUNDS_CTR_HIVARNT = lv_is_funds_ctr_hivarnt
         IT_FUNDS_CTR_DATA = lv_it_funds_ctr_data
         IT_FUNDS_CTR_TEXT = lv_it_funds_ctr_text
         I_FLG_TESTRUN = lv_i_flg_testrun
         I_FLG_COMMIT = lv_i_flg_commit
    IMPORTING
         ET_MESSAGES = lv_et_messages
. " FM_FUNDS_CTR_CREATE_RFC




ABAP code using 7.40 inline data declarations to call FM FM_FUNDS_CTR_CREATE_RFC

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_testrun) = 'X'.
 
DATA(ld_i_flg_commit) = ' '.
 


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!