Search Results end_dt_acad




Overview

The view APPS.IGF_AP_BATCH_AW_MAP_V is a supplementary database view owned by the APPS schema and registered under FND Design Data as IGF.IGF_AP_BATCH_AW_MAP_V. It belongs to the Oracle Financial Aid (IGF) product family and is designated a "supplementary view used to simplify forms coding" — that is, it exists primarily to support the Oracle Forms user interface layer rather than as a public data-access interface. Oracle explicitly warns that this view should not be queried or altered directly by customers, as its definition may change substantially between minor or major releases.

The view specializes in award-year (batch) configuration data used by the ISIR and verification processing engines. It exposes the batch calendar mapping — batch year, alternate code, start and end dates, and the associated academic and admissions calendar attributes — alongside financial-aid configuration parameters such as the Expected Family Contribution (EFC) formula, date-of-birth handling, tolerance limits, and Pell/FFEL/DL/ISIR transaction codes. Because the object is a view rather than a table, it presents a denormalized projection of these attributes and does not itself store data.

Underlying Base Objects

The documented ETRM 12.2.2 metadata for this object lists no referenced base objects. This is a common characteristic of Oracle Forms "supplementary views": the dependency metadata is either not published to the ETRM repository or is resolved only at the FND Design Data level. In practice, a view with this footprint is defined over IGF batch/award-year configuration tables (for example the batch award map and ISIR configuration entities that carry the ROW_ID, BATCH_YEAR, and CI_SEQUENCE_NUMBER columns), joined to lookup/description tables for the _DESC columns. The ROW_ID (ROWID) column is a critical indicator that the view is key-preserving, allowing Oracle Forms to identify and update rows through the view. Because the base objects are undocumented and the view is Forms-private, no reliable join path can be asserted from the metadata alone.

Key Columns

Common Use Cases and Queries

Primary usage is through Oracle Forms in the Financial Aid setup and ISIR/verification configuration screens. Read-only diagnostic queries are common when troubleshooting EFC date-of-birth or tolerance behavior. Because the view is Forms-private, any SQL should be treated as diagnostic only.

  • Identifying the EFC date-of-birth and formula configured for an award year.
  • Reviewing tolerance limits and rounding factors applied during verification.
  • Confirming Pell participation status and transaction codes.

Typical query:

SELECT bam_id, batch_year, alternate_code, efc_frml, efc_dob, tolerance_limit, roundoff_fact, pell_participant_code, award_year_status_code
FROM apps.igf_ap_batch_aw_map_v
WHERE batch_year = :batch_year;

Because the underlying tables are not documented in the ETRM metadata, customers should not build production integrations or customizations on this view; use the corresponding public IGF base tables or the supported Financial Aid APIs instead.