Search Results orig_status_flag
Overview
APPS.IGF_SL_DL_LOR_RESP is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 Financials/Student systems schema (IGF), part of the Oracle Financial Aid module's Student Loan (SL) "Direct Loan" (DL) processing area. The view exposes Letter of Responsibility (LOR) response data captured from the Common Origination and Disbursement (COD) interface used by Title IV federal student aid processing. Its FND Design Data reference (IGF.IGF_SL_DL_LOR_RESP) indicates it is a registered, translatable design object within the IGF application. The object is documented as VALID and carries a "multi-org" view type designation, meaning queries against it are automatically restricted by the operating unit (ORG_ID) of the current session.
The view is a thin projection over the underlying _ALL table and is intended primarily for reporting, inquiry, and integration lookups rather than for transactional data entry. The ORIG_STATUS_FLAG column, which featured in the user's search, is a VARCHAR2(30) field carrying the originating (COD-side) status indicator for the LOR response — typically values distinguishing accepted, rejected, pending, or awaiting-action states returned by the federal processor.
Underlying Base Objects
According to the documented dependency information, APPS.IGF_SL_DL_LOR_RESP references exactly one base object: APPS.IGF_SL_DL_LOR_RESP_ALL. The _ALL table is the multi-org-enabled master table, storing records for all operating units. The view applies the standard multi-org security predicate, effectively filtering _ALL rows to those matching the session's ORG_ID, so the view presents operating-unit-scoped data while the underlying table retains the full enterprise dataset.
Downstream, the view is referenced by two dependency components: IGF_SL_DL_ORIG_ACK and IGF_SL_REJ_WF. This confirms the view participates in both the origination acknowledgement processing logic and the loan rejection workflow logic, making ORIG_STATUS_FLAG and the related PNOTE/ORIG columns directly relevant to those functional areas.
Key Columns
- LOR_RESP_NUM — Primary identifier for the letter of responsibility response record.
- DBTH_ID — Identifier linking the response to the borrower/data batch or disbursement record.
- ORIG_BATCH_ID — Batch identifier from the originating COD transmission.
- LOAN_NUMBER — The federal loan number associated with the LOR response.
- ORIG_ACK_DATE — Date the originating acknowledgement was received.
- ORIG_STATUS_FLAG — The COD-returned status flag for the LOR response (e.g., accepted, rejected, pending).
- ORIG_REJECT_REASONS — Coded reason(s) for rejection returned by the originator.
- PNOTE_STATUS / PNOTE_ID / PNOTE_ACCEPT_AMT — Promissory note status, identifier, and accepted amount.
- LOAN_AMOUNT_ACCEPTED — Accepted loan amount on the response.
- STATUS — Internal processing status of the LOR response record.
- ORG_ID — Operating unit, the multi-org discriminator applied by the view.
- ELEC_MPN_IND — Electronic Master Promissory Note indicator.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE.
Common Use Cases and Queries
Typical scenarios include reconciling COD acknowledgement statuses, identifying rejected LOR responses requiring workflow action, and reporting accepted loan amounts by batch or borrower.
SELECT LOR_RESP_NUM, LOAN_NUMBER, ORIG_BATCH_ID,
ORIG_STATUS_FLAG, ORIG_ACK_DATE, STATUS
FROM APPS.IGF_SL_DL_LOR_RESP
WHERE ORIG_STATUS_FLAG = 'R';
SELECT ORIG_BATCH_ID, COUNT(*) AS RESPONSES,
SUM(LOAN_AMOUNT_ACCEPTED) AS ACCEPTED_AMT
FROM APPS.IGF_SL_DL_LOR_RESP
WHERE ORIG_ACK_DATE >= :from_date
GROUP BY ORIG_BATCH_ID;
Because the view is multi-org filtered, ORG_ID need not be supplied explicitly when querying within a properly initialized session; the ORG_ID column remains available for verification and reporting. Queries should be directed to the view rather than the _ALL table to inherit operating-unit security.
-
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,
-
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 ,
-
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,
-
View: IGF_SL_DL_LOR_RESP
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_SL_DL_LOR_RESP_PKG SQL Statements
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 ,
-
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: 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: 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_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
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: 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,
-
PACKAGE BODY: APPS.IGF_SL_DL_LOR_RESP_PKG
12.1.1
-
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,
-
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_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,
-
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,
-
APPS.IGF_SL_LOR_PKG SQL Statements
12.1.1
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.1.1
product: IGF - Financial Aid , meaning: Loan Fields , description: Loan Fields ,
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: Loan Fields , description: Loan Fields ,
-
PACKAGE BODY: APPS.IGF_SL_UPLOAD_XML
12.1.1
-
APPS.IGF_SL_LOR_LOC_HISTORY_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_LOR_LOC_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_SL_LOR
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_SL_LOR_LOC_ALL
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_SL_LOR_LOC
12.1.1
-
APPS.IGF_SL_UPLOAD_XML dependencies on IGF_SL_LOANS
12.1.1
-
APPS.IGF_SL_UPLOAD_XML SQL Statements
12.1.1
-
APPS.IGF_SL_LOR_PKG dependencies on IGF_SL_LOR_ALL
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_HISTORY_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_ORIG_ACK
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,