Search Results igf_gr_alt_coa_v
Overview
IGF_GR_ALT_COA_V is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments, belonging to the IGF — Financial Aid product family. This module is documented in Oracle's ETRM (E-Business Suite Technical Reference Manual) as obsolete, meaning it is retained for backward compatibility but is not actively implemented in a standard provisioning of the database. The view presents alternate chart of accounts (COA) enrollment data joined to calendar instance information, exposing an enrollment status alongside descriptive lookups and calendar context.
Its role is analytical and integration-oriented: it flattens a parent-child relationship between alternate COA enrollment records and their associated calendar instances, providing a single denormalized result set suitable for reporting in tools such as Oracle Reports, BI Publisher, or custom SQL. Because the module is obsolete, the view is primarily of interest for historical data migration, legacy integration, or forensic analysis of prior Financial Aid implementations.
Underlying Base Objects
The view is defined over two base objects joined on calendar type and sequence number:
- IGF_GR_ALT_COA (aliased ALTCOA) — the driving table supplying the alternate COA enrollment record, including row identifier, enrollment status, and COA start/end dates.
- IGS_CA_INST (aliased CI) — the calendar instance table supplying the alternate code and the instance start and end dates.
The join predicate is ALTCOA.CI_CAL_TYPE = CI.CAL_TYPE AND ALTCOA.CI_SEQUENCE_NUMBER = CI.SEQUENCE_NUMBER. The ETRM document notes that no referenced base objects are separately documented and that the view is not implemented in the reference database, so direct querying depends on the presence of these tables in the target instance.
Key Columns
- ROW_ID — surrogate row identifier for the alternate COA record.
- ALTCOA_ID — the primary identifier for the alternate COA enrollment.
- ENRL_STAT — enrollment status code, decoded through the lookup
IGF_GR_RFMS_ENROL_STATviaIGF_AW_GEN.LOOKUP_DESCto produce ENRL_STAT_DESC. - CI_CAL_TYPE / CI_SEQUENCE_NUMBER — keys linking the record to its calendar instance.
- CI_ALTERNATE_CODE — the alternate code carried on the calendar instance.
- CI_START_DT / CI_END_DT — calendar instance start and end dates.
- COA_START / COA_END — the effective date range for the alternate chart of accounts.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, LAST_UPDATE_DATE — standard EBS audit columns.
Common Use Cases and Queries
Typical uses include reconciling enrollment status against calendar periods, validating COA date ranges against calendar instance dates, and exporting alternate COA data for migration. Because the view performs the lookup decoding inline, consumers need not join the lookup table separately.
A representative query lists active alternate COA enrollments for a calendar window:
SELECT ALTCOA_ID,
ENRL_STAT,
ENRL_STAT_DESC,
CI_ALTERNATE_CODE,
CI_START_DT,
CI_END_DT,
COA_START,
COA_END
FROM IGF_GR_ALT_COA_V
WHERE CI_START_DT >= :p_start_date
AND CI_END_DT <= :p_end_date
ORDER BY ALTCOA_ID;
When troubleshooting missing rows, verify both IGF_GR_ALT_COA and IGS_CA_INST exist and that calendar type and sequence number values align; an inner join means unmatched instances are excluded. Given the obsolete status, deployments should treat this view as read-only and confirm availability before relying on it in production reports.
-
View: IGF_GR_ALT_COA_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_GR_ALT_COA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_ALT_COA_V, object_name:IGF_GR_ALT_COA_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_GR_ALT_COA_V ,
-
VIEW: APPS.IGF_GR_ALT_COA
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_ALT_COA, object_name:IGF_GR_ALT_COA, status:VALID,
-
VIEW: APPS.IGF_GR_ALT_COA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_GR_ALT_COA_V, object_name:IGF_GR_ALT_COA_V, status:VALID,
-
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
-
PACKAGE: APPS.IGF_AW_GEN
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGF_AW_GEN, status:VALID,
-
VIEW: APPS.IGS_CA_INST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_CA_INST, object_name:IGS_CA_INST, status:VALID,
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
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'. ,