SAP FICO_COND_CHECK_COMP Function Module for









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

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



Function FICO_COND_CHECK_COMP 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_COND_CHECK_COMP'"
EXPORTING
I_APPL = "Application
I_FLG_ACCUM_CURR = "Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
* I_S_COND_T = "Texts for Conditions (Unbuffered)
* I_LANGU = SY-LANGU "Language Key
* I_T_DATECATG = "
* I_USEDUNTIL = "

IMPORTING
E_FLG_UPDATE_POSNO = "
E_RC = "Return Value, Return Value After ABAP Statements

CHANGING
C_S_CONDI = "
C_T_POS = "Items of the Conditions with Buffering Flag
* C_T_POS_REL = "
C_T_RETURN = "Return Table
.



IMPORTING Parameters details for FICO_COND_CHECK_COMP

I_APPL - Application

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

I_FLG_ACCUM_CURR - Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')

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

I_S_COND_T - Texts for Conditions (Unbuffered)

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

I_LANGU - Language Key

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

I_T_DATECATG -

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

I_USEDUNTIL -

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

EXPORTING Parameters details for FICO_COND_CHECK_COMP

E_FLG_UPDATE_POSNO -

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

E_RC - Return Value, Return Value After ABAP Statements

Data type: SY-SUBRC
Optional: No
Call by Reference: Yes

CHANGING Parameters details for FICO_COND_CHECK_COMP

C_S_CONDI -

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

C_T_POS - Items of the Conditions with Buffering Flag

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

C_T_POS_REL -

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

C_T_RETURN - Return Table

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

Copy and paste ABAP code example for FICO_COND_CHECK_COMP 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_appl  TYPE FICO_OAPPL, "   
lv_c_s_condi  TYPE FICOS_CONDI_BUFF, "   
lv_e_flg_update_posno  TYPE FLAG, "   
lv_e_rc  TYPE SY-SUBRC, "   
lv_c_t_pos  TYPE FICO_TYP_TAS_POS_BUFF, "   
lv_i_flg_accum_curr  TYPE BOOLE_D, "   
lv_i_s_cond_t  TYPE FICOT_COND_T, "   
lv_c_t_pos_rel  TYPE FICO_TYP_TAS_POS_REL_BUFF, "   
lv_i_langu  TYPE SPRAS, "   SY-LANGU
lv_c_t_return  TYPE BAPIRET2_T, "   
lv_i_t_datecatg  TYPE FICO_TYP_TAB_DATECATG_1, "   
lv_i_useduntil  TYPE FICO_DUSEDUNTIL. "   

  CALL FUNCTION 'FICO_COND_CHECK_COMP'  "
    EXPORTING
         I_APPL = lv_i_appl
         I_FLG_ACCUM_CURR = lv_i_flg_accum_curr
         I_S_COND_T = lv_i_s_cond_t
         I_LANGU = lv_i_langu
         I_T_DATECATG = lv_i_t_datecatg
         I_USEDUNTIL = lv_i_useduntil
    IMPORTING
         E_FLG_UPDATE_POSNO = lv_e_flg_update_posno
         E_RC = lv_e_rc
    CHANGING
         C_S_CONDI = lv_c_s_condi
         C_T_POS = lv_c_t_pos
         C_T_POS_REL = lv_c_t_pos_rel
         C_T_RETURN = lv_c_t_return
. " FICO_COND_CHECK_COMP




ABAP code using 7.40 inline data declarations to call FM FICO_COND_CHECK_COMP

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.

 
 
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_e_rc).
 
 
 
 
 
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!