SAP FICO_LIST_GET_COND_OF_LIST Function Module for
FICO_LIST_GET_COND_OF_LIST is a standard fico list get cond of list 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 list get cond of list FM, simply by entering the name FICO_LIST_GET_COND_OF_LIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: FICOL0
Program Name: SAPLFICOL0
Main Program: SAPLFICOL0
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FICO_LIST_GET_COND_OF_LIST 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_LIST_GET_COND_OF_LIST'".
EXPORTING
I_LIST = "Condition List
* I_VALIDFROM = "Effective From
* I_LANGU = SY-LANGU "Language Key
* I_FLG_TECH_DESCR = "
* I_CMP_VALIDTO_IMPL = "
* I_FLG_DIFFTEXT = 'X' "Read Text for Differentiation
* I_FLG_AUTHCHECK = "Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
* I_T_STATUS = "Table for Status Selection
* I_MIN_VALID_FROM = G_CON_MINDATE "Minimum Value for Valid-From
* I_MAX_VALID_TO = G_CON_MAXDATE "Maximum Value for Valid-To
* I_STARTDATE = "Effective From
* I_CONDTYPE = "Condition Type
* I_AMT = "Currency of Amount Component
IMPORTING
E_T_AMT = "Table Type: Amount
E_T_DATEPOS = "Table Type: Deadline Item
E_T_RULE = "
E_APPL = "
E_RC = "Return Value, Return Value After ABAP Statements
E_T_AMTPOS = "Table Category: Amount Item
E_T_AMTPOSEXP = "Table Type: Interest and Interest Ref. Rates for Amount Item
E_T_POS_REL = "
E_T_CONDDIFF = "Differentiation
E_T_CONDDIFF_T = "Differentiations of a Condition with Texts
E_T_COND = "Table Category: Condition Table
E_T_COND_T = "Table Type: Texts for Conditions
E_T_DATE = "Table Type: Deadline
IMPORTING Parameters details for FICO_LIST_GET_COND_OF_LIST
I_LIST - Condition List
Data type: FICO_ILISTOptional: No
Call by Reference: Yes
I_VALIDFROM - Effective From
Data type: FICO_DVALIDFROMOptional: Yes
Call by Reference: Yes
I_LANGU - Language Key
Data type: SPRASDefault: SY-LANGU
Optional: No
Call by Reference: Yes
I_FLG_TECH_DESCR -
Data type: BOOLE_DOptional: Yes
Call by Reference: Yes
I_CMP_VALIDTO_IMPL -
Data type: BOOLE_DOptional: Yes
Call by Reference: Yes
I_FLG_DIFFTEXT - Read Text for Differentiation
Data type: BOOLE_DDefault: 'X'
Optional: No
Call by Reference: Yes
I_FLG_AUTHCHECK - Data Element for Domain BOOLE: TRUE (='X') and FALSE (=' ')
Data type: BOOLE_DOptional: Yes
Call by Reference: Yes
I_T_STATUS - Table for Status Selection
Data type: FICOT_STATUSOptional: Yes
Call by Reference: Yes
I_MIN_VALID_FROM - Minimum Value for Valid-From
Data type: FICO_DVALIDFROMDefault: G_CON_MINDATE
Optional: No
Call by Reference: Yes
I_MAX_VALID_TO - Maximum Value for Valid-To
Data type: FICO_DVALIDTODefault: G_CON_MAXDATE
Optional: No
Call by Reference: Yes
I_STARTDATE - Effective From
Data type: FICO_DVALIDFROMOptional: Yes
Call by Reference: Yes
I_CONDTYPE - Condition Type
Data type: FICO_OCONDTYPEOptional: Yes
Call by Reference: Yes
I_AMT - Currency of Amount Component
Data type: FICO_CAMTOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FICO_LIST_GET_COND_OF_LIST
E_T_AMT - Table Type: Amount
Data type: FICO_TYP_TAS_AMTOptional: No
Call by Reference: Yes
E_T_DATEPOS - Table Type: Deadline Item
Data type: FICO_TYP_TAS_DATEPOSOptional: No
Call by Reference: Yes
E_T_RULE -
Data type: FICO_TYP_TAS_CONDIT_RULE_SHORTOptional: No
Call by Reference: Yes
E_APPL -
Data type: FICO_OAPPLOptional: No
Call by Reference: Yes
E_RC - Return Value, Return Value After ABAP Statements
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
E_T_AMTPOS - Table Category: Amount Item
Data type: FICO_TYP_TAS_AMTPOSOptional: No
Call by Reference: Yes
E_T_AMTPOSEXP - Table Type: Interest and Interest Ref. Rates for Amount Item
Data type: FICO_TYP_TAS_AMTPOSEXPOptional: No
Call by Reference: Yes
E_T_POS_REL -
Data type: FICO_TYP_TAS_POS_REL_BUFFOptional: No
Call by Reference: Yes
E_T_CONDDIFF - Differentiation
Data type: FICO_TYP_TAS_CONDDIFFOptional: No
Call by Reference: Yes
E_T_CONDDIFF_T - Differentiations of a Condition with Texts
Data type: FICO_TYP_TAS_DIFF_DISPLAYOptional: No
Call by Reference: Yes
E_T_COND - Table Category: Condition Table
Data type: FICO_TYP_TAS_CONDOptional: No
Call by Reference: Yes
E_T_COND_T - Table Type: Texts for Conditions
Data type: FICO_TYP_TAS_COND_TOptional: No
Call by Reference: Yes
E_T_DATE - Table Type: Deadline
Data type: FICO_TYP_TAS_DATEOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FICO_LIST_GET_COND_OF_LIST 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_list | TYPE FICO_ILIST, " | |||
| lv_e_t_amt | TYPE FICO_TYP_TAS_AMT, " | |||
| lv_e_t_datepos | TYPE FICO_TYP_TAS_DATEPOS, " | |||
| lv_i_validfrom | TYPE FICO_DVALIDFROM, " | |||
| lv_i_langu | TYPE SPRAS, " SY-LANGU | |||
| lv_e_t_rule | TYPE FICO_TYP_TAS_CONDIT_RULE_SHORT, " | |||
| lv_e_appl | TYPE FICO_OAPPL, " | |||
| lv_i_flg_tech_descr | TYPE BOOLE_D, " | |||
| lv_e_rc | TYPE SY-SUBRC, " | |||
| lv_i_cmp_validto_impl | TYPE BOOLE_D, " | |||
| lv_e_t_amtpos | TYPE FICO_TYP_TAS_AMTPOS, " | |||
| lv_i_flg_difftext | TYPE BOOLE_D, " 'X' | |||
| lv_e_t_amtposexp | TYPE FICO_TYP_TAS_AMTPOSEXP, " | |||
| lv_i_flg_authcheck | TYPE BOOLE_D, " | |||
| lv_i_t_status | TYPE FICOT_STATUS, " | |||
| lv_e_t_pos_rel | TYPE FICO_TYP_TAS_POS_REL_BUFF, " | |||
| lv_e_t_conddiff | TYPE FICO_TYP_TAS_CONDDIFF, " | |||
| lv_i_min_valid_from | TYPE FICO_DVALIDFROM, " G_CON_MINDATE | |||
| lv_e_t_conddiff_t | TYPE FICO_TYP_TAS_DIFF_DISPLAY, " | |||
| lv_i_max_valid_to | TYPE FICO_DVALIDTO, " G_CON_MAXDATE | |||
| lv_e_t_cond | TYPE FICO_TYP_TAS_COND, " | |||
| lv_i_startdate | TYPE FICO_DVALIDFROM, " | |||
| lv_e_t_cond_t | TYPE FICO_TYP_TAS_COND_T, " | |||
| lv_i_condtype | TYPE FICO_OCONDTYPE, " | |||
| lv_i_amt | TYPE FICO_CAMT, " | |||
| lv_e_t_date | TYPE FICO_TYP_TAS_DATE. " |
|   CALL FUNCTION 'FICO_LIST_GET_COND_OF_LIST' " |
| EXPORTING | ||
| I_LIST | = lv_i_list | |
| I_VALIDFROM | = lv_i_validfrom | |
| I_LANGU | = lv_i_langu | |
| I_FLG_TECH_DESCR | = lv_i_flg_tech_descr | |
| I_CMP_VALIDTO_IMPL | = lv_i_cmp_validto_impl | |
| I_FLG_DIFFTEXT | = lv_i_flg_difftext | |
| I_FLG_AUTHCHECK | = lv_i_flg_authcheck | |
| I_T_STATUS | = lv_i_t_status | |
| I_MIN_VALID_FROM | = lv_i_min_valid_from | |
| I_MAX_VALID_TO | = lv_i_max_valid_to | |
| I_STARTDATE | = lv_i_startdate | |
| I_CONDTYPE | = lv_i_condtype | |
| I_AMT | = lv_i_amt | |
| IMPORTING | ||
| E_T_AMT | = lv_e_t_amt | |
| E_T_DATEPOS | = lv_e_t_datepos | |
| E_T_RULE | = lv_e_t_rule | |
| E_APPL | = lv_e_appl | |
| E_RC | = lv_e_rc | |
| E_T_AMTPOS | = lv_e_t_amtpos | |
| E_T_AMTPOSEXP | = lv_e_t_amtposexp | |
| E_T_POS_REL | = lv_e_t_pos_rel | |
| E_T_CONDDIFF | = lv_e_t_conddiff | |
| E_T_CONDDIFF_T | = lv_e_t_conddiff_t | |
| E_T_COND | = lv_e_t_cond | |
| E_T_COND_T | = lv_e_t_cond_t | |
| E_T_DATE | = lv_e_t_date | |
| . " FICO_LIST_GET_COND_OF_LIST | ||
ABAP code using 7.40 inline data declarations to call FM FICO_LIST_GET_COND_OF_LIST
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_langu) | = SY-LANGU. | |||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_e_rc). | ||||
| DATA(ld_i_flg_difftext) | = 'X'. | |||
| DATA(ld_i_min_valid_from) | = G_CON_MINDATE. | |||
| DATA(ld_i_max_valid_to) | = G_CON_MAXDATE. | |||
Search for further information about these or an SAP related objects