Search Results igf_sl_dl_lor_resp_all
Overview
IGF_SL_DL_LOR_RESP_ALL is a Financial Aid module table in Oracle E-Business Suite (documented across 12.1.1 and 12.2.2). It stores the Loan Origination Center's (LOC) response data returned after a Direct Loan origination batch is submitted. In the federal student loan lifecycle, institutions transmit origination records to the LOC and subsequently receive acknowledgements, statuses, and rejected-record details; this table persists those inbound responses at the batch/loan-number grain. The IGF product is flagged as obsolete in the ETRM documentation, and the object is explicitly noted as "Not implemented in this database" in the reference environment, meaning it exists in the shipped schema but is not populated in every deployment.
From a modeling perspective, the FK structure—a single reference from this table to IGF_SL_DL_BATCH_ALL via DBTH_ID—suggests a satellite-leaning classification: the table describes attributes of a parent batch entity rather than acting as an independent hub or a many-to-many link. Analysts should treat LOR_RESP_NUM as a technical surrogate key and DBTH_ID as the join path to the associated batch record.
Key Information Stored
The table carries 23 documented columns. The most significant are:
- LOR_RESP_NUM — surrogate primary key (IGF_SL_DL_LOR_RESP_ALL_PK) and also the single documented unique index (IGF_SL_DL_LOR_RESP_ALL_U1), making it the effective business-key candidate.
- DBTH_ID — foreign key to IGF_SL_DL_BATCH_ALL, tying each response row to its originating submission batch.
- ORIG_BATCH_ID — the origination batch identifier as understood by the LOC or upstream process.
- LOAN_NUMBER — the individual loan identifier to which the response applies.
- ORIG_ACK_DATE — the date the origination acknowledgement was received.
- ORIG_STATUS_FLAG — the LOC's disposition of the origination record (e.g., accepted versus rejected).
- ORIG_REJECT_REASONS — the reason codes or text describing why an origination was rejected.
- PNOTE_STATUS, PNOTE_ID, PNOTE_ACCEPT_AMT — the promissory note status, identifier, and accepted amount reported back by the LOC.
- LOAN_AMOUNT_ACCEPTED — the loan amount the LOC actually accepted, which may differ from the requested amount.
- STATUS — the row's processing status within the EBS application.
- ELEC_MPN_IND — indicates whether an electronic Master Promissory Note was used.
- ORG_ID — the operating unit, supporting multi-org data access.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard EBS audit columns; additionally REQUEST_ID and PROGRAM_ID / PROGRAM_APPLICATION_ID / PROGRAM_UPDATE_DATE identify the concurrent request and concurrent program that produced the record.
Common Use Cases and Queries
Typical usage centers on reconciliation and exception reporting: comparing submitted origination amounts against accepted amounts, identifying rejected loans and their reasons, and tracking acknowledgement lag. A representative query joining the response table to its parent batch is:
SELECT r.LOR_RESP_NUM, r.LOAN_NUMBER, r.ORIG_STATUS_FLAG, r.ORIG_REJECT_REASONS, r.LOAN_AMOUNT_ACCEPTED, r.ORIG_ACK_DATE FROM IGF_SL_DL_LOR_RESP_ALL r WHERE r.DBTH_ID = :batch_id;- Exception report:
SELECT LOAN_NUMBER, ORIG_REJECT_REASONS FROM IGF_SL_DL_LOR_RESP_ALL WHERE ORIG_STATUS_FLAG = 'R' AND ORG_ID = :org_id; - Audit/concurrent-request trace: filter by REQUEST_ID to link responses back to the specific batch submission run.
- Promissory note reporting: aggregate PNOTE_ACCEPT_AMT and PNOTE_STATUS to monitor electronic MPN completion rates.
Related Objects
- IGF_SL_DL_BATCH_ALL — parent batch table; joined on IGF_SL_DL_LOR_RESP_ALL.DBTH_ID = IGF_SL_DL_BATCH_ALL.DBTH_ID (the only documented FK).
- IGF_SL_DL_LOR_RESP_ALL_PK / _U1 — primary key and unique index on LOR_RESP_NUM, enforcing row identity.
- Downstream Financial Aid objects that consume LOC responses (loan/disbursement processing and reconciliation reports) rely on LOAN_NUMBER and ORIG_BATCH_ID to correlate responses with origination submissions.
- Standard concurrent program metadata (REQUEST_ID, PROGRAM_ID) links rows to the request that populated them, useful in EBS request-diagnostic tooling.
Because the IGF module is documented as obsolete and the table is not implemented in the reference database, adopters should confirm population and column usage against their own instance before relying on it for reporting.
-
Table: IGF_SL_DL_LOR_RESP_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Maintains the loan origination's response data from the Loan Origination Center , implementation_dba_data: Not implemented in this database ,
-
Table: IGF_SL_DL_LOR_RESP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_LOR_RESP_ALL, object_name:IGF_SL_DL_LOR_RESP_ALL, status:VALID, product: IGF - Financial Aid , description: Maintains the loan origination's response data from the Loan Origination Center , implementation_dba_data: IGF.IGF_SL_DL_LOR_RESP_ALL ,
-
VIEW: APPS.IGFBV_DL_ORIG_BATCH_RESPONSES
12.1.1
-
VIEW: APPS.IGFFV_DL_ORIG_BATCH_RESPONSES
12.1.1
-
SYNONYM: APPS.IGF_SL_DL_LOR_RESP_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGF_SL_DL_LOR_RESP_ALL, status:VALID,
-
APPS.IGF_SL_DL_LOR_RESP_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGF_SL_DL_LOR_RESP
12.1.1
-
TABLE: IGF.IGF_SL_DL_LOR_RESP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_LOR_RESP_ALL, object_name:IGF_SL_DL_LOR_RESP_ALL, status:VALID,
-
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_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 ,
-
View: IGFBV_DL_ORIG_BATCH_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_DL_ORIG_BATCH_RESPONSES, object_name:IGFBV_DL_ORIG_BATCH_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Direct Loan Origination Batch Responses , implementation_dba_data: APPS.IGFBV_DL_ORIG_BATCH_RESPONSES ,
-
PACKAGE BODY: APPS.IGF_SL_DL_LOR_RESP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_LOR_RESP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_SL_DL_LOR_RESP_PKG, status:VALID,
-
View: IGFFV_DL_ORIG_BATCH_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_DL_ORIG_BATCH_RESPONSES, object_name:IGFFV_DL_ORIG_BATCH_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Direct Loan Origination Batch Responses , implementation_dba_data: APPS.IGFFV_DL_ORIG_BATCH_RESPONSES ,
-
View: IGFBV_DL_ORIG_BATCH_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds Direct Loan Origination Batch Responses , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_LOR_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_LOR_RESP, object_name:IGF_SL_DL_LOR_RESP, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_DL_LOR_RESP ,
-
View: IGFFV_DL_ORIG_BATCH_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds Direct Loan Origination Batch Responses , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_LOR_RESP
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_SL_DL_LOR_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_LOR_RESP, object_name:IGF_SL_DL_LOR_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,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.IGFBV_DL_ORIG_BATCH_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_DL_ORIG_BATCH_RESPONSES, object_name:IGFBV_DL_ORIG_BATCH_RESPONSES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.IGFFV_DL_ORIG_BATCH_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_DL_ORIG_BATCH_RESPONSES, object_name:IGFFV_DL_ORIG_BATCH_RESPONSES, status:VALID,
-
APPS.IGF_SL_DL_LOR_RESP_PKG dependencies on IGF_SL_DL_LOR_RESP_ALL
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG dependencies on IGF_SL_DL_LOR_RESP_ALL
12.1.1
-
APPS.IGF_SL_DL_LOR_RESP_PKG dependencies on IGF_SL_DL_LOR_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
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,