Search Results sf_invoice_num
Overview
IGF_DB_DL_DISB_DTL_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the IGF (Financial Aid) product family. It presents Direct Loan disbursement detail for each disbursement associated with a loan record, flattening the transactional detail held across award, disbursement, loan, and fund-master entities into a single queryable structure. The view is defined with status VALID in the ETRM metadata for both 12.1.1 and 12.2.2, and it is intended for reporting, reconciliation, and integration consumption rather than for direct transactional entry.
Its principal value lies in combining disbursement-level activity—gross amount, fees, net amount, adjustments, dates, batch identifiers, and status values—with the loan number and award context. This makes it suitable for financial aid offices and downstream systems that need to report on Title IV Direct Loan disbursement lifecycle data without joining the underlying normalized tables themselves.
Underlying Base Objects
The view text shows the following base objects in its FROM clause and join conditions:
- IGF_DB_AWD_DISB_DTL (DDTL) — the award disbursement detail table that supplies the core disbursement columns such as DISB_NUM, DISB_SEQ_NUM, DISB_GROSS_AMT, FEE_1, FEE_2, NET_AMT, ADJ_AMT, dates, and status fields.
- IGF_AW_AWD_DISB (ADISB) — the award-level disbursement record, joined on AWARD_ID and DISB_NUM, contributing AFFIRM_FLAG, INT_REBATE_AMT, and the standard audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE).
- IGF_AW_AWARD (AWD) — the award header, joined on AWARD_ID.
- IGF_SL_LOANS (LAR) — the student loan record, joined on AWARD_ID and providing LOAN_NUMBER.
- IGF_AW_FUND_MAST (FMAST) — the fund master, joined through AWD.FUND_ID.
- IGF_AW_FUND_CAT (FCAT) — the fund category, joined via FMAST.FUND_CODE and filtered by FED_FUND_CODE.
- IGF_LOOKUPS_VIEW (LKPS) — the lookup view, restricted to lookup types 'IGF_SL_DL_STAFFORD' and 'IGF_SL_DL_PLUS'.
The final predicate (FCAT.FED_FUND_CODE = LKPS.LOOKUP_CODE) restricts the result set to Stafford and PLUS Direct Loan funds, which explains why the view is specific to Direct Loan disbursements rather than the broader universe of financial aid awards.
Key Columns
- ROW_ID, AWARD_ID — primary identifier for the disbursement detail row and its parent award.
- DISB_NUM, DISB_SEQ_NUM, DISB_ACTIVITY — disbursement number, sequence within the award, and activity type.
- DISB_GROSS_AMT, FEE_1, FEE_2, DISB_NET_AMT, DISB_ADJ_AMT, FEE_PAID_1, FEE_PAID_2 — the monetary breakdown of the disbursement, including origination fees and any adjustments.
- DISB_DATE, DISB_ACK_DATE, BOOKED_DATE — the disbursement date, acknowledgement date, and booking date.
- DISB_BATCH_ID, BOOKING_BATCH_ID — batch references for the disbursement and booking processes.
- DISB_STATUS, DISB_STATUS_DATE — the current disbursement status and the date that status was set. This is the column commonly referenced when searching for "disb_status_date".
- SF_STATUS, SF_STATUS_DATE, SF_INVOICE_NUM — the student financial (Common Origination and Disbursement) status, its date, and the associated invoice number.
- LOAN_NUMBER — sourced from IGF_SL_LOANS, giving the direct loan reference.
- AFFIRM_FLAG, INT_REBATE_AMT — acknowledgement flag and interest rebate amount.
- Audit and concurrent-program columns from ADISB.
Common Use Cases and Queries
The view supports disbursement reconciliation, Direct Loan status reporting, and integration extracts. A typical report selects the current status and its effective date alongside award and loan identifiers, filtered by a date range on DISB_STATUS_DATE.
Example: list current disbursement statuses for Stafford and PLUS loans in a given period.
SELECT LOAN_NUMBER,
AWARD_ID,
DISB_NUM,
DISB_STATUS,
DISB_STATUS_DATE,
SF_STATUS,
SF_STATUS_DATE,
DISB_GROSS_AMT,
DISB_NET_AMT
FROM APPS.IGF_DB_DL_DISB_DTL_V
WHERE DISB_STATUS_DATE BETWEEN :p_start_date AND :p_end_date
ORDER BY LOAN_NUMBER, DISB_NUM;
Another common pattern reconciles gross-to-net disbursement amounts using the fee columns:
SELECT AWARD_ID,
DISB_NUM,
DISB_GROSS_AMT,
FEE_1 + FEE_2 AS DISB_FEES,
DISB_NET_AMT,
DISB_ADJ_AMT
FROM APPS.IGF_DB_DL_DISB_DTL_V
WHERE AWARD_ID = :p_award_id;
Because the view already applies the Direct Loan fund and lookup restrictions, consumers do not need to repeat the fund-category joins, though joins back to IGF_AW_AWARD or IGF_SL_LOANS on AWARD_ID remain valid when additional attributes are required.
-
View: IGF_DB_DL_DISB_DTL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Shows Direct Loan disbursement details for each of disbursements for loan , implementation_dba_data: Not implemented in this database ,
-
View: IGF_DB_DL_DISB_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_DL_DISB_DTL_V, object_name:IGF_DB_DL_DISB_DTL_V, status:VALID, product: IGF - Financial Aid , description: Shows Direct Loan disbursement details for each of disbursements for loan , implementation_dba_data: APPS.IGF_DB_DL_DISB_DTL_V ,
-
VIEW: APPS.IGF_DB_DL_DISB_DTL_V
12.1.1
-
VIEW: APPS.IGF_DB_AWD_DISB_DTL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL, object_name:IGF_DB_AWD_DISB_DTL, status:VALID,
-
VIEW: APPS.IGF_DB_AWD_DISB_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL_V, object_name:IGF_DB_AWD_DISB_DTL_V, status:VALID,
-
View: IGF_DB_AWD_DISB_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL_V, object_name:IGF_DB_AWD_DISB_DTL_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_DB_AWD_DISB_DTL_V ,
-
View: IGF_DB_AWD_DISB_DTL
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_DB_AWD_DISB_DTL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL, object_name:IGF_DB_AWD_DISB_DTL, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_DB_AWD_DISB_DTL ,
-
View: IGF_DB_AWD_DISB_DTL_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_DB_AWD_DISB_DTL_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_DB_AWD_DISB_DTL_ALL, object_name:IGF_DB_AWD_DISB_DTL_ALL, status:VALID,
-
APPS.IGF_DB_AWD_DISB_DTL_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_DB_DL_DISB_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_DL_DISB_DTL_V, object_name:IGF_DB_DL_DISB_DTL_V, status:VALID,
-
PACKAGE BODY: APPS.IGF_DB_AWD_DISB_DTL_PKG
12.1.1
-
APPS.IGF_DB_AWD_DISB_DTL_PKG dependencies on IGF_DB_AWD_DISB_DTL
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,