Search Results igf_sl_dl_pnote_resp_all
Overview
IGF_SL_DL_PNOTE_RESP_ALL is a table within the IGF (Financial Aid) product module of Oracle E-Business Suite, owned by the IGF schema. It stores the response records returned from the Direct Loan Promissory Note Acknowledgement file that is uploaded into the system. In the context of the U.S. Department of Education Direct Loan processing lifecycle, this table captures the acknowledgement outcomes that the institution receives after submitting promissory note data—acceptance, rejection, and related status codes—so that downstream financial aid processing can reconcile loan originations against federal responses. The object is documented as VALID and is present in the ETRM reference for both EBS 12.1.1 and 12.2.2, with 21 documented columns in the 12.1.1 physical schema.
From a Data Vault modeling perspective, the FK structure suggests a satellite-leaning classification. The table carries a single-column surrogate primary key (DLPNR_ID) and references a parent batch table, which is characteristic of an insert-style satellite attached to a batch hub or link. This classification is a modeling heuristic derived from the foreign key topology rather than a documented designation, and it simply indicates that the table records descriptive response attributes keyed to a parent entity.
Key Information Stored
The primary key is documented as IGF_SL_DL_PNOTE_RESP_ALL_PK, defined on the DLPNR_ID column, and a unique index IGF_SL_DL_PNOTE_RESP_ALL_U1 also covers DLPNR_ID as a business-key candidate. The most significant columns are:
- DLPNR_ID — surrogate primary key uniquely identifying each promissory note response record.
- DBTH_ID — foreign key to IGF_SL_DL_BATCH_ALL, tying the response to its originating upload batch.
- PNOTE_ACK_DATE — date the promissory note acknowledgement was received or processed.
- PNOTE_BATCH_ID — the promissory note batch identifier assigned during processing.
- LOAN_NUMBER — the federal loan number the response pertains to, enabling reconciliation to the borrower's loan.
- PNOTE_STATUS — the acknowledgement status returned for the promissory note.
- PNOTE_REJ_CODES — rejection codes describing why a note was rejected.
- PNOTE_ACCEPT_AMT — the accepted promissory note amount.
- MPN_IND and ELEC_MPN_IND — Master Promissory Note and electronic MPN indicators.
- STATUS — the processing status of the response row.
- ORG_ID — operating unit, supporting multi-org security.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent request and program context for the load.
Common Use Cases and Queries
Typical usage reconciles uploaded federal acknowledgements against internal loan records, reports rejection reasons, and confirms accepted amounts. A common pattern joins responses to their batch:
- Rejection analysis:
SELECT LOAN_NUMBER, PNOTE_STATUS, PNOTE_REJ_CODES FROM IGF_SL_DL_PNOTE_RESP_ALL WHERE PNOTE_STATUS = 'R'; - Batch reconciliation:
SELECT r.LOAN_NUMBER, r.PNOTE_ACCEPT_AMT FROM IGF_SL_DL_PNOTE_RESP_ALL r, IGF_SL_DL_BATCH_ALL b WHERE r.DBTH_ID = b.DBTH_ID; - Accepted-amount totals by operating unit:
SELECT ORG_ID, SUM(PNOTE_ACCEPT_AMT) FROM IGF_SL_DL_PNOTE_RESP_ALL GROUP BY ORG_ID;
Reporting commonly drives compliance submissions and reconciliation dashboards tracking note acceptance rates over time.
Related Objects
- IGF_SL_DL_BATCH_ALL — parent batch table joined on DBTH_ID, providing the upload batch context.
- IGF_SL_DL_PDET_RESP — detail response table referencing DLPNR_ID; provides line-level promissory note detail for each response record. This relationship is documented as a foreign key from IGF_SL_DL_PDET_RESP.DLPNR_ID to this table.
- IGF_SL_DL_PNOTE_RESP_ALL_PK / _U1 — primary key constraint and unique index on DLPNR_ID.
- IGF_SL_DL_PNOTE_RESP_ALL.DBTH_ID — foreign key column linking to the batch table.
Those tables form the core dependency chain for Direct Loan promissory note acknowledgement processing within the Financial Aid module.
-
Table: IGF_SL_DL_PNOTE_RESP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_PNOTE_RESP_ALL, object_name:IGF_SL_DL_PNOTE_RESP_ALL, status:VALID, product: IGF - Financial Aid , description: Stores the response records from the Direct Loan Promissory Note Acknowledgement file uploaded into the system. , implementation_dba_data: IGF.IGF_SL_DL_PNOTE_RESP_ALL ,
-
Table: IGF_SL_DL_PNOTE_RESP_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the response records from the Direct Loan Promissory Note Acknowledgement file uploaded into the system. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGF_SL_DL_PNOTE_RESP_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_SL_DL_PNOTE_RESP_ALL, status:VALID,
-
APPS.IGF_SL_DL_PNOTE_RESP_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGFBV_DL_PROM_NOTE_RESPONSES
12.1.1
-
VIEW: APPS.IGFFV_DL_PROM_NOTE_RESPONSES
12.1.1
-
TABLE: IGF.IGF_SL_DL_PNOTE_RESP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_PNOTE_RESP_ALL, object_name:IGF_SL_DL_PNOTE_RESP_ALL, status:VALID,
-
VIEW: APPS.IGF_SL_DL_PNOTE_RESP
12.1.1
-
Table: IGF_SL_DL_BATCH_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_BATCH_ALL, object_name:IGF_SL_DL_BATCH_ALL, status:VALID, product: IGF - Financial Aid , description: Maintains the Direct Loan batch information sent or received , implementation_dba_data: IGF.IGF_SL_DL_BATCH_ALL ,
-
Table: IGF_SL_DL_PDET_RESP
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_PDET_RESP, object_name:IGF_SL_DL_PDET_RESP, status:VALID, product: IGF - Financial Aid , description: Stores the response records from the Direct Loan Promissory note acknowledgment file uploaded into the system , implementation_dba_data: IGF.IGF_SL_DL_PDET_RESP ,
-
Table: IGF_SL_DL_BATCH_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Maintains the Direct Loan batch information sent or received , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_SL_DL_PDET_RESP
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Stores the response records from the Direct Loan Promissory note acknowledgment file uploaded into the system , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_SL_DL_PNOTE_RESP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_PNOTE_RESP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_DL_PNOTE_RESP_PKG, status:VALID,
-
View: IGFBV_DL_PROM_NOTE_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_DL_PROM_NOTE_RESPONSES, object_name:IGFBV_DL_PROM_NOTE_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Financial Aid Direct Loan Promissory Note Responses , implementation_dba_data: APPS.IGFBV_DL_PROM_NOTE_RESPONSES ,
-
View: IGFFV_DL_PROM_NOTE_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_DL_PROM_NOTE_RESPONSES, object_name:IGFFV_DL_PROM_NOTE_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Financial Aid Direct Loan Promissory Note Responses , implementation_dba_data: APPS.IGFFV_DL_PROM_NOTE_RESPONSES ,
-
View: IGFFV_DL_PROM_NOTE_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds Financial Aid Direct Loan Promissory Note Responses , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_PNOTE_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_RESP, object_name:IGF_SL_DL_PNOTE_RESP, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_DL_PNOTE_RESP ,
-
View: IGFBV_DL_PROM_NOTE_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds Financial Aid Direct Loan Promissory Note Responses , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_PNOTE_RESP
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGF_SL_DL_PNOTE_ACK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_DL_PNOTE_ACK, status:VALID,
-
VIEW: APPS.IGF_SL_DL_PNOTE_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_PNOTE_RESP, object_name:IGF_SL_DL_PNOTE_RESP, status:VALID,
-
PACKAGE BODY: APPS.IGF_SL_DL_LI_IMP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_DL_LI_IMP_PKG, status:VALID,
-
VIEW: APPS.IGFBV_DL_PROM_NOTE_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_DL_PROM_NOTE_RESPONSES, object_name:IGFBV_DL_PROM_NOTE_RESPONSES, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.IGFFV_DL_PROM_NOTE_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_DL_PROM_NOTE_RESPONSES, object_name:IGFFV_DL_PROM_NOTE_RESPONSES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
APPS.IGF_SL_DL_PNOTE_ACK dependencies on IGF_SL_DL_PNOTE_RESP_ALL
12.1.1
-
APPS.IGF_SL_DL_PNOTE_RESP_PKG dependencies on IGF_SL_DL_PNOTE_RESP_ALL
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG dependencies on IGF_SL_DL_PNOTE_RESP_ALL
12.1.1
-
APPS.IGF_SL_DL_PNOTE_RESP_PKG dependencies on IGF_SL_DL_PNOTE_RESP_PKG
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG SQL Statements
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
PACKAGE BODY: APPS.IGF_SL_DL_LI_IMP_PKG
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
12.1.1 DBA Data
12.1.1