Search Results loan_period_begin_date




Overview

The APPS.IGFFV_DL_PNOTE_STATUS_HISTORY view is a Business Intelligence System (BIS) view in Oracle E-Business Suite, owned by the APPS schema and registered under FND Design Data as IGF.IGFFV_DL_PNOTE_STATUS_HISTORY. Its documented status is VALID. The view is described as the "Full View for the Entity that holds Direct Loan Promissory Note Activities," positioning it as a reporting and integration surface for the Financial Aid / Student Loan module (IGF) where Direct Loan promissory note lifecycle events are tracked.

Rather than storing data itself, the view consolidates promissory note status changes together with the associated person, fund, award year, and loan period attributes. This makes it the canonical read-only source for answering questions about when a borrower's promissory note moved from one status to another and which loan it applied to. Because it is defined as a BIS view, it is intended primarily for analytical querying and downstream extract/load rather than as a transactional table.

Underlying Base Objects

The ETRM metadata documents that IGFFV_DL_PNOTE_STATUS_HISTORY references APPS.HZ_PARTIE (the partner/party entity in Oracle's Trading Community Architecture). This indicates the view denormalizes person identity attributes — person number, first, last, and middle names — from the party model so that loan note history rows can be reported with the borrower's name without a separate join. No further base objects are documented in the excerpt, although the loan, fund, and status columns imply additional IGF loan and fund tables beneath the view. The relationship to HZ_PARTIE is nonetheless the only dependency recorded in the supplied metadata and should be treated as the authoritative link.

Key Columns

Common Use Cases and Queries

Typical uses include auditing promissory note status progression, reconciling loan periods against note activity, and feeding student loan reporting extracts. Since the user searched for loan_period_begin_date, queries filtering or grouping on the loan period are common. A representative query is:

SELECT person_number, person_first_name, person_last_name, fund_code, award_year, loan_number, loan_period_begin_date, loan_period_end_date, _LA:PROM_NOTE_STATUS, prom_note_status_date FROM APPS.IGFFV_DL_PNOTE_STATUS_HISTORY ORDER BY loan_period_begin_date, prom_note_status_date;

Reporting on status changes within a loan period can be achieved by filtering prom_note_status_date between loan_period_begin_date and loan_period_end_date, while per-borrower histories are obtained by constraining person_number or person_id and ordering by prom_note_status_date. These patterns make the view suitable for both operational inquiry and analytical reporting in EBS 12.1.1 and 12.2.2.