Search Results igs_fi_bal_ex_c_typs
Overview
The table IGS_FI_BAL_EX_C_TYPS is a configuration table within the Oracle E-Business Suite Student System (IGS) module, specifically for Release 12.1.1 and 12.2.2. Its primary function is to support the financial balance calculation engine by defining exceptions. The table stores a list of specific credit types that the system must exclude or ignore when calculating a student's financial balance. This allows institutions to implement nuanced financial rules, ensuring that certain types of credits, such as promotional waivers or non-monetary adjustments, do not artificially inflate or reduce a calculated receivable balance. It acts as a critical child table to the broader balance rule definitions.
Key Information Stored
The table's structure is designed to link a balance rule with the credit types to be excluded. The key columns are:
- BAL_EXC_CREDIT_TYPE_ID: The primary key surrogate identifier for each record in this table.
- BALANCE_RULE_ID: A foreign key column linking to the IGS_FI_BALANCE_RULES table. This identifies the specific financial balance rule for which the exclusion is defined.
- CREDIT_TYPE_ID: A foreign key column linking to the IGS_FI_CR_TYPES_ALL table. This identifies the precise type of credit (e.g., scholarship, waiver, adjustment) that should be omitted from balance calculations under the associated rule.
Common Use Cases and Queries
This table is primarily accessed during the execution of automated balance calculation processes and for administrative configuration. A common operational use case is an institution creating a rule to calculate "Tuition Due" while excluding all credits classified as "External Scholarship." Administrators would query this table to audit or report on existing exclusions. A typical SQL query to list all excluded credit types for a given balance rule would be:
SELECT crt.credit_type_code, crt.description
FROM igs_fi_bal_ex_c_typs excl,
igs_fi_cr_types_all crt
WHERE excl.balance_rule_id = :p_balance_rule_id
AND excl.credit_type_id = crt.credit_type_id;
Another critical reporting use case involves verifying the integrity of configuration data by identifying balance rules with no defined exclusions or validating that deprecated credit types are not still referenced in exclusion rules.
Related Objects
The IGS_FI_BAL_EX_C_TYPS table has defined dependencies within the Student System schema, primarily through its foreign key relationships:
- Parent Table: IGS_FI_BALANCE_RULES via column BALANCE_RULE_ID. This is the master table defining the financial balance calculation rules for which exclusions are specified.
- Parent Table: IGS_FI_CR_TYPES_ALL via column CREDIT_TYPE_ID. This reference table holds the valid list of credit types (e.g., waiver, scholarship, payment) used across the financial module, from which the exclusions are selected.
-
Table: IGS_FI_BAL_EX_C_TYPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_BAL_EX_C_TYPS, object_name:IGS_FI_BAL_EX_C_TYPS, status:VALID, product: IGS - Student System , description: This table captures information of Credit Types that need to be ignored for Balance Calculation. , implementation_dba_data: IGS.IGS_FI_BAL_EX_C_TYPS ,
-
Table: IGS_FI_BAL_EX_C_TYPS
12.2.2
product: IGS - Student System (Obsolete) , description: This table captures information of Credit Types that need to be ignored for Balance Calculation. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_BAL_EX_C_TYPS_PKG dependencies on IGS_FI_BAL_EX_C_TYPS
12.1.1
-
VIEW: APPS.IGS_FI_BAL_EX_C_TYPS_V
12.1.1
-
View: IGS_FI_BAL_EX_C_TYPS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is created by joining table IGS_FI_BAL_EX_C_TYPS and view IGS_FI_CR_TYPE to obtain Credit Type Name and Description by resolving foreign keys , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_FI_BAL_EX_C_TYPS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_FI_BAL_EX_C_TYPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_FI_BAL_EX_C_TYPS, status:VALID,
-
View: IGS_FI_BAL_EX_C_TYPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_BAL_EX_C_TYPS_V, object_name:IGS_FI_BAL_EX_C_TYPS_V, status:VALID, product: IGS - Student System , description: This view is created by joining table IGS_FI_BAL_EX_C_TYPS and view IGS_FI_CR_TYPE to obtain Credit Type Name and Description by resolving foreign keys , implementation_dba_data: APPS.IGS_FI_BAL_EX_C_TYPS_V ,
-
TABLE: IGS.IGS_FI_BAL_EX_C_TYPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_BAL_EX_C_TYPS, object_name:IGS_FI_BAL_EX_C_TYPS, status:VALID,
-
Table: IGS_FI_BALANCE_RULES
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_BALANCE_RULES, object_name:IGS_FI_BALANCE_RULES, status:VALID, product: IGS - Student System , description: This table contains Balance Rules definition for five system level balances - STANDARD, FEE, HOLDS, INSTALLMENT and OTHER. The rules defined for each are for exclusion purposes. , implementation_dba_data: IGS.IGS_FI_BALANCE_RULES ,
-
PACKAGE BODY: APPS.IGS_FI_BAL_EX_C_TYPS_PKG
12.1.1
-
APPS.IGS_FI_BAL_EX_C_TYPS_PKG dependencies on IGS_FI_BAL_EX_C_TYPS_PKG
12.1.1
-
Table: IGS_FI_BALANCE_RULES
12.2.2
product: IGS - Student System (Obsolete) , description: This table contains Balance Rules definition for five system level balances - STANDARD, FEE, HOLDS, INSTALLMENT and OTHER. The rules defined for each are for exclusion purposes. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_FI_CR_TYPES_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_FI_CR_TYPES_ALL, object_name:IGS_FI_CR_TYPES_ALL, status:VALID, product: IGS - Student System , description: Stores information about the 'credit type' of a credit transaction. The credit type provides the debit and credit account information to a credit transaction along with some other information like credit class etc. , implementation_dba_data: IGS.IGS_FI_CR_TYPES_ALL ,
-
PACKAGE BODY: APPS.IGS_FI_BAL_EX_C_TYPS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_FI_BAL_EX_C_TYPS_PKG, status:VALID,
-
VIEW: APPS.IGS_FI_BAL_EX_C_TYPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_BAL_EX_C_TYPS_V, object_name:IGS_FI_BAL_EX_C_TYPS_V, status:VALID,
-
Table: IGS_FI_CR_TYPES_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Stores information about the 'credit type' of a credit transaction. The credit type provides the debit and credit account information to a credit transaction along with some other information like credit class etc. , implementation_dba_data: Not implemented in this database ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,