Search Results s_award_year
Overview
The IGF_FC_STATE_TX table is a core configuration table within the Oracle E-Business Suite (EBS) Financial Aid module (IGF). Its primary role is to store state-specific tax allowance rates used in the calculation of a student's financial need for a given award year. The table functions as a lookup repository for tax percentages, which are applied based on the student's state of residence and their income range. This data is critical for ensuring that federal and institutional need analysis calculations, such as those performed by the Institutional Methodology (IM) or the Federal Methodology (FM), accurately account for state tax liabilities, thereby determining a student's correct Expected Family Contribution (EFC). The table resides in the APPS_TS_SEED tablespace, indicating it is part of the shared seed data layer in EBS releases 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is designed to support multi-year, multi-state tax rate configurations. The key business columns are:
- S_AWARD_YEAR: A mandatory VARCHAR2 column identifying the system award year (e.g., 2024-2025) for which the tax rate is applicable.
- TABLE_CODE: A VARCHAR2 column classifying the tax table, likely differentiating between various calculation methodologies or tax types.
- STATE_CODE: A VARCHAR2 column storing the code for the U.S. state or territory to which the tax rate applies.
- INCOME_RANGE_START and INCOME_RANGE_END: NUMBER columns that define the lower and upper bounds of an income bracket.
- TAX_RATE: A NUMBER column holding the tax percentage applicable to the specified state, income range, award year, and table code.
The table also includes standard "Who" columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) for auditing. The primary key (IGF_FC_STATE_TX_PK) enforces uniqueness across the combination of S_AWARD_YEAR, TABLE_CODE, INCOME_RANGE_START, INCOME_RANGE_END, and STATE_CODE.
Common Use Cases and Queries
The primary use case is the retrieval of the correct tax rate during financial need analysis processing. A typical query would filter by the current award year, the student's state, and the relevant table code to find the rate matching the family's taxable income. For reporting or validation, administrators may query all rates for a specific year and state.
Sample Query to Retrieve a Tax Rate:
SELECT tax_rate
FROM igf.igf_fc_state_tx
WHERE s_award_year = '2024-2025'
AND state_code = 'CA'
AND table_code = 'FED'
AND 50000 BETWEEN income_range_start AND income_range_end;
Sample Query for Configuration Review:
SELECT s_award_year, state_code, table_code,
income_range_start, income_range_end, tax_rate
FROM igf.igf_fc_state_tx
WHERE s_award_year = '2024-2025'
ORDER BY state_code, table_code, income_range_start;
Related Objects
Based on the provided dependency information, the IGF_FC_STATE_TX table is referenced by an object named APPS.IGF_FC_STATE_TX. This is most likely a public synonym (APPS.IGF_FC_STATE_TX) that points to the underlying IGF.IGF_FC_STATE_TX base table, providing a standard access point for all EBS application code. The metadata indicates no foreign key relationships from this table to others, and it is not referenced by other objects with documented foreign keys in this excerpt. Its data is typically referenced programmatically by packages and views within the Financial Aid module that perform need analysis calculations.
-
TABLE: IGF.IGF_FC_STATE_TX
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_STATE_TX, object_name:IGF_FC_STATE_TX, status:VALID,
-
TABLE: IGF.IGF_FC_EFC_ALT_FAC
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_EFC_ALT_FAC, object_name:IGF_FC_EFC_ALT_FAC, status:VALID,
-
TABLE: IGF.IGF_FC_EFC_FRM_C
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_EFC_FRM_C, object_name:IGF_FC_EFC_FRM_C, status:VALID,
-
TABLE: IGF.IGF_FC_EFC_FRM_A
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_EFC_FRM_A, object_name:IGF_FC_EFC_FRM_A, status:VALID,
-
TABLE: IGF.IGF_FC_EFC_FRM_B
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_EFC_FRM_B, object_name:IGF_FC_EFC_FRM_B, status:VALID,
-
TABLE: IGF.IGF_FC_AST_PC_DT
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_AST_PC_DT, object_name:IGF_FC_AST_PC_DT, status:VALID,
-
TABLE: IGF.IGF_FC_INC_PRCT
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_INC_PRCT, object_name:IGF_FC_INC_PRCT, status:VALID,
-
TABLE: IGF.IGF_FC_GEN_TAX_RTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_GEN_TAX_RTS, object_name:IGF_FC_GEN_TAX_RTS, status:VALID,
-
Table: IGF_FC_EFC_FRM_C
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_EFC_FRM_C, object_name:IGF_FC_EFC_FRM_C, status:VALID, product: IGF - Financial Aid , description: Multiplication Factor - Formula C Table , implementation_dba_data: IGF.IGF_FC_EFC_FRM_C ,
-
Table: IGF_FC_EFC_FRM_B
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_EFC_FRM_B, object_name:IGF_FC_EFC_FRM_B, status:VALID, product: IGF - Financial Aid , description: Multiplication Factor - Formula B Table , implementation_dba_data: IGF.IGF_FC_EFC_FRM_B ,
-
Table: IGF_FC_EFC_FRM_A
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Multiplication Factor - Formula A Table , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_FC_INC_PRCT
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_INC_PRCT, object_name:IGF_FC_INC_PRCT, status:VALID, product: IGF - Financial Aid , description: Income Protection Allowance Table , implementation_dba_data: IGF.IGF_FC_INC_PRCT ,
-
Table: IGF_FC_EFC_FRM_B
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Multiplication Factor - Formula B Table , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_FC_EFC_FRM_C
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Multiplication Factor - Formula C Table , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_FC_GEN_TAX_RTS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Generic Tax Table , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_FC_STATE_TX
12.2.2
product: IGF - Financial Aid (Obsolete) , description: State and Other Tax Allowance Table , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_FC_EFC_ALT_FAC
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_EFC_ALT_FAC, object_name:IGF_FC_EFC_ALT_FAC, status:VALID, product: IGF - Financial Aid , description: Multiplication Factor - Alternative Factors , implementation_dba_data: IGF.IGF_FC_EFC_ALT_FAC ,
-
Table: IGF_FC_AST_PC_DT
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_AST_PC_DT, object_name:IGF_FC_AST_PC_DT, status:VALID, product: IGF - Financial Aid , description: Asset Protection Allowance Table , implementation_dba_data: IGF.IGF_FC_AST_PC_DT ,
-
Table: IGF_FC_STATE_TX
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_STATE_TX, object_name:IGF_FC_STATE_TX, status:VALID, product: IGF - Financial Aid , description: State and Other Tax Allowance Table , implementation_dba_data: IGF.IGF_FC_STATE_TX ,
-
Table: IGF_FC_AST_PC_DT
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Asset Protection Allowance Table , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_FC_EFC_FRM_A
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_EFC_FRM_A, object_name:IGF_FC_EFC_FRM_A, status:VALID, product: IGF - Financial Aid , description: Multiplication Factor - Formula A Table , implementation_dba_data: IGF.IGF_FC_EFC_FRM_A ,
-
Table: IGF_FC_GEN_TAX_RTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_FC_GEN_TAX_RTS, object_name:IGF_FC_GEN_TAX_RTS, status:VALID, product: IGF - Financial Aid , description: Generic Tax Table , implementation_dba_data: IGF.IGF_FC_GEN_TAX_RTS ,
-
Table: IGF_FC_EFC_ALT_FAC
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Multiplication Factor - Alternative Factors , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_FC_INC_PRCT
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Income Protection Allowance Table , implementation_dba_data: Not implemented in this database ,
-
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 ,