Search Results fee_category
Overview
IGS_FI_F_TYP_CA_INST_V is a VALID Oracle E-Business Suite database view owned by the APPS schema within the IGS (Student System) product family. It is documented in ETRM 12.2.2 and is available in both the 12.1.1 and 12.2.2 releases. Its stated purpose is to consolidate the Fee Calendar Instance tables — specifically FEE_TYPE_CAL_INSTANCE, FEE_CAT_CAL_INSTANCE, and FEE_CAT_FEE_LIABILITY — into a single, uniformly shaped result set. This structure enables a common context block in the Oracle Forms screen FINF2860, where users maintain fee type, fee category, and fee liability calendar instance data within one form. For reporting and integration purposes the view provides a normalized projection of fee calendar configuration that can be queried without navigating three separate base tables. Because the view exposes the fee calendar type, sequence number, and the fee type or fee category discriminator, it functions as a lightweight reference for fee calendar setup validation, data migration checks, and operational reporting on Student System fee configuration.
Underlying Base Objects
Three IGS base tables are referenced in the view definition, combined via UNION (not UNION ALL):
- IGS_FI_F_TYP_CA_INST — source of fee type calendar instance rows (aliased FTCI).
- IGS_FI_F_CAT_CA_INST — source of fee category calendar instance rows (aliased FCCI).
- IGS_FI_F_CAT_FEE_LBL — source of fee category to fee liability rows (aliased FCFL).
In each branch the columns not applicable to that source are projected as NULL literals, preserving a common nine-column shape. The first branch selects NULL for FEE_CATEGORY, the second selects NULL for FEE_TYPE, and the third populates both FEE_TYPE and FEE_CATEGORY from FEE_CAT_FEE_LBL. All three branches carry the standard WHO audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN). No other referenced base objects are documented in the ETRM metadata. The UNION de-duplicates identical rows across branches, which is significant when interpreting result counts.
Key Columns
- FEE_CAL_TYPE — the fee calendar type, the primary grouping attribute of a fee calendar instance.
- FEE_CI_SEQUENCE_NUMBER — the calendar instance sequence, identifying a specific instance of the fee calendar type.
- FEE_TYPE — populated from fee type calendar instance and fee liability rows; NULL on pure fee category calendar instance rows.
- FEE_CATEGORY — populated from fee category calendar instance and fee liability rows; aliased from the FEE_CAT column in the source tables and NULL on pure fee type rows.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE / LAST_UPDATE_LOGIN — standard audit columns inherited from each source table.
A row where both FEE_TYPE and FEE_CATEGORY are populated originates from IGS_FI_F_CAT_FEE_LBL and represents a liability relationship; a row with only FEE_TYPE originates from IGS_FI_F_TYP_CA_INST; a row with only FEE_CATEGORY originates from IGS_FI_F_CAT_CA_INST.
Common Use Cases and Queries
Typical uses include validating that fee calendar instances exist for a given fee calendar type, driving LOV-style queries in custom forms or concurrent programs, and reconciling fee type, fee category, and liability configuration across the three base tables. The following example lists all instance rows for a specific fee calendar type with an explicit row-type indicator:
SELECT fee_cal_type, fee_ci_sequence_number, fee_type, fee_category, CASE WHEN fee_type IS NOT NULL AND fee_category IS NOT NULL THEN 'LIABILITY' WHEN fee_type IS NOT NULL THEN 'FEE_TYPE' ELSE 'FEE_CATEGORY' END row_source FROM igs_fi_f_typ_ca_inst_v WHERE fee_cal_type = :p_cal_type ORDER BY fee_ci_sequence_number;- To isolate configuration for a specific fee category:
SELECT fee_cal_type, fee_ci_sequence_number, fee_type FROM igs_fi_f_typ_ca_inst_v WHERE fee_category = :p_fee_cat; - To audit recent maintenance on fee liability rows:
SELECT fee_cal_type, fee_ci_sequence_number, fee_type, fee_category, last_updated_by, last_update_date FROM igs_fi_f_typ_ca_inst_v WHERE fee_type IS NOT NULL AND fee_category IS NOT NULL AND last_update_date > SYSDATE - 30;
Because the view is a UNION over three tables, queries should always include a predicate on FEE_CAL_TYPE or a discriminator column to constrain the result set; unrestricted full scans can be costly. The view is read-only and should not be the target of DML.
-
Lookup Type: FEE_CATEGORY
12.2.2
product: LNS - Loans , meaning: Fee Category , description: Fee Category ,
-
Lookup Type: FEE_CATEGORY
12.1.1
product: LNS - Loans , meaning: Fee Category , description: Fee Category ,
-
View: IGS_FI_F_TYP_CA_INST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_TYP_CA_INST_V, object_name:IGS_FI_F_TYP_CA_INST_V, status:VALID, product: IGS - Student System , description: View used for Fee Calendar Instance tables. Used to bring together the following 3 tables : FEE_TYPE_CAL_INSTANCE FEE_CAT_CAL_INSTANCE FEE_CAT_FEE_LIABILITY Used to enable a common context block in form FINF2860. , implementation_dba_data: APPS.IGS_FI_F_TYP_CA_INST_V ,
-
VIEW: APPS.IGS_FI_F_TYP_CA_INST_V
12.1.1
-
View: IGS_FI_F_TYP_CA_INST_V
12.2.2
product: IGS - Student System (Obsolete) , description: View used for Fee Calendar Instance tables. Used to bring together the following 3 tables : FEE_TYPE_CAL_INSTANCE FEE_CAT_CAL_INSTANCE FEE_CAT_FEE_LIABILITY Used to enable a common context block in form FINF2860. , implementation_dba_data: Not implemented in this database ,
-
VIEW: LNS.LNS_FEES_ALL#
12.2.2
-
VIEW: APPS.IGS_FI_F_TYP_CA_INST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_F_TYP_CA_INST_V, object_name:IGS_FI_F_TYP_CA_INST_V, status:VALID,
-
TABLE: LNS.LNS_FEES_ALL
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_FEES_ALL, object_name:LNS_FEES_ALL, status:VALID,
-
VIEW: APPS.IGSBV_ADM_FEE_CAT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ADM_FEE_CAT, object_name:IGSBV_ADM_FEE_CAT, status:VALID,
-
VIEW: APPS.IGS_CA_TEACH_RET_CTX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TEACH_RET_CTX_V, object_name:IGS_CA_TEACH_RET_CTX_V, status:VALID,
-
VIEW: LNS.LNS_FEES_ALL#
12.2.2
owner:LNS, object_type:VIEW, object_name:LNS_FEES_ALL#, status:VALID,
-
TABLE: LNS.LNS_FEES_ALL
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_FEES_ALL, object_name:LNS_FEES_ALL, status:VALID,
-
View: IGSBV_ADM_FEE_CAT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ADM_FEE_CAT, object_name:IGSBV_ADM_FEE_CAT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSBV_ADM_FEE_CAT ,
-
APPS.LNS_SAMPLE_HOOKS SQL Statements
12.2.2
-
View: IGSFV_ADM_FEE_CAT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_ADM_FEE_CAT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ADM_FEE_CAT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ADM_FEE_CAT, object_name:IGSFV_ADM_FEE_CAT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_ADM_FEE_CAT ,
-
VIEW: APPS.IGSFV_ADM_FEE_CAT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ADM_FEE_CAT, object_name:IGSFV_ADM_FEE_CAT, status:VALID,
-
View: IGSBV_STUDENT_PROGRAM_TERMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PROGRAM_TERMS, object_name:IGSBV_STUDENT_PROGRAM_TERMS, status:VALID, product: IGS - Student System , description: This view lists program attempt attributes based on Term Calendar. , implementation_dba_data: APPS.IGSBV_STUDENT_PROGRAM_TERMS ,
-
View: IGS_CA_TEACH_RET_CTX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_TEACH_RET_CTX_V, object_name:IGS_CA_TEACH_RET_CTX_V, status:VALID, product: IGS - Student System , description: View to query teaching calendars. The view structure will be same as view IGS_FI_F_TYP_CA_INST_V. , implementation_dba_data: APPS.IGS_CA_TEACH_RET_CTX_V ,
-
View: IGSBV_STUDENT_PROGRAM_TERMS
12.2.2
product: IGS - Student System (Obsolete) , description: This view lists program attempt attributes based on Term Calendar. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_CA_TEACH_RET_CTX_V
12.2.2
product: IGS - Student System (Obsolete) , description: View to query teaching calendars. The view structure will be same as view IGS_FI_F_TYP_CA_INST_V. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_STUDENT_PROGRAM_TERMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PROGRAM_TERMS, object_name:IGSBV_STUDENT_PROGRAM_TERMS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
View: IGSBV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CHARGES, object_name:IGSBV_PARTY_CHARGES, status:VALID, product: IGS - Student System , description: Contains details of charges for a person , implementation_dba_data: APPS.IGSBV_PARTY_CHARGES ,
-
View: IGSBV_PARTY_CHARGES
12.2.2
product: IGS - Student System (Obsolete) , description: Contains details of charges for a person , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
View: IGSFV_STUDENT_PROGRAM_TERMS
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_STUDENT_PROGRAM_TERMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUDENT_PROGRAM_TERMS, object_name:IGSFV_STUDENT_PROGRAM_TERMS, status:VALID,
-
View: IGSBV_STUDENT_PROGRAM_ATTEMPTS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes a student's attempt at studying a particular course offered by the university. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_PARTY_CHARGES, object_name:IGSBV_PARTY_CHARGES, status:VALID,
-
View: IGSBV_STUDENT_PROGRAM_ATTEMPTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PROGRAM_ATTEMPTS, object_name:IGSBV_STUDENT_PROGRAM_ATTEMPTS, status:VALID, product: IGS - Student System , description: This entity describes a student's attempt at studying a particular course offered by the university. , implementation_dba_data: APPS.IGSBV_STUDENT_PROGRAM_ATTEMPTS ,
-
View: IGSFV_STUDENT_PROGRAM_TERMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUDENT_PROGRAM_TERMS, object_name:IGSFV_STUDENT_PROGRAM_TERMS, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_STUDENT_PROGRAM_TERMS ,
-
View: IGSFV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_CHARGES, object_name:IGSFV_PARTY_CHARGES, status:VALID, product: IGS - Student System , description: Contains details of charges for a person , implementation_dba_data: APPS.IGSFV_PARTY_CHARGES ,
-
View: IGSBV_AD_ADM_PS_APPL_INST
12.2.2
product: IGS - Student System (Obsolete) , description: Holds Information about Admission Application Program Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AD_ADM_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ADM_PS_APPL_INST, object_name:IGSBV_AD_ADM_PS_APPL_INST, status:VALID, product: IGS - Student System , description: Holds Information about Admission Application Program Details , implementation_dba_data: APPS.IGSBV_AD_ADM_PS_APPL_INST ,
-
VIEW: APPS.IGSBV_AD_ADM_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AD_ADM_PS_APPL_INST, object_name:IGSBV_AD_ADM_PS_APPL_INST, status:VALID,
-
TABLE: IGS.IGS_FI_COM_RECS_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_COM_RECS_INT, object_name:IGS_FI_COM_RECS_INT, status:VALID,
-
View: IGSFV_STUDENT_PROGRAM_ATTEMPTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUDENT_PROGRAM_ATTEMPTS, object_name:IGSFV_STUDENT_PROGRAM_ATTEMPTS, status:VALID, product: IGS - Student System , description: This entity describes a student's attempt at studying a particular course offered by the university. , implementation_dba_data: APPS.IGSFV_STUDENT_PROGRAM_ATTEMPTS ,
-
VIEW: APPS.IGSFV_PARTY_CHARGES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PARTY_CHARGES, object_name:IGSFV_PARTY_CHARGES, status:VALID,
-
View: IGSFV_PARTY_CHARGES
12.2.2
product: IGS - Student System (Obsolete) , description: Contains details of charges for a person , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.LNS_FEE_ENGINE
12.1.1
-
View: IGSFV_STUDENT_PROGRAM_ATTEMPTS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes a student's attempt at studying a particular course offered by the university. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_COM_RECS_INT_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.LNS_FEE_ENGINE
12.2.2
-
APPS.LNS_REP_UTILS SQL Statements
12.1.1
-
VIEW: APPS.IGSBV_STUDENT_PROGRAM_ATTEMPTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PROGRAM_ATTEMPTS, object_name:IGSBV_STUDENT_PROGRAM_ATTEMPTS, status:VALID,
-
PACKAGE BODY: APPS.LNS_FEE_ENGINE
12.1.1
-
View: IGSFV_AD_ADM_PS_APPL_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AD_ADM_PS_APPL_INST, object_name:IGSFV_AD_ADM_PS_APPL_INST, status:VALID, product: IGS - Student System , description: Describes the request for program Entry for an Admission period , implementation_dba_data: APPS.IGSFV_AD_ADM_PS_APPL_INST ,
-
View: IGSFV_AD_ADM_PS_APPL_INST
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the request for program Entry for an Admission period , implementation_dba_data: Not implemented in this database ,