Search Results borw_lender_id
Overview
IGF_SL_LOR_DTLS_V is a reporting view historically shipped within the Oracle E-Business Suite Financial Aid (IGF) module. In the 12.1.1 and 12.2.2 releases it is classified as obsolete, and the ETRM repository documents no active implementation of the object in a current database. The view was designed to expose loan origination and disbursement detail — specifically the relationship between a student loan award and its corresponding loan origination record — in a single flattened row for downstream reporting and integration consumption.
Functionally, IGF_SL_LOR_DTLS_V joins award-level loan data to loan origination data, presenting borrower determination, promissory note life cycle, credit decision, and loan period attributes side by side. Because the underlying Federal Family Education Loan (FFEL) processing has been retired from the product line, the view persists only as a legacy artifact; any EBS instance upgraded from an earlier release may still carry the compiled definition even though no runtime process references it.
Underlying Base Objects
The ETRM metadata records no referenced base objects for this view, which is consistent with its obsolete status — the underlying tables were removed from the shipped schema before the 12.2.2 documentation baseline was captured. The embedded view text, however, shows the view was defined over at least two source relations:
- An award view (aliased AWDV), supplying BASE_ID, AWARD_ID, STUDENT_ID, FUND_ID, calendar and fund attributes, and offered/accepted amounts.
- A loan origination record table (aliased LOR), supplying ORIGINATION_ID, school certification date, origination batch and acknowledgement data, credit decision fields, promissory note attributes, and serial loan codes.
- A loan award record table (aliased LAR), supplying LOAN_ID, LOAN_NUMBER, loan period dates, loan status history, ACTIVE flags, borrower determination code, and the join key to LAR.ROW_ID.
- A lookup view (aliased LKV), joined to translate BORW_DETRM_CODE into a descriptive MEANING.
The view therefore sits one level above the transactional loan tables, materializing a denormalized picture that would otherwise require at least a four-way join.
Key Columns
- LAR_ROWID / LOR_ROWID — Row identifiers for the loan award record and loan origination record, used as surrogate keys in reporting extracts.
- LOAN_ID, ORIGINATION_ID, LOAN_NUMBER — Core loan identity keys linking award, origination, and lender-facing loan number.
- BASE_ID, AWARD_ID, STUDENT_ID, FUND_ID — Award context, allowing aggregation by student or fund.
- LOAN_TYPE, LOAN_TYPE_NUM — Derived from FUND_CODE, with LOAN_TYPE_NUM concatenating fund code and sequence number.
- LOAN_AMT_OFFERED, LOAN_AMT_ACCEPTED — Awarded versus accepted loan amounts.
- LOAN_PER_BEGIN_DATE, LOAN_PER_END_DATE — Loan period boundaries.
- LOAN_STATUS, LOAN_STATUS_DATE, ACTIVE, ACTIVE_DATE — Current and historical loan status tracking.
- BORW_DETRM_CODE / BORW_DETRM — Borrower determination code and its decoded meaning; this is the column family most relevant to the "borw_lender_id" search term, since borrower determination and lender identity were resolved through the loan award and origination tables rather than a dedicated lender ID column within this view.
- ORIG_STATUS_FLAG, ORIG_BATCH_ID, ORIG_BATCH_DATE, ORIG_ACK_DATE — Origination submission and acknowledgement tracking.
- CREDIT_OVERRIDE, CREDIT_DECISION_DATE — Credit review outcome data.
- PNOTE_* columns — Promissory note delivery code, status, print indicator, accepted amount and date, batch, acknowledgement date, and MPN indicator.
- SCH_CERT_DATE, REQ_SERIAL_LOAN_CODE, ACT_SERIAL_LOAN_CODE, UNSUB_ELIG_FOR_HEAL — School certification and serial loan processing attributes.
Common Use Cases and Queries
Because the view is documented as obsolete and not implemented, it should not be used in new development. Historical reporting extracts that reference it — typically for FFEL origination reconciliations, promissory note tracking, and borrower determination audits — may still be encountered during upgrades or data migrations.
A representative query pattern is shown below; it assumes the view exists in the target schema.
- Loan detail by student: SELECT STUDENT_ID, LOAN_TYPE, LOAN_AMT_ACCEPTED, LOAN_STATUS FROM IGF_SL_LOR_DTLS_V WHERE STUDENT_ID = :student_id AND ACTIVE = 'Y';
- Origination reconciliation: SELECT LOAN_NUMBER, ORIGINATION_ID, ORIG_BATCH_ID, ORIG_ACK_DATE FROM IGF_SL_LOR_DTLS_V WHERE ORIG_BATCH_DATE BETWEEN :start_date AND :end_date ORDER BY ORIG_BATCH_DATE;
- Borrower determination audit: SELECT LOAN_ID, BORW_DETRM_CODE, BORW_DETRM, CREDIT_DECISION_DATE FROM IGF_SL_LOR_DTLS_V WHERE BORW_DETRM_CODE IS NOT NULL;
- Promissory note status: SELECT LOAN_NUMBER, PNOTE_STATUS, PNOTE_ACCEPT_AMT, PNOTE_ACCEPT_DATE, PNOTE_MPN_IND FROM IGF_SL_LOR_DTLS_V WHERE PNOTE_STATUS IS NOT NULL;
For 12.1.1 and 12.2.2 environments, the recommended practice is to confirm whether the object is still deployed before depending on it, and to translate any legacy queries against IGF_SL_LOR_DTLS_V into equivalent joins on the surviving loan award, origination, and lookup tables, or into the replacement Financial Aid data model provided by current releases.
-
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 ,
-
PACKAGE BODY: APPS.IGF_SL_REJ_WF
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,
-
APPS.IGF_SL_LAR_CREATION SQL Statements
12.1.1
-
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_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_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,
-
APPS.IGF_SL_DL_PRINT_PNOTE SQL Statements
12.1.1
-
APPS.IGF_SL_CL_VALIDATION 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,
-
PACKAGE BODY: APPS.IGF_SL_CL_VALIDATION
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_PRINT_PNOTE
12.1.1
-
APPS.IGF_SL_DL_ORIG_ACK SQL Statements
12.1.1
-
Lookup Type: IGF_SL_LOAN_FIELDS
12.1.1
product: IGF - Financial Aid , meaning: Loan Fields , description: Loan Fields ,
-
PACKAGE BODY: APPS.IGF_SL_DL_PRINT_MANIFEST
12.1.1
-
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_DL_PNOTE_ACK
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_CL_LI_IMP_PKG dependencies on IGF_SL_LOR_ALL
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on IGF_SL_LOR_ALL
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_ORIG_ACK
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG dependencies on IGF_SL_LOR_ALL
12.1.1
-
APPS.IGF_SL_UPLOAD_XML SQL Statements
12.1.1
-
APPS.IGF_SL_DL_ORIG dependencies on IGF_SL_LOR_ALL
12.1.1
-
APPS.IGF_SL_DL_PNOTE_ACK dependencies on IGF_SL_LOR
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG SQL Statements
12.1.1
-
APPS.IGF_SL_REJ_WF dependencies on IGF_SL_LOR
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LAR_CREATION
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_HISTORY_PKG
12.1.1
-
APPS.IGF_SL_LAR_CREATION dependencies on IGF_SL_LOR_ALL
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_ORIG
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK SQL Statements
12.1.1
-
APPS.IGF_SL_DL_PRINT_PNOTE dependencies on IGF_SL_LOR
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_LOR_LOC_PKG
12.1.1
-
APPS.IGF_SL_DL_ORIG_ACK dependencies on IGF_SL_LOR
12.1.1
-
APPS.IGF_SL_DL_PRINT_MANIFEST dependencies on IGF_SL_LOR
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG dependencies on IGF_SL_LOR
12.1.1
-
APPS.IGF_SL_DL_ORIG dependencies on IGF_SL_LOR
12.1.1