Search Results igs_fi_gen_001
Overview
APPS.IGS_FI_F_CAT_FEE_LBL_V is a financials view within the Oracle E-Business Suite (EBS) Student System (IGS) schema, specifically belonging to the Fees and Charges (IGS_FI) functional area. It exposes a consolidated, label-resolved representation of fee category configuration for a given fee calendar type, fee calendar instance, and fee type combination. Its principal role is to present student fee configuration data in a form suitable for reporting, concurrent processing, and integration with downstream fee calculation and billing logic.
The view is particularly significant because it resolves aliases and sequencing attributes for date indicators — start, end, and retroactive — by invoking the database function IGS_FI_GEN_001.finp_get_fcfl_dai. This function derives the applicable Date Alias Instance (DAI) attributes when they are not explicitly stored on the underlying configuration record. As a result, the view provides a complete, self-sufficient picture of fee labelling and scheduling semantics without requiring callers to implement their own resolution logic.
The name IGS_FI_F_CAT_FEE_LBL_V indicates its purpose: a Fees (F) Calendar (CAT) Fee (FEE) Label (LBL) View (V). It is a read-only object; no DML should be issued against it.
Underlying Base Objects
The ETRM metadata for this object documents no explicitly referenced base objects, classifying the referenced base object list as empty. However, the view text itself reveals its dependencies. The primary base object is the fee calendar fee liability table (aliased fcfl), which supplies fee category, fee calendar type, fee calendar instance sequence number, fee type, fee liability status, change method type, rule sequence number, payment hierarchy rank, currency derivation inputs, and audit columns. A secondary source, aliased ftci (the fee type calendar instance table), contributes fallback values for s_chg_method_type, rul_sequence_number, payment_hierarchy_rank, and scope through NVL expressions.
In addition, the view depends on the PL/SQL function IGS_FI_GEN_001.finp_get_fcfl_dai, which is called three times to resolve start, end, and retroactive date alias and DAI sequence values. It also calls IGS_FI_GEN_001.finp_get_currency to obtain the applicable currency code for each fee configuration row. These dependencies mean the view's performance is influenced by the efficiency of those functions, and any change to their signatures or behaviour can affect view results.
Key Columns
- FEE_CAT, fee_cal_type, fee_ci_sequence_number, FEE_TYPE — the composite key identifying the fee category, calendar type, calendar instance, and fee type.
- start_dt_alias, start_dai_sequence_number — resolved start date alias and its sequence number. The NVL fallback invokes finp_get_fcfl_dai with 'START_DT_ALIAS' and 'START_DAI_SEQUENCE_NUMBER'.
- end_dt_alias, end_dai_sequence_number — end date alias and its sequence number, resolved via the same function using the 'END_DT_ALIAS' and 'END_DAI_SEQUENCE_NUMBER' parameters.
- retro_dt_alias, retro_dai_sequence_number — retroactive date alias and its sequence number, resolved using 'RETRO_DT_ALIAS' and 'RETRO_DAI_SEQUENCE_NUMBER'.
- s_chg_method_type, rul_sequence_number, payment_hierarchy_rank — change method, rule sequence, and payment hierarchy, each falling back to the ftci source when the fcfl value is null.
- currency_cd — the currency code derived through finp_get_currency and truncated to 15 characters.
- SCOPE — sourced from the ftci object, indicating the scope of the fee configuration.
- created_by, creation_date, last_updated_by, last_update_date, last_update_login — standard audit columns for change tracking.
Common Use Cases and Queries
A typical application of this view is to report fee configuration with fully resolved date aliases, particularly when auditing which date alias and sequence number governs a fee's start, end, or retroactive application — the exact concern raised by the search term start_dai_sequence_number.
Sample query to list resolved date indicator data for a fee:
SELECT fee_cat, fee_cal_type, fee_ci_sequence_number, fee_type, start_dt_alias, start_dai_sequence_number, end_dt_alias, end_dai_sequence_number FROM apps.igs_fi_f_cat_fee_lbl_v WHERE fee_cal_type = :p_cal_type AND fee_ci_sequence_number = :p_seq;
This view is also useful for validating that fallback resolution logic produces the expected aliases when the stored fcfl values are null, and for populating integration payloads where currency, payment hierarchy, and change method must accompany the fee definition.
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_V
12.1.1
-
View: IGS_FI_F_CAT_FEE_LBL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_CAT_FEE_LBL_V, object_name:IGS_FI_F_CAT_FEE_LBL_V, status:VALID, product: IGS - Student System , description: This view represents the columns of the fee_cat_fee_liability table as well as including columns representing the s_chg_method_type, rul_sequence_number and start, end and retro date alias's that are applicable. These other columns may be t , implementation_dba_data: APPS.IGS_FI_F_CAT_FEE_LBL_V ,
-
View: IGS_FI_F_CAT_FEE_LBL_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view represents the columns of the fee_cat_fee_liability table as well as including columns representing the s_chg_method_type, rul_sequence_number and start, end and retro date alias's that are applicable. These other columns may be t , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_FEE_RET_SCHD_V
12.1.1
-
SYNONYM: APPS.IGS_FI_FEE_CAT_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_FEE_CAT_ALL, status:VALID,
-
SYNONYM: APPS.IGS_FI_F_TYP_CA_INST_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_F_TYP_CA_INST_ALL, status:VALID,
-
SYNONYM: APPS.IGS_FI_FEE_RET_SCHD
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_FEE_RET_SCHD, status:VALID,
-
SYNONYM: APPS.IGS_FI_F_CAT_FEE_LBL_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_F_CAT_FEE_LBL_ALL, status:VALID,
-
SYNONYM: APPS.IGS_FI_F_CAT_CA_INST
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_F_CAT_CA_INST, status:VALID,
-
VIEW: APPS.IGS_FI_FEE_AS_RATE_F_TYPE_V
12.1.1
-
PACKAGE BODY: APPS.IGS_FI_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_GEN_001, status:VALID,
-
View: IGS_FI_FEE_RET_SCHD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_RET_SCHD_V, object_name:IGS_FI_FEE_RET_SCHD_V, status:VALID, product: IGS - Student System , description: This view represents the columns of the fee_retention_schedule table as well as including columns representing the start and end period for each schedule entry. , implementation_dba_data: APPS.IGS_FI_FEE_RET_SCHD_V ,
-
View: IGS_FI_FEE_RET_SCHD_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view represents the columns of the fee_retention_schedule table as well as including columns representing the start and end period for each schedule entry. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_PS_COURSE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_COURSE, status:VALID,
-
VIEW: APPS.IGS_FI_FEE_ASS_DEBT_V
12.1.1
-
PACKAGE: APPS.IGS_FI_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_FI_GEN_001, status:VALID,
-
View: IGS_FI_FEE_AS_RATE_F_TYPE_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_ELM_RANGE_RT_V
12.1.1
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.1.1
-
SYNONYM: APPS.IGS_FI_FEE_TYPE_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_FEE_TYPE_ALL, status:VALID,
-
View: IGS_FI_FEE_AS_RATE_F_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_FEE_AS_RATE_F_TYPE_V, object_name:IGS_FI_FEE_AS_RATE_F_TYPE_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_FEE_AS_RATE_F_TYPE_V ,
-
VIEW: APPS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.1.1
-
SYNONYM: APPS.IGS_FI_FEE_TRG_GRP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_FEE_TRG_GRP, status:VALID,
-
VIEW: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_V
12.1.1
-
View: IGS_FI_ELM_RANGE_RT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_ELM_RANGE_RT_V, object_name:IGS_FI_ELM_RANGE_RT_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_ELM_RANGE_RT_V ,
-
SYNONYM: APPS.IGS_EN_STDNTPSHECSOP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_STDNTPSHECSOP, status:VALID,
-
SYNONYM: APPS.IGS_PS_GRP_FEE_TRG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_GRP_FEE_TRG, status:VALID,
-
View: IGS_FI_ELM_RANGE_RT_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_FI_PARTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_PARTIES_V, object_name:IGS_FI_PARTIES_V, status:VALID,
-
SYNONYM: APPS.IGS_PS_TYPE_FEE_TRG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_TYPE_FEE_TRG, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FAS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FAS, status:VALID,
-
SYNONYM: APPS.IGS_EN_UNITSETFEETRG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_UNITSETFEETRG, status:VALID,
-
SYNONYM: APPS.IGS_FI_UNIT_FEE_TRG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_UNIT_FEE_TRG, status:VALID,
-
SYNONYM: APPS.IGS_PS_FEE_TRG
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_FEE_TRG, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_VAL_FTCI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_VAL_FTCI, status:VALID,
-
PACKAGE BODY: APPS.IGS_ST_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_ST_GEN_003, status:VALID,
-
SYNONYM: APPS.IGS_EN_STDNT_PS_ATT_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_STDNT_PS_ATT_ALL, status:VALID,
-
View: IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_FI_FEE_AS_RATE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_FEE_AS_RATE, status:VALID,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance) for even the prior fee calendars. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_FI_WAV_DTLS_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_WAV_DTLS_WF, status:VALID,
-
View: IGS_FI_CNG_FCAT_LBL_SCA_PR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V, object_name:IGS_FI_CNG_FCAT_LBL_SCA_PR_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_CNG_FCAT_LBL_SCA_PR_V ,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V, object_name:IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V, status:VALID, product: IGS - Student System , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance) for even the prior fee calendars. , implementation_dba_data: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_PRR_V ,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_CAT_FEE_LBL_SCA_V, object_name:IGS_FI_F_CAT_FEE_LBL_SCA_V, status:VALID, product: IGS - Student System , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance). , implementation_dba_data: APPS.IGS_FI_F_CAT_FEE_LBL_SCA_V ,
-
SYNONYM: APPS.IGS_PS_GRP_MBR
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_GRP_MBR, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_GEN_008
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_GEN_008, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_PRC_FIN_LT_CHG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_FIN_LT_CHG, status:VALID,
-
View: IGS_FI_F_CAT_FEE_LBL_SCA_V
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the fee types applicable to a fee category period (fee category calendar instance). , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_FI_PRC_STDNT_DPSTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_STDNT_DPSTS, status:VALID,
-
PACKAGE BODY: APPS.IGS_FI_PRC_APPL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_PRC_APPL, status:VALID,