SAP FICO_COMP_CHECK_RULESET_FLDMOD Function Module for









FICO_COMP_CHECK_RULESET_FLDMOD is a standard fico comp check ruleset fldmod 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 fico comp check ruleset fldmod FM, simply by entering the name FICO_COMP_CHECK_RULESET_FLDMOD into the relevant SAP transaction such as SE37 or SE38.

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



Function FICO_COMP_CHECK_RULESET_FLDMOD 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 'FICO_COMP_CHECK_RULESET_FLDMOD'"
EXPORTING
I_LIST = "
* I_T_STATUS = "
I_GRP = "
* I_RELEASE_PROC = "
* I_MIN_VALID_FROM = G_CON_MINDATE "
* I_MAX_VALID_TO = G_CON_MAXDATE "
* I_LANGU = SY-LANGU "
I_REF_RUNTIME_FLD_CONTROL = "
* I_S_INTRINSIC_FLDCTRL = "
IS_COND = "
I_T_AMT = "
I_T_AMTPOS = "
I_T_AMTPOSEXP = "
I_T_DATE = "
I_T_DATEPOS = "
* I_USEDUNTIL = "
* I_LISTTYPE = "

CHANGING
C_RC = "
C_T_RETURN = "
.



IMPORTING Parameters details for FICO_COMP_CHECK_RULESET_FLDMOD

I_LIST -

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

I_T_STATUS -

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

I_GRP -

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

I_RELEASE_PROC -

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

I_MIN_VALID_FROM -

Data type: FICO_DVALIDFROM
Default: G_CON_MINDATE
Optional: No
Call by Reference: Yes

I_MAX_VALID_TO -

Data type: FICO_DVALIDTO
Default: G_CON_MAXDATE
Optional: No
Call by Reference: Yes

I_LANGU -

Data type: SPRAS
Default: SY-LANGU
Optional: No
Call by Reference: Yes

I_REF_RUNTIME_FLD_CONTROL -

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

I_S_INTRINSIC_FLDCTRL -

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

IS_COND -

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

I_T_AMT -

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

I_T_AMTPOS -

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

I_T_AMTPOSEXP -

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

I_T_DATE -

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

I_T_DATEPOS -

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

I_USEDUNTIL -

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

I_LISTTYPE -

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

CHANGING Parameters details for FICO_COMP_CHECK_RULESET_FLDMOD

C_RC -

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

C_T_RETURN -

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

Copy and paste ABAP code example for FICO_COMP_CHECK_RULESET_FLDMOD 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_c_rc  TYPE SYSUBRC, "   
lv_i_list  TYPE FICO_ILIST, "   
lv_i_t_status  TYPE FICOT_STATUS, "   
lv_i_grp  TYPE FICO_IGRP, "   
lv_i_release_proc  TYPE BOOLE_D, "   
lv_i_min_valid_from  TYPE FICO_DVALIDFROM, "   G_CON_MINDATE
lv_i_max_valid_to  TYPE FICO_DVALIDTO, "   G_CON_MAXDATE
lv_i_langu  TYPE SPRAS, "   SY-LANGU
lv_i_ref_runtime_fld_control  TYPE CL_FICO_RUNTIME_FLD_CONTROL, "   
lv_i_s_intrinsic_fldctrl  TYPE FICOS_INTRINSIC_FLDCTRL, "   
lv_is_cond  TYPE FICOT_COND, "   
lv_c_t_return  TYPE BAPIRET2_T, "   
lv_i_t_amt  TYPE FICO_TYP_TAS_AMT, "   
lv_i_t_amtpos  TYPE FICO_TYP_TAS_AMTPOS, "   
lv_i_t_amtposexp  TYPE FICO_TYP_TAS_AMTPOSEXP, "   
lv_i_t_date  TYPE FICO_TYP_TAS_DATE, "   
lv_i_t_datepos  TYPE FICO_TYP_TAS_DATEPOS, "   
lv_i_useduntil  TYPE FICO_DUSEDUNTIL, "   
lv_i_listtype  TYPE FICO_OLISTTYP. "   

  CALL FUNCTION 'FICO_COMP_CHECK_RULESET_FLDMOD'  "
    EXPORTING
         I_LIST = lv_i_list
         I_T_STATUS = lv_i_t_status
         I_GRP = lv_i_grp
         I_RELEASE_PROC = lv_i_release_proc
         I_MIN_VALID_FROM = lv_i_min_valid_from
         I_MAX_VALID_TO = lv_i_max_valid_to
         I_LANGU = lv_i_langu
         I_REF_RUNTIME_FLD_CONTROL = lv_i_ref_runtime_fld_control
         I_S_INTRINSIC_FLDCTRL = lv_i_s_intrinsic_fldctrl
         IS_COND = lv_is_cond
         I_T_AMT = lv_i_t_amt
         I_T_AMTPOS = lv_i_t_amtpos
         I_T_AMTPOSEXP = lv_i_t_amtposexp
         I_T_DATE = lv_i_t_date
         I_T_DATEPOS = lv_i_t_datepos
         I_USEDUNTIL = lv_i_useduntil
         I_LISTTYPE = lv_i_listtype
    CHANGING
         C_RC = lv_c_rc
         C_T_RETURN = lv_c_t_return
. " FICO_COMP_CHECK_RULESET_FLDMOD




ABAP code using 7.40 inline data declarations to call FM FICO_COMP_CHECK_RULESET_FLDMOD

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_min_valid_from) = G_CON_MINDATE.
 
DATA(ld_i_max_valid_to) = G_CON_MAXDATE.
 
DATA(ld_i_langu) = SY-LANGU.
 
 
 
 
 
 
 
 
 
 
 
 


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!