SAP FMCFSIF_DELETE Function Module for









FMCFSIF_DELETE is a standard fmcfsif delete 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 fmcfsif delete FM, simply by entering the name FMCFSIF_DELETE into the relevant SAP transaction such as SE37 or SE38.

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



Function FMCFSIF_DELETE 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 'FMCFSIF_DELETE'"
EXPORTING
* I_ALL_GJAHR = ' ' "
I_FIKRS = "
* I_GJAHR = '0000' "
* I_XREAL = ' ' "
* I_XTEST = ' ' "
* I_WRTTP = ' ' "
* I_GEBER = ' ' "
* I_ALL_GEBER = ' ' "

EXCEPTIONS
INVALID_INPUT = 1
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLFMCF_BUD_001 ISPS: FYC Budget: Calculation Maximum Transferable Amount
EXIT_SAPLFMCF_BUD_002 ISPS: FYC Budget: Can Approved/Requested Amount Be Negative

IMPORTING Parameters details for FMCFSIF_DELETE

I_ALL_GJAHR -

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

I_FIKRS -

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

I_GJAHR -

Data type: FMIOI-GJAHR
Default: '0000'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_XREAL -

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

I_XTEST -

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

I_WRTTP -

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

I_GEBER -

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

I_ALL_GEBER -

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

EXCEPTIONS details

INVALID_INPUT -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for FMCFSIF_DELETE 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_all_gjahr  TYPE STRING, "   ' '
lv_invalid_input  TYPE STRING, "   
lv_i_fikrs  TYPE FMIOI-FIKRS, "   
lv_i_gjahr  TYPE FMIOI-GJAHR, "   '0000'
lv_i_xreal  TYPE FMIOI, "   ' '
lv_i_xtest  TYPE FMIOI, "   ' '
lv_i_wrttp  TYPE FMIOI-WRTTP, "   ' '
lv_i_geber  TYPE FMIOI-FONDS, "   ' '
lv_i_all_geber  TYPE FMIOI. "   ' '

  CALL FUNCTION 'FMCFSIF_DELETE'  "
    EXPORTING
         I_ALL_GJAHR = lv_i_all_gjahr
         I_FIKRS = lv_i_fikrs
         I_GJAHR = lv_i_gjahr
         I_XREAL = lv_i_xreal
         I_XTEST = lv_i_xtest
         I_WRTTP = lv_i_wrttp
         I_GEBER = lv_i_geber
         I_ALL_GEBER = lv_i_all_geber
    EXCEPTIONS
        INVALID_INPUT = 1
. " FMCFSIF_DELETE




ABAP code using 7.40 inline data declarations to call FM FMCFSIF_DELETE

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_all_gjahr) = ' '.
 
 
"SELECT single FIKRS FROM FMIOI INTO @DATA(ld_i_fikrs).
 
"SELECT single GJAHR FROM FMIOI INTO @DATA(ld_i_gjahr).
DATA(ld_i_gjahr) = '0000'.
 
DATA(ld_i_xreal) = ' '.
 
DATA(ld_i_xtest) = ' '.
 
"SELECT single WRTTP FROM FMIOI INTO @DATA(ld_i_wrttp).
DATA(ld_i_wrttp) = ' '.
 
"SELECT single FONDS FROM FMIOI INTO @DATA(ld_i_geber).
DATA(ld_i_geber) = ' '.
 
DATA(ld_i_all_geber) = ' '.
 


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!