Search Results igf_db_awd_disb_v




Overview

IGF_DB_AWD_DISB_V is a reporting and integration view owned by the APPS schema within the IGF (Financial Aid) product family of Oracle E-Business Suite, available in releases 12.1.1 and 12.2.2. The view presents combined award and disbursement detail, joining award-level attributes from an award view (aliased AWDV) to disbursement-level records from a disbursement table (aliased ADISB). Its principal role is to expose a denormalized, query-friendly projection of student financial aid awards alongside the individual disbursement transactions scheduled or released against those awards.

The view is documented under the title "View: IGF_DB_AWD_DISB_V" with description "Award disbursement details." It is widely used as a source for operational reporting, downstream extracts, integration interfaces, and ad hoc inquiry into disbursement status. The user search term "fund_status_date" corresponds directly to the FUND_STATUS_DATE column exposed by this view, which records the effective date associated with the current fund status of a disbursement.

Underlying Base Objects

The ETRM documentation records no separately named base tables; the view text is defined as an inline SELECT joining two logical sources: AWDV, the award-side source supplying award, student, fund, and calendar attributes, and ADISB, the disbursement-side source supplying transaction, fee, status, and lifecycle columns. The ROW_ID column is drawn from ADISB.ROW_ID, indicating the disbursement record is the driving grain of the view.

Because the view is a join of award and disbursement data, each row represents one disbursement line for an award. The award identifier (AWARD_ID) plus the disbursement number (DISB_NUM) provides the natural business key used to reconcile records against award and disbursement base entities. The view includes standard EBS WHO columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN — together with concurrent program context columns REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, and PROGRAM_UPDATE_DATE.

Key Columns

Common Use Cases and Queries

Typical scenarios include tracking disbursements awaiting fund release, reconciling net disbursement amounts against fees, auditing eligibility and fund status transitions by date, and extracting award disbursement detail for interfaces. A representative query filtering on the searched column follows:

  • Disbursements by fund status date: SELECT award_id, disb_num, fund_status, fund_status_date, disb_net_amt FROM apps.igf_db_awd_disb_v WHERE fund_status_date >= :p_from_date ORDER BY fund_status_date;
  • Student-level disbursement history: SELECT student_id, fund_code, disb_date, disb_gross_amt, disb_net_amt FROM apps.igf_db_awd_disb_v WHERE person_number = :p_person_number;
  • Hold and release analysis: SELECT award_id, disb_num, manual_hold_ind, hold_rel_ind, fund_release_date FROM apps.igf_db_awd_disb_v WHERE manual_hold_ind = 'Y';

Because the view exposes both award and disbursement grain, queries should filter on the intended level of detail and be secured against the appropriate business group and student data access to preserve row-level security obligations.