Search Results awd_hist




Overview

The view IGF_AW_AWARD_LEVEL_HIST_V belongs to the IGF — Financial Aid product family, a module that Oracle has designated as obsolete in the EBS 12.1.1 and 12.2.2 release streams. The view is documented in ETRM as the Award Level History Details View. Its purpose is to expose the transactional audit trail of changes applied to individual awards at the award-attribute level, presenting both the prior ("old") and revised ("new") values for each tracked attribute, together with human-readable lookup descriptions.

In practice this view supports historical auditing and reconciliation of financial aid awards: rather than simply displaying the current state of an award row, it reports what a specific attribute value was before a change and what it became after. Because the underlying product is obsolete, the view is not implemented in current databases and should be treated as reference metadata for upgrade, migration, or legacy-data analysis rather than as a runtime reporting object.

Underlying Base Objects

ETRM records no owner and no formally documented referenced base objects for this view. However, the view text preserved in the documentation clearly identifies the principal source object as AWD_HIST, an award-history (change log) table keyed by AWARD_ID and AWARD_HIST_TRAN_ID. Supporting objects referenced within the SQL include:

The view therefore acts as a denormalized, presentation-layer projection over the award history base table and its reference data.

Key Columns

Common Use Cases and Queries

Typical usage centers on investigating how an award's status or monetary values changed over time and identifying the source of each change.

  • Award status audit: filter on AWARD_ATTRIB_CODE = 'IGF_AW_AWARD_STATUS' to isolate status transitions for a given AWARD_ID.
  • Financial reconciliation: compare OLD_OFFERED_AMT versus NEW_OFFERED_AMT to trace disbursement-driven amount adjustments.
  • Change-source attribution: use AWARD_CHANGE_SOURCE_DESC to distinguish user-driven changes from concurrent program activity.

A representative query:

  • SELECT award_id, award_hist_tran_id, award_attribute_desc, award_change_source_desc, old_value, new_value, derived_award_update_date FROM igf_aw_award_level_hist_v WHERE award_id = :p_award_id AND award_attrib_code = 'IGF_AW_AWARD_STATUS' ORDER BY derived_award_update_date;

Because ETRM lists no implemented objects and the module is obsolete, deployment depends on legacy IGF schemas; in modern environments the query should be validated against available synonyms before use.