Search Results pnote_status_date
Overview
The IGF.IGF_SL_PNOTE_STAT_H table is a critical historical data repository within the Oracle E-Business Suite (EBS) Student Loan (SL) module, specifically for Direct Loan processing. Its primary function is to maintain a complete audit trail of all status changes for promissory notes associated with loan records. This table operates under the IGF (Institutional Grants and Funds) schema and is valid for both EBS releases 12.1.1 and 12.2.2. By capturing each status transition with a timestamp and user information, it provides an immutable history essential for compliance, troubleshooting, and reporting on the lifecycle of a student loan's promissory note, from origination through to its final status.
Key Information Stored
The table's structure is designed to capture the core status event and standard EBS audit information. The most significant columns include DLPNH_ID, which serves as the unique primary key identifier for each historical record. The LOAN_ID column links the status change to its specific loan master record. The PNOTE_STATUS and PNOTE_STATUS_DATE columns are the core data points, recording the specific status code (e.g., 'SIGNED', 'DISBURSED', 'CANCELLED') and the precise date and time that status became effective. The table is completed by a full suite of Standard Who columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN) and Standard Who columns for concurrent programs (REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE), which document exactly which user or process initiated each status change.
Common Use Cases and Queries
This table is fundamental for generating audit reports, analyzing loan processing timelines, and reconciling loan statuses. A common operational query involves retrieving the full status history for a specific loan to understand its progression or to identify when a particular status was applied. For reporting, analysts frequently join this table to the main loan master table (e.g., IGF_SL_LOANS) to generate lists of all loans that reached a certain status within a given date range, which is crucial for disbursement or compliance reporting. The historical nature of the table also allows for point-in-time analysis to reconstruct a loan's status on any past date, supporting regulatory audits.
- Retrieve complete status history for a loan:
SELECT * FROM igf.igf_sl_pnote_stat_h WHERE loan_id = &loan_id ORDER BY pnote_status_date; - Find loans that entered a specific status in a period:
SELECT DISTINCT loan_id FROM igf.igf_sl_pnote_stat_h WHERE pnote_status = '&status' AND TRUNC(pnote_status_date) BETWEEN :start_date AND :end_date; - Get the most recent status for a set of loans:
SELECT loan_id, pnote_status, pnote_status_date FROM (SELECT loan_id, pnote_status, pnote_status_date, RANK() OVER (PARTITION BY loan_id ORDER BY pnote_status_date DESC) rnk FROM igf.igf_sl_pnote_stat_h) WHERE rnk = 1;
Related Objects
As per the dependency metadata, the IGF_SL_PNOTE_STAT_H table does not reference other objects but is itself referenced by the APPS synonym of the same name (IGF_SL_PNOTE_STAT_H). This synonym facilitates access for applications and reports running with the APPS schema permissions. The most significant logical relationship is with the main Direct Loan transaction table, likely named IGF_SL_DL_PNOTE or a similar variant, which holds the current, active promissory note data. The LOAN_ID column in this history table is a foreign key to the primary key of the core loan master table, such as IGF_SL_LOANS, establishing the fundamental link between a loan and its status history.
-
TABLE: IGF.IGF_SL_PNOTE_STAT_H
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_PNOTE_STAT_H, object_name:IGF_SL_PNOTE_STAT_H, status:VALID,
-
APPS.IGF_SL_PNOTE_STAT_H_PKG dependencies on IGF_SL_PNOTE_STAT_H
12.1.1
-
VIEW: APPS.IGF_SL_PNOTE_STAT_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_PNOTE_STAT_H_V, object_name:IGF_SL_PNOTE_STAT_H_V, status:VALID,
-
View: IGF_SL_PNOTE_STAT_H_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Retrieves the Promissory Note Status History details , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_PNOTE_STAT_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_PNOTE_STAT_H_V, object_name:IGF_SL_PNOTE_STAT_H_V, status:VALID, product: IGF - Financial Aid , description: Retrieves the Promissory Note Status History details , implementation_dba_data: APPS.IGF_SL_PNOTE_STAT_H_V ,
-
APPS.IGF_SL_PNOTE_STAT_H_PKG SQL Statements
12.1.1
-
View: IGF_SL_CL_RESP_R1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_RESP_R1, object_name:IGF_SL_CL_RESP_R1, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_CL_RESP_R1 ,
-
View: IGF_SL_CL_RESP_R1
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_DB_CL_DISB_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_CL_DISB_RESP, object_name:IGF_DB_CL_DISB_RESP, status:VALID,
-
VIEW: APPS.IGFBV_FFELP_ORIG_RESPONSES
12.1.1
-
View: IGF_DB_CL_DISB_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_CL_DISB_RESP, object_name:IGF_DB_CL_DISB_RESP, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_DB_CL_DISB_RESP ,
-
View: IGF_SL_LOR_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_DTLS_V, object_name:IGF_SL_LOR_DTLS_V, status:VALID, product: IGF - Financial Aid , description: Obsolete , implementation_dba_data: APPS.IGF_SL_LOR_DTLS_V ,
-
VIEW: APPS.IGFFV_FFELP_ORIG_RESPONSES
12.1.1
-
View: IGF_DB_CL_DISB_RESP
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_CL_RESP_R1
12.1.1
-
View: IGF_SL_LOR_DTLS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Obsolete , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_SL_LI_ORG_DISB_INTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LI_ORG_DISB_INTS, object_name:IGF_SL_LI_ORG_DISB_INTS, status:VALID,
-
View: IGF_SL_LOR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR, object_name:IGF_SL_LOR, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR ,
-
View: IGF_SL_LOR
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_LOR_DTLS_V
12.1.1
-
VIEW: APPS.IGF_SL_CL_RESP_R1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_RESP_R1, object_name:IGF_SL_CL_RESP_R1, status:VALID,
-
View: IGFFV_FFELP_ORIG_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FFELP_ORIG_RESPONSES, object_name:IGFFV_FFELP_ORIG_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds FFELP Origination Response Details , implementation_dba_data: APPS.IGFFV_FFELP_ORIG_RESPONSES ,
-
View: IGFBV_FFELP_ORIG_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds FFELP Origination Response Details , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_DB_CL_DISB_RESP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_DB_CL_DISB_RESP_ALL, object_name:IGF_DB_CL_DISB_RESP_ALL, status:VALID,
-
View: IGFBV_FFELP_ORIG_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_FFELP_ORIG_RESPONSES, object_name:IGFBV_FFELP_ORIG_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds FFELP Origination Response Details , implementation_dba_data: APPS.IGFBV_FFELP_ORIG_RESPONSES ,
-
View: IGF_SL_LOR_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_FFELP_ORIG_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds FFELP Origination Response Details , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_V, object_name:IGF_SL_LOR_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR_V ,
-
View: IGF_SL_LOR_LOC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_LOC, object_name:IGF_SL_LOR_LOC, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOR_LOC ,
-
View: IGF_SL_LOR_LOC
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on FND_DATE
12.1.1
-
APPS.IGF_DB_CL_DISB_RESP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_PNOTE_STAT_H_PKG
12.1.1
-
VIEW: APPS.IGF_SL_LOR
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR, object_name:IGF_SL_LOR, status:VALID,
-
TABLE: IGF.IGF_SL_CL_RESP_R1_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_CL_RESP_R1_ALL, object_name:IGF_SL_CL_RESP_R1_ALL, status:VALID,
-
VIEW: APPS.IGF_SL_LOR_LOC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_LOC, object_name:IGF_SL_LOR_LOC, status:VALID,
-
VIEW: APPS.IGF_SL_LOR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_V, object_name:IGF_SL_LOR_V, status:VALID,
-
APPS.IGF_SL_CL_RESP_R1_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_SL_LOR_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOR_DTLS_V, object_name:IGF_SL_LOR_DTLS_V, status:VALID,
-
TABLE: IGF.IGF_SL_LOR_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_ALL, object_name:IGF_SL_LOR_ALL, status:VALID,
-
TABLE: IGF.IGF_SL_LI_ORIG_INTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LI_ORIG_INTS, object_name:IGF_SL_LI_ORIG_INTS, status:VALID,
-
APPS.IGF_SL_LOR_PKG SQL Statements
12.1.1
-
TABLE: IGF.IGF_SL_LOR_LOC_HISTORY
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_LOC_HISTORY, object_name:IGF_SL_LOR_LOC_HISTORY, status:VALID,
-
TABLE: IGF.IGF_SL_LOR_LOC_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOR_LOC_ALL, object_name:IGF_SL_LOR_LOC_ALL, status:VALID,
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: Loan Fields , description: Loan Fields ,
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.1.1
product: IGF - Financial Aid , meaning: Loan Fields , description: Loan Fields ,
-
PACKAGE BODY: APPS.IGF_DB_CL_DISB_RESP_PKG
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on WF_EVENT
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_LOR_LOC_PKG SQL Statements
12.1.1