Search Results igf_sl_dl_lor_crresp




Overview

The IGF_SL_DL_LOR_CRRESP view is a Financial Aid (IGF) reporting and integration object that resides in the APPS schema of an Oracle E-Business Suite environment. It is registered as a VALID database object in both the 12.1.1 and 12.2.2 releases. The object provides a multi-tenant secured projection over the underlying loan credit response data used by the Direct Loan (DL) processing components of the Oracle Financial Aid product. In EBS terms, this view functions as a business-facing access layer that filters rows according to the operating unit context established by the session, rather than exposing every row of the physical table to every querying application or user.

The underlying data captured by the view relates to loan origination and credit review responses — the outcome of a lender or servicer evaluating a borrower's eligibility for a Direct Loan. Because credit decisions, Master Promissory Note (MPN) statuses, and endorser amounts must be reconciled between the financial aid institution and the Common Origination and Disbursement (COD) process, this view is commonly referenced in concurrent programs, inbound/outbound interfaces, and ad hoc reporting that must be scoped to the correct organization.

Underlying Base Objects

The view is defined over a single base table, IGF_SL_DL_LOR_CRRESP_ALL, aliased within the view text as DLLORCRR. The _ALL suffix indicates that the base table stores rows for all operating units, and the view's defining WHERE clause is responsible for restricting the result set to the current organization. The row identifier exposed as ROW_ID is the physical ROWID of the base table, which supports direct row addressing for updates or joins to less-derived column values. No other documented base objects are referenced; the view performs no joins or unions, so row cardinality matches the qualifying rows of the base table.

Key Columns

Common Use Cases and Queries

Typical usage includes reconciling credit decision responses for a loan, reporting MPN status by operating unit, and joining the view to borrower or loan tables using DBTH_ID or LOAN_NUMBER. Because the view applies organization-level security through USERENV('CLIENT_INFO'), a valid operating unit must be initialized in the session before reliable results are returned. The following query illustrates retrieving credit response records:

SELECT lor_resp_num, dbth_id, loan_number, status,
       credit_decision_date, mpn_status, org_id
FROM   apps.igf_sl_dl_lor_crresp
WHERE  loan_number = :loan_number;

For integration or feed extraction, the WHO and concurrent program columns allow a process to identify records created by a specific request:

SELECT row_id, lor_resp_num, loan_number, endorser_amount
FROM   apps.igf_sl_dl_lor_crresp
WHERE  request_id = :request_id
AND    status = 'NEW';