Search Results igf_sl_dl_plus




Overview

VIEW APPS.IGF_DB_DL_DISB_DTL_V is a reporting and integration view within the Oracle E-Business Suite Federal Government financials family, specifically belonging to the Grants Management (IGF) schema associated with the Student Financial Aid (SFA) and Title IV Direct Loan processing components. In Oracle EBS 12.1.1 and 12.2.2 it is used by the ETRM (Enterprise Technical Reference Manual) as a consolidated access point over disbursement detail information for award disbursements that are tied to specific Stafford and PLUS loan disbursement activity. The view combines disbursement-level attributes with award-, loan-, fund-, and lookup-derived context so that downstream reports, concurrent programs, and interfaces can retrieve a single flattened row per disbursement without joining many underlying tables themselves.

The name reference the user searched, igf_sl_dl_plus, corresponds to the lookup value/code family referenced inside the view predicate (IGF_SL_DL_PLUS), which is the PLUS loan disbursement reservation type distinguished from IGF_SL_DL_STAFFORD. This confirms the view is scoped to Direct Loan (DL) disbursements for both Stafford and PLUS categories.

Underlying Base Objects

Although the documented ETRM base object list for this view is incomplete, the view text explicitly shows the following referenced objects:

The joins form a chain: disbursement detail to disbursement header (on AWARD_ID and DISB_NUM), to award, to loan, and through fund master and fund category to the lookup view, filtered so that only Stafford and PLUS disbursements are returned.

Key Columns

Common Use Cases and Queries

The view is typically consumed by Title IV disbursement reconciliation reports, DL booking extracts, and fee/rebate analysis. A simple retrieval for a given award:

  • SELECT award_id, disb_num, disb_seq_num, disb_date, disb_gross_amt, disb_net_amt, loan_number, disb_status FROM apps.igf_db_dl_disb_dtl_v WHERE award_id = :p_award_id ORDER BY disb_num, disb_seq_num;

For reconciliation of unbooked disbursements:

  • SELECT award_id, disb_num, loan_number, disb_ack_date, booked_date, booking_batch_id FROM apps.igf_db_dl_disb_dtl_v WHERE booked_date IS NULL AND disb_status = 'A';

And for a summary by loan number:

  • SELECT loan_number, COUNT(*) disb_count, SUM(disb_gross_amt) gross, SUM(fee_1+fee_2) fees FROM apps.igf_db_dl_disb_dtl_v GROUP BY loan_number;

Because the view embeds the lookup restriction to IGF_SL_DL_STAFFORD and IGF_SL_DL_PLUS, callers only receive Direct Loan Stafford and PLUS disbursement records, which makes it a convenient, pre-filtered source for Title IV reporting and disbursement integrations in both 12.1.1 and 12.2.2.