SAP CACS_FFLT_CHECK_NATIVE Function Module for NOTRANSL: Starte Erfüllungsgradermittlung









CACS_FFLT_CHECK_NATIVE is a standard cacs fflt check native SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Starte Erfüllungsgradermittlung 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 cacs fflt check native FM, simply by entering the name CACS_FFLT_CHECK_NATIVE into the relevant SAP transaction such as SE37 or SE38.

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



Function CACS_FFLT_CHECK_NATIVE 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 'CACS_FFLT_CHECK_NATIVE'"NOTRANSL: Starte Erfüllungsgradermittlung
EXPORTING
I_FFLGUID = "GUID in 25-Byte Packed Format
* I_CALLED_FRM_CASE = '' "Boolean Variable (X=True, -=False, Space=Unknown)
* I_XFULL_PROCESS = '' "
* I_SIMU = '' "Boolean Variable (X=True, -=False, Space=Unknown)
* I_BUSOBJ_TYPE = "Business Object Category that Triggers Commission
* I_BUSOBJ_ID = "Identification of Triggering Business Object
* I_TRI_OBJ_TYPE = "Triggering Subobject Type
* I_TRI_OBJ_ID_EXT = "External Identification of Triggering Subobject
I_OTC = "Object Type Class (OTC) for Logical Service
I_TOOL = "Tools for Logical Service

IMPORTING
E_FFL_FROM = "From
E_FFL_TO = "To
E_FFL = "Fulfillment Level

CHANGING
* C_FLG_ERROR = "Indicator: Commn Case Inconsistent (X = error, ' ' = ok)
C_LOG_HANDLE = "Application Log: Log Handle

EXCEPTIONS
INVALID_OBJECT_DATA = 1
.



IMPORTING Parameters details for CACS_FFLT_CHECK_NATIVE

I_FFLGUID - GUID in 25-Byte Packed Format

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

I_CALLED_FRM_CASE - Boolean Variable (X=True, -=False, Space=Unknown)

Data type: BOOLEAN
Default: ''
Optional: Yes
Call by Reference: Yes

I_XFULL_PROCESS -

Data type: BOOLEAN
Default: ''
Optional: Yes
Call by Reference: Yes

I_SIMU - Boolean Variable (X=True, -=False, Space=Unknown)

Data type: BOOLEAN
Default: ''
Optional: No
Call by Reference: Yes

I_BUSOBJ_TYPE - Business Object Category that Triggers Commission

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

I_BUSOBJ_ID - Identification of Triggering Business Object

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

I_TRI_OBJ_TYPE - Triggering Subobject Type

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

I_TRI_OBJ_ID_EXT - External Identification of Triggering Subobject

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

I_OTC - Object Type Class (OTC) for Logical Service

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

I_TOOL - Tools for Logical Service

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

EXPORTING Parameters details for CACS_FFLT_CHECK_NATIVE

E_FFL_FROM - From

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

E_FFL_TO - To

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

E_FFL - Fulfillment Level

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

CHANGING Parameters details for CACS_FFLT_CHECK_NATIVE

C_FLG_ERROR - Indicator: Commn Case Inconsistent (X = error, ' ' = ok)

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

C_LOG_HANDLE - Application Log: Log Handle

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

EXCEPTIONS details

INVALID_OBJECT_DATA -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CACS_FFLT_CHECK_NATIVE 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_fflguid  TYPE CACSGUIDC, "   
lv_e_ffl_from  TYPE CACSFROM, "   
lv_c_flg_error  TYPE CACSCASEERROR, "   
lv_invalid_object_data  TYPE CACSCASEERROR, "   
lv_i_called_frm_case  TYPE BOOLEAN, "   ''
lv_e_ffl_to  TYPE CACSTO, "   
lv_c_log_handle  TYPE BALLOGHNDL, "   
lv_i_xfull_process  TYPE BOOLEAN, "   ''
lv_e_ffl  TYPE CACSFFL, "   
lv_i_simu  TYPE BOOLEAN, "   ''
lv_i_busobj_type  TYPE CACSBUSOBJTYP, "   
lv_i_busobj_id  TYPE CACSBUSOBJID, "   
lv_i_tri_obj_type  TYPE CACSTRIOBJ, "   
lv_i_tri_obj_id_ext  TYPE CACSTRIOBJIDEXT, "   
lv_i_otc  TYPE CACS_LOS_OTC, "   
lv_i_tool  TYPE CACS_LOS_TOOL. "   

  CALL FUNCTION 'CACS_FFLT_CHECK_NATIVE'  "NOTRANSL: Starte Erfüllungsgradermittlung
    EXPORTING
         I_FFLGUID = lv_i_fflguid
         I_CALLED_FRM_CASE = lv_i_called_frm_case
         I_XFULL_PROCESS = lv_i_xfull_process
         I_SIMU = lv_i_simu
         I_BUSOBJ_TYPE = lv_i_busobj_type
         I_BUSOBJ_ID = lv_i_busobj_id
         I_TRI_OBJ_TYPE = lv_i_tri_obj_type
         I_TRI_OBJ_ID_EXT = lv_i_tri_obj_id_ext
         I_OTC = lv_i_otc
         I_TOOL = lv_i_tool
    IMPORTING
         E_FFL_FROM = lv_e_ffl_from
         E_FFL_TO = lv_e_ffl_to
         E_FFL = lv_e_ffl
    CHANGING
         C_FLG_ERROR = lv_c_flg_error
         C_LOG_HANDLE = lv_c_log_handle
    EXCEPTIONS
        INVALID_OBJECT_DATA = 1
. " CACS_FFLT_CHECK_NATIVE




ABAP code using 7.40 inline data declarations to call FM CACS_FFLT_CHECK_NATIVE

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_called_frm_case) = ''.
 
 
 
DATA(ld_i_xfull_process) = ''.
 
 
DATA(ld_i_simu) = ''.
 
 
 
 
 
 
 


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!