Search Results statement_end_date
Overview
APPS.IGFFV_DL_YTD_SUMMARY is a Business Intelligence System (BIS) view in the Oracle E-Business Suite Financial Aid module, owned by the APPS schema and registered under FND Design Data object IGF.IGFFV_DL_YTD_SUMMARY. It exposes a full view of the entity that holds Year-to-Date Direct Loan Summary information, presenting aggregated disbursement figures reported to the U.S. Department of Education for the Federal Direct Loan program. The view is documented as VALID in both Oracle EBS 12.1.1 and 12.2.2, and is flagged as a "Full View" BI system view rather than an application-facing transactional object. In practice, it functions as a reporting and reconciliation layer over Direct Loan disbursement summaries, allowing institutions to extract booked and unbooked gross, fee, interest rebate, and net amounts grouped by school, region, state, record type, and statement period. The STATEMENT_END_DATE column, which the user searched for, is the reporting date that anchors each YTD summary record and is central to period-based reconciliation and Common Origination and Disbursement (COD) reporting.
Underlying Base Objects
The ETRM metadata for this object documents no referenced base objects, which is consistent with Business Intelligence System views in Oracle EBS that are frequently defined over internal staging or summary tables not published in the standard dependency extract. What is firmly documented is the view's FND design data registration (IGF.IGFFV_DL_YTD_SUMMARY) and its status as a valid BIS view. Its column set — including YEAR_TO_DATE_DISB_SUMMARY_ID, BATCH_ID, and standardized WHO audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) — indicates it is defined over a persistent Direct Loan year-to-date disbursement summary base table in the IGF schema. The presence of WHO columns confirms the underlying entity is a standard Oracle EBS table with audit tracking, while BATCH_ID links records to the batch load or COD submission process that populated them.
Key Columns
STATEMENT_END_DATE(DATE) — The statement end date for the report; the primary period identifier for each YTD summary record and the column most commonly used for date-range filtering.RECORD_TYPE— Distinguishes Year-To-Date Summary records from Monthly Summary information.DIRECT_LOAN_SPEC_VERSION— The Direct Loan file format version, indicating the COD reporting specification applied.SCHOOL_CODE,REGION_CODE,STATE_CODE— Institutional and geographic identifiers for aggregation and regulatory reporting.DISBURSEMENT_SUMMARY_TYPE— Classifies the disbursement summary category being reported.BOOKED_GROSS_AMOUNT,BOOKED_FEES_AMOUNT,BOOKED_INTEREST_REBATE,BOOKED_NET_AMOUNT— The gross, fee, interest rebate, and net figures for disbursements actually booked.UNBOOKED_GROSS_AMOUNT,UNBOOKED_FEES_AMOUNT,UNBOOKED_INTEREST_REBATE,UNBOOKED_NET_AMOUNT— The corresponding amounts for disbursements not yet booked.BATCH_ID,RECORD_COUNT,PROCESS_DATE— Batch identifier, record sequence, and processing date for traceability.YEAR_TO_DATE_DISB_SUMMARY_ID— Unique surrogate identifier for each YTD disbursement summary row.
Common Use Cases and Queries
Typical uses include reconciling COD YTD gross and net disbursement totals, validating booked versus unbooked balances by statement period, and auditing batch-level reporting. The STATEMENT_END_DATE column supports period-driven extracts. For example, to retrieve the latest YTD summary by school:
SELECT school_code, statement_end_date, booked_gross_amount, booked_net_amount, unbooked_net_amount
FROM apps.igffv_dl_ytd_summary
WHERE record_type = 'YTD'
AND statement_end_date BETWEEN :p_start_date AND :p_end_date
ORDER BY school_code, statement_end_date;
A second common pattern aggregates booked net amounts across schools for a single statement period to support regulatory filing checks:
SELECT school_code, SUM(booked_net_amount) booked_net
FROM apps.igffv_dl_ytd_summary
WHERE statement_end_date = :p_statement_end_date
GROUP BY school_code;
Because the view is a BIS reporting object, queries should remain read-only and account for the possibility of large volumes by filtering on STATEMENT_END_DATE, SCHOOL_CODE, or BATCH_ID.
-
VIEW: APPS.IGFFV_DL_YTD_SUMMARY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_DL_YTD_SUMMARY, object_name:IGFFV_DL_YTD_SUMMARY, status:VALID,
-
VIEW: APPS.IGFBV_DL_YTD_SUMMARY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_DL_YTD_SUMMARY, object_name:IGFBV_DL_YTD_SUMMARY, status:VALID,
-
View: IGFFV_DL_YTD_SUMMARY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_DL_YTD_SUMMARY, object_name:IGFFV_DL_YTD_SUMMARY, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Year to Date Direct Loan Summary , implementation_dba_data: APPS.IGFFV_DL_YTD_SUMMARY ,
-
View: IGFBV_DL_YTD_SUMMARY
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds Year to Date Direct Loan Summary , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGFBV_DL_YTD_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_DL_YTD_DETAILS, object_name:IGFBV_DL_YTD_DETAILS, status:VALID,
-
View: IGFBV_DL_YTD_SUMMARY
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_DL_YTD_SUMMARY, object_name:IGFBV_DL_YTD_SUMMARY, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Year to Date Direct Loan Summary , implementation_dba_data: APPS.IGFBV_DL_YTD_SUMMARY ,
-
View: IGFBV_DL_YTD_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds Year to Date Direct Loan Details , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_DL_YTD_SUMMARY
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds Year to Date Direct Loan Summary , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGFFV_DL_YTD_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_DL_YTD_DETAILS, object_name:IGFFV_DL_YTD_DETAILS, status:VALID,
-
View: IGFFV_DL_YTD_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_DL_YTD_DETAILS, object_name:IGFFV_DL_YTD_DETAILS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Year to Date Direct Loan Details , implementation_dba_data: APPS.IGFFV_DL_YTD_DETAILS ,
-
View: IGFBV_DL_YTD_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_DL_YTD_DETAILS, object_name:IGFBV_DL_YTD_DETAILS, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Year to Date Direct Loan Details , implementation_dba_data: APPS.IGFBV_DL_YTD_DETAILS ,
-
View: IGFFV_DL_YTD_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds Year to Date Direct Loan Details , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.PER_DIF_STMT_REPORT
12.2.2
-
PACKAGE BODY: APPS.PER_DIF_STMT_REPORT
12.1.1
-
APPS.PER_DIF_STMT_REPORT dependencies on HR_UTILITY
12.1.1
-
APPS.PER_DIF_STMT_REPORT dependencies on HR_UTILITY
12.2.2
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,