Search Results pell_amount
Overview
APPS.IGF_AW_COA_GRP_ITEM is a multi-org view in the Oracle E-Business Suite 12.1.1 / 12.2.2 environment, owned by the APPS schema and registered under FND Design Data as IGF.IGF_AW_COA_GRP_ITEM. It exposes Chart of Accounts (COA) group item configuration used by the Oracle Financial Aid (IGF) module, specifically the Award (AW) subsystem, which governs the packaging, costing, and disbursement of student financial aid awards. The view presents the line-level detail of COA group items — the components that make up a cost of attendance (COA) group — together with their default values, fixed-cost indicators, and distribution rules.
A defining characteristic of this view, documented explicitly in the ETRM metadata, is that it is a multi-org view: it automatically retrieves data only for the current operating unit and ignores rows belonging to other operating units. The ORG_ID column is the mechanism through which this operating unit security is enforced, filtered against the FND multi-org context established for the session. This makes the view particularly important for reporting and integration in multi-institution deployments, where a single database instance serves multiple schools or campuses. The presence of PELL_AMOUNT and PELL_ALTERNATE_AMT columns connects the view directly to the Federal Pell Grant program, which is central to U.S. Title IV financial aid processing.
Underlying Base Objects
According to the documented dependency metadata, APPS.IGF_AW_COA_GRP_ITEM is defined over the base table APPS.IGF_AW_COA_GRP_ITEM_ALL. This naming pattern is the standard Oracle multi-org convention: the _ALL table stores rows for every operating unit, while the view applies a WHERE ORG_ID = :current_org filter to present only the current organization's rows. The view therefore acts as an operating-unit-secured projection of the base table, and no additional tables are documented as direct sources of the view definition.
The view's dependency list also records downstream consumers. APPS.IGF_AW_COA_GRP_ITEM is referenced by APPS.IGF_AW_COA_CALC, APPS.IGF_AW_COA_GRP_ITEM_V, and APPS.IGF_GR_GEN. IGF_AW_COA_CALC is a costing calculation object, indicating that this view feeds the COA calculation engine that determines award budgets. IGF_GR_GEN relates to grant generation, and IGF_AW_COA_GRP_ITEM_V is a dependent view. Any modification to COA group item data propagates into these consumers.
Key Columns
- ROW_ID — ROWID pseudo-column providing the physical row identifier for each record.
- COA_CODE — Code identifying the Chart of Accounts group to which the item belongs; links items into a complete cost-of-attendance group.
- CI_CAL_TYPE / CI_SEQUENCE_NUMBER — Calendar type and sequence number, binding the item to a specific aid year or period.
- ITEM_CODE — The code for the individual COA item (for example, a component such as tuition or fees).
- DEFAULT_VALUE — The numeric default amount applied to the item during COA calculation.
- FIXED_COST — Indicator controlling whether the item is treated as a fixed cost.
- ACTIVE — Flag indicating whether the item is currently active and available for calculation.
- PELL_AMOUNT — The Pell Grant amount associated with the item; the column most relevant to the "pell_amount" search.
- PELL_ALTERNATE_AMT — Alternative Pell amount, typically used where differing Pell treatment applies.
- ITEM_DIST — Item distribution code controlling how the item is allocated.
- LOCK_FLAG — Lock indicator that prevents recalculation or modification of the item.
- ORG_ID — Operating unit identifier enforcing multi-org access.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard audit columns.
Common Use Cases and Queries
A frequent use case is auditing which COA items carry a Pell amount and how those amounts are configured for the current operating unit. A representative query is:
SELECT COA_CODE, ITEM_CODE, DEFAULT_VALUE, PELL_AMOUNT, PELL_ALTERNATE_AMT, ACTIVE FROM APPS.IGF_AW_COA_GRP_ITEM WHERE PELL_AMOUNT IS NOT NULL ORDER BY COA_CODE, ITEM_CODE;
Another scenario reconciles the Pell configuration against active items only, excluding fixed-cost components:
SELECT COA_CODE, ITEM_CODE, PELL_AMOUNT, FIXED_COST, DEFAULT_VALUE FROM APPS.IGF_AW_COA_GRP_ITEM WHERE ACTIVE = 'Y';
Because the view is multi-org secured, these queries return only rows for the operating unit of the current session, so developers should set the correct org context before running reports. For institution-wide analysis across operating units, the underlying _ALL table must be queried instead. Integrations extracting Pell configurations for downstream budgeting systems should join the view to IGF_AW_COA_CALC to trace how Pell amounts influence costing calculations.
-
VIEW: APPS.IGF_AW_COA_GRP_ITEM
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_COA_GRP_ITEM, object_name:IGF_AW_COA_GRP_ITEM, status:VALID,
-
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,
-
VIEW: APPS.IGFBV_STUDENT_COA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_COA, object_name:IGFBV_STUDENT_COA, status:VALID,
-
TABLE: IGF.IGF_AW_COA_GRP_ITEM_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AW_COA_GRP_ITEM_ALL, object_name:IGF_AW_COA_GRP_ITEM_ALL, status:VALID,
-
View: IGF_AW_COA_GRP_ITEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_COA_GRP_ITEM_V, object_name:IGF_AW_COA_GRP_ITEM_V, status:VALID, product: IGF - Financial Aid , description: Cost of attendance group item , implementation_dba_data: APPS.IGF_AW_COA_GRP_ITEM_V ,
-
VIEW: APPS.IGFFV_STUDENT_COA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_COA, object_name:IGFFV_STUDENT_COA, 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,
-
VIEW: APPS.IGF_AW_COA_GRP_ITEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_COA_GRP_ITEM_V, object_name:IGF_AW_COA_GRP_ITEM_V, status:VALID,
-
View: IGF_AW_COA_GRP_ITEM_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Cost of attendance group item , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_STUDENT_COA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_STUDENT_COA, object_name:IGFFV_STUDENT_COA, status:VALID, product: IGF - Financial Aid , description: Full View for Entity that holds the cost of attendance amount, Pell amount, alternative Pell amount for each item, student in an award year , implementation_dba_data: APPS.IGFFV_STUDENT_COA ,
-
View: IGFBV_STUDENT_COA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_STUDENT_COA, object_name:IGFBV_STUDENT_COA, status:VALID, product: IGF - Financial Aid , description: Base View for Entity that holds the cost of attendance amount, Pell amount, alternative Pell amount for each item, student in an award year , implementation_dba_data: APPS.IGFBV_STUDENT_COA ,
-
View: IGFBV_STUDENT_COA
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base View for Entity that holds the cost of attendance amount, Pell amount, alternative Pell amount for each item, student in an award year , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_STUDENT_COA
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for Entity that holds the cost of attendance amount, Pell amount, alternative Pell amount for each item, student in an award year , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AW_COA_GRP_ITEM
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AW_COA_GRP_ITEM, object_name:IGF_AW_COA_GRP_ITEM, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_AW_COA_GRP_ITEM ,
-
View: IGF_AW_COA_GRP_ITEM
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_RFMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS, object_name:IGF_GR_RFMS, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_RFMS ,
-
View: IGF_GR_RFMS
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_AW_COA_GRP_ITEM_PKG SQL Statements
12.1.1
-
Lookup Type: IGF_GR_LOOKUPS
12.1.1
product: IGF - Financial Aid , meaning: Grant Upload Columns , description: Grant Upload Columns ,
-
View: IGF_GR_RFMS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Shows RFMS data which needs to be sent to the RFMS system , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_RFMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_V, object_name:IGF_GR_RFMS_V, status:VALID, product: IGF - Financial Aid , description: Shows RFMS data which needs to be sent to the RFMS system , implementation_dba_data: APPS.IGF_GR_RFMS_V ,
-
Lookup Type: IGF_GR_LOOKUPS
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: Grant Upload Columns , description: Grant Upload Columns ,
-
VIEW: APPS.IGF_GR_RFMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS, object_name:IGF_GR_RFMS, status:VALID,
-
TABLE: IGF.IGF_GR_RFMS_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_GR_RFMS_ALL, object_name:IGF_GR_RFMS_ALL, status:VALID,
-
VIEW: APPS.IGF_GR_RFMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_RFMS_V, object_name:IGF_GR_RFMS_V, status:VALID,
-
APPS.IGF_GR_RFMS_PKG SQL Statements
12.1.1
-
APPS.IGF_AW_COA_CALC SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_COA_GRP_ITEM_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_RFMS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_AW_COA_CALC
12.1.1
-
APPS.IGF_AW_PACKAGING dependencies on IGF_GR_RFMS_ALL
12.1.1
-
APPS.IGF_GR_RFMS_ORIG dependencies on IGF_AW_GEN
12.1.1
-
APPS.IGF_GR_REPACKAGE dependencies on IGF_GR_RFMS
12.1.1
-
APPS.IGF_GR_REPACKAGE dependencies on IGF_GR_RFMS_PKG
12.1.1
-
APPS.IGF_GR_RFMS_ORIG dependencies on FND_FILE
12.1.1
-
APPS.IGF_AW_COA_CALC dependencies on IGF_AW_AWARD_T
12.1.1
-
APPS.IGF_AW_COA_GRP_ITEM_PKG dependencies on IGF_AW_COA_GRP_ITEM_ALL
12.1.1
-
APPS.IGF_GR_REPACKAGE dependencies on FND_LOG
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_REPACKAGE
12.1.1
-
APPS.IGF_GR_REPACKAGE dependencies on IGF_GR_REPACKAGE
12.1.1
-
PACKAGE BODY: APPS.IGF_GR_RFMS_ORIG
12.1.1
-
APPS.IGF_GR_RFMS_ORIG dependencies on IGF_GR_GEN
12.1.1
-
APPS.IGF_AW_PACKAGING SQL Statements
12.1.1
-
APPS.IGF_GR_RFMS_ORIG dependencies on FND_MESSAGE
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
PACKAGE BODY: APPS.IGF_AW_PACKAGING
12.1.1