Search Results sequence_txt
Overview
IGF.IGF_GR_REG_AMTS is a standalone configuration table in the Oracle E-Business Suite 12.1.1 and 12.2.2 Financial Aid module (IGF schema). It stores the Regular Pell Grant award amounts applicable to a given combination of cost of attendance (COA) ranges and Expected Family Contribution (EFC) ranges, segmented by system award year and the student's enrollment status code. Functionally it serves as the lookup matrix the Pell Grant calculation engine consults to determine the correct scheduled award for a student, replacing what historically would be a printed Pell payment schedule with a queryable, maintainable table.
The table is documented as standalone. Applying a Data Vault modeling heuristic, it is best characterized as a reference or lookup hub keyed on its business identity; because it does not reference any other database object and carries no foreign keys, there is no upstream link or parent hub to model against. If modeled in Data Vault terms, it would reasonably be treated as a hub anchored on the award year and enrollment status combination, with a degenerate keyed business identifier, and no satellite dependency chain inherited from other IGF objects.
Key Information Stored
The table contains thirteen columns. The most significant are:
- SEQUENCE_TXT (VARCHAR2 15) — the surrogate primary key, IGF_GR_REG_AMTS_PK. A unique sequence string that identifies each row.
- SYS_AWD_YR (VARCHAR2 30) — the system award year. This is the column most frequently searched (sys_awd_yr) and is the first component of the leading business-key unique index.
- ENROLLMENT_STAT_CODE (VARCHAR2 30) — the student's enrollment status code (e.g., full-time, part-time), which determines the proration of the award.
- COA_RANGE_START and COA_RANGE_END (NUMBER 15) — the lower and upper bounds of the cost of attendance band.
- EFC_RANGE_START and EFC_RANGE_END (NUMBER 15) — the lower and upper bounds of the Expected Family Contribution band.
- PELL_AMOUNT (NUMBER 15) — the resulting Regular Pell Grant award amount for the matched band.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns for row provenance and change tracking.
Two unique indexes enforce business identity: IGF_GR_REG_AMTS_U1 on SEQUENCE_TXT, and IGF_GR_REG_AMTS_U2 on the composite of SYS_AWD_YR, ENROLLMENT_STAT_CODE, COA_RANGE_START, COA_RANGE_END, EFC_RANGE_START, and EFC_RANGE_END. The composite index is the true business-key candidate, ensuring no overlapping COA/EFC band definitions exist for the same award year and enrollment status.
Common Use Cases and Queries
Typical uses include maintaining the annual Pell schedule, verifying the award amount returned for a specific student profile, and auditing band coverage to detect gaps or overlaps in COA and EFC ranges.
Retrieve the full schedule for an award year:
SELECT sequence_txt, sys_awd_yr, enrollment_stat_code, coa_range_start, coa_range_end, efc_range_start, efc_range_end, pell_amount FROM igf.igf_gr_reg_amts WHERE sys_awd_yr = :p_award_year ORDER BY enrollment_stat_code, coa_range_start;
Look up the scheduled award for a specific student profile using range containment:
SELECT pell_amount FROM igf.igf_gr_reg_amts WHERE sys_awd_yr = :p_award_year AND enrollment_stat_code = :p_enroll AND :p_coa BETWEEN coa_range_start AND coa_range_end AND :p_efc BETWEEN efc_range_start AND efc_range_end;
Detect configuration gaps and overlaps by comparing consecutive band endpoints within an award year and enrollment status.
Related Objects
The metadata documents IGF_GR_REG_AMTS as standalone: it references no database object, and its only listed dependent is the APPS synonym APPS.IGF_GR_REG_AMTS, which permits application-tier code to query the table without schema qualification. There are no foreign-key relationships to other IGF tables to enumerate. Consequently, runtime joins are driven by shared business attributes rather than referential integrity — principally SYS_AWD_YR and ENROLLMENT_STAT_CODE, which link logically to other award-year and enrollment-status driven objects in the Financial Aid schema (such as COA and EFC data used during packaging). Because no explicit FK targets are documented, integration and reporting joins should be constructed on SYS_AWD_YR and ENROLLMENT_STAT_CODE and validated against the actual IGF schema in the target instance.
-
TABLE: IGF.IGF_GR_REG_AMTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_REG_AMTS, object_name:IGF_GR_REG_AMTS, status:VALID,
-
TABLE: IGF.IGF_GR_TUITION_FEE_CODES
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_TUITION_FEE_CODES, object_name:IGF_GR_TUITION_FEE_CODES, status:VALID,
-
TABLE: IGF.IGF_GR_ALT_AMTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_ALT_AMTS, object_name:IGF_GR_ALT_AMTS, status:VALID,
-
TABLE: IGF.IGF_AW_FISAP_RANGES
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FISAP_RANGES, object_name:IGF_AW_FISAP_RANGES, status:VALID,
-
Table: IGF_AW_FISAP_RANGES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Pre-seeded table storing the FISAP income ranges , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_GR_TUITION_FEE_CODES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the start and end range amounts of low tuition fee codes , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_GR_REG_AMTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the Regular Pell Amount for the given cost of attendance ranges and expected family contribution amounts , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_AW_FISAP_RANGES
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_FISAP_RANGES, object_name:IGF_AW_FISAP_RANGES, status:VALID, product: IGF - Financial Aid , description: Pre-seeded table storing the FISAP income ranges , implementation_dba_data: IGF.IGF_AW_FISAP_RANGES ,
-
Table: IGF_GR_ALT_AMTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the Alternate Pell Amount for the given cost of attendance ranges, expected family contribution amounts and alternate expenses. , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_GR_TUITION_FEE_CODES
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_TUITION_FEE_CODES, object_name:IGF_GR_TUITION_FEE_CODES, status:VALID, product: IGF - Financial Aid , description: Stores the start and end range amounts of low tuition fee codes , implementation_dba_data: IGF.IGF_GR_TUITION_FEE_CODES ,
-
Table: IGF_GR_REG_AMTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_REG_AMTS, object_name:IGF_GR_REG_AMTS, status:VALID, product: IGF - Financial Aid , description: Stores the Regular Pell Amount for the given cost of attendance ranges and expected family contribution amounts , implementation_dba_data: IGF.IGF_GR_REG_AMTS ,
-
Table: IGF_GR_ALT_AMTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_ALT_AMTS, object_name:IGF_GR_ALT_AMTS, status:VALID, product: IGF - Financial Aid , description: Stores the Alternate Pell Amount for the given cost of attendance ranges, expected family contribution amounts and alternate expenses. , implementation_dba_data: IGF.IGF_GR_ALT_AMTS ,
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,