Search Results bal_exc_fee_type_id




Overview

The IGS_FI_BAL_EX_F_TYPS table is a configuration table within the Oracle E-Business Suite (EBS) R12.1.1 and R12.2.2, specifically for the Oracle Student Financials module. Its primary role is to manage exclusions for financial balance calculations. The table stores a list of specific fee types that the system must ignore when calculating a student's outstanding financial balance according to a defined balance rule. This functionality is critical for ensuring that certain charges, such as deposits or non-receivable fees, do not incorrectly inflate a student's calculated debt, thereby supporting accurate financial reporting, dunning processes, and account holds.

Key Information Stored

The table's structure is designed to map exclusion rules to specific fee types. The key columns include:

The presence of unique indexes on both the primary key and the combination of BALANCE_RULE_ID and FEE_TYPE enforces data integrity, preventing duplicate exclusions for the same rule and fee type.

Common Use Cases and Queries

This table is central to configuring precise financial logic. A common use case is defining a balance rule for "Tuition and Required Fees" that explicitly excludes incidental fees like library fines or application processing fees. Administrators would insert records into this table to establish those exclusions. For reporting and troubleshooting, typical queries involve joining to related tables to see the full context of exclusions. For example, to list all active fee type exclusions for a specific balance rule named 'TUITION_RULE':

SELECT ex.bal_exc_fee_type_id,
r.balance_rule_cd,
ex.fee_type,
ft.description
FROM igs_fi_bal_ex_f_typs ex,
igs_fi_balance_rules r,
igs_fi_fee_type ft
WHERE ex.balance_rule_id = r.balance_rule_id
AND ex.fee_type = ft.fee_type
AND r.balance_rule_cd = 'TUITION_RULE';

Another critical query pattern validates data integrity by finding fee types in the exclusion table that may not exist in the master fee type table, which would indicate a configuration issue.

Related Objects

The IGS_FI_BAL_EX_F_TYPS table has defined relationships with other key Student Financials tables, forming a core part of the balance calculation configuration.

  • Primary Key Reference: The table's primary key (BAL_EXC_FEE_TYPE_ID) is referenced by other objects within the APPS schema, as indicated in the dependencies.
  • Foreign Key References (Outgoing):
    • IGS_FI_BALANCE_RULES: via the BALANCE_RULE_ID column. This joins to the master table defining the balance calculation rule.
    • IGS_FI_FEE_TYPE_ALL: via the FEE_TYPE column. This joins to the master table defining all valid fee types in the system.

This structure ensures that exclusions are always defined within the context of a valid balance rule and against a valid, existing fee type, maintaining configuration accuracy.