Search Results reference_description
Overview
LNS_LOAN_SUMMARY_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the LNS (Loans) product family. Its documented purpose is to present consolidated loan summary information in a single, denormalized result set. Rather than requiring report authors and integrators to join the loan header table to multiple lookup, currency, resource, and party tables, the view encapsulates those joins and exposes a flat structure of loan attributes alongside their decoded meanings.
The view is defined with status VALID and is available in both EBS 12.1.1 and 12.2.2. Because it draws on standard LNS base objects such as LNS_LOAN_HEADERS and LNS_LOAN_TYPES, it is a convenient entry point for operational and analytical reporting on the loan portfolio without direct dependency on the underlying normalized schema. The view is read-only by nature.
Underlying Base Objects
The documented base objects referenced by the view are LNS_LOAN_HEADERS (synonym), LNS_LOAN_TYPES (synonym), LNS_LOOKUPS (view), FND_CURRENCIES_VL (view), JTF_RS_RESOURCE_EXTNS (synonym), HZ_PARTIES (synonym), and the packages LNS_FIN_UTILS and FND_GLOBAL.
LNS_LOAN_HEADERS_ALL supplies the primary loan driving table, contributing identifiers, amounts, dates, status codes, reference data, and the ATTRIBUTE1 through ATTRIBUTE20 descriptive flexfield columns. LNS_LOAN_TYPES is outer-joined to resolve LOAN_TYPE_NAME. LNS_LOOKUPS is referenced multiple times to decode status, loan class, loan subtype, loan purpose, and both the standard and amortized period meanings. FND_CURRENCIES_VL provides the currency name. JTF_RS_RESOURCE_EXTNS is joined on LOAN_ASSIGNED_TO to return the assigned employee's name components, filtered to RESOURCE category 'EMPLOYEE'. HZ_PARTIES supplies the contact party name. LNS_FIN_UTILS.GETACTIVERATE derives the active interest rate, and FND_GLOBAL is used for session context such as ORG_ID. A record is returned only when the header is unclosed (END_DATE is null) or the current date is within the record's effective window.
Key Columns
- LOAN_ID, ORG_ID, LOAN_NUMBER — primary identifier, operating unit, and business-facing loan number.
- LOAN_TYPE_NAME — decoded loan type; this is the column most directly associated with the user's "loan_type" search term.
- STATUS, LOAN_CLASS, LOAN_SUBTYPE, LOAN_PURPOSE — decoded meanings for the header's classification and status code columns.
- LOAN_CURRENCY, NAME — currency code and its descriptive name.
- REQUESTED_AMOUNT, FUNDED_AMOUNT — the loan's requested versus disbursed principal.
- LOAN_APPLICATION_DATE, LOAN_APPROVAL_DATE, LOAN_START_DATE, LOAN_MATURITY_DATE, LOAN_CLOSING_DATE, END_DATE — the life-cycle date set.
- LOAN_TERM / PERIODLKUP.MEANING and AMORTIZED_TERM / AMORT_PERIODLKUP.MEANING — term values with their period uom meanings.
- Active rate — the value returned by LNS_FIN_UTILS.GETACTIVERATE, an unnamed expression column in the select list.
- Reference columns — REFERENCE_ID, REFERENCE_TYPE, REFERENCE_NUMBER, REFERENCE_DESCRIPTION, REFERENCE_TYPE_ID.
- Party and assignment columns — PRIMARY_BORROWER_ID, CUST_ACCOUNT_ID, BILL_TO_ACCT_SITE_ID, LOAN_ASSIGNED_TO with SOURCE_NAME, and CON_PARTY.PARTY_NAME.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–20 — descriptive flexfield context and segments.
- Miscellaneous — GL_DATE, COLLATERAL_PERCENT, CREDIT_REVIEW_FLAG, and the exchange rate triplet EXCHANGE_RATE_TYPE, EXCHANGE_DATE, EXCHANGE_RATE.
Common Use Cases and Queries
Typical uses include loan portfolio listings, exposure and maturity analysis, loan-type breakdowns, and feed extracts. Because the view already decodes statuses and types, it is efficient for ad hoc queries and Discoverer or BI Publisher reports.
- Filtering by loan type:
SELECT loan_number, loan_type_name, requested_amount FROM lns_loan_summary_v WHERE loan_type_name = :p_type; - Grouping by type and currency:
SELECT loan_type_name, loan_currency, SUM(funded_amount) FROM lns_loan_summary_v GROUP BY loan_type_name, loan_currency; - Maturity window analysis:
SELECT loan_number, loan_maturity_date, funded_amount FROM lns_loan_summary_v WHERE loan_maturity_date BETWEEN :from_date AND :to_date; - Assigned-to detail:
SELECT loan_number, source_name, status FROM lns_loan_summary_v WHERE loan_assigned_to = :resource_id;
Queries should generally constrain by ORG_ID for multi-org environments, and callers should be aware that the active-rate column is positional and unnamed in the view definition.
-
View: LNS_LOAN_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_SUMMARY_V, object_name:LNS_LOAN_SUMMARY_V, status:VALID, product: LNS - Loans , description: View for Loan Summary Information , implementation_dba_data: APPS.LNS_LOAN_SUMMARY_V ,
-
Lookup Type: LNS_LOAN_HEADERS_ALL
12.2.2
product: LNS - Loans , meaning: Loan Header , description: Columns to be tracked in loan history ,
-
Lookup Type: LNS_LOAN_HEADERS_ALL
12.1.1
product: LNS - Loans , meaning: Loan Header , description: Columns to be tracked in loan history ,
-
View: LNS_LOAN_HEADERS_EXT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_HEADERS_EXT_V, object_name:LNS_LOAN_HEADERS_EXT_V, status:VALID, product: LNS - Loans , description: Loans Accounting Header Extract , implementation_dba_data: APPS.LNS_LOAN_HEADERS_EXT_V ,
-
View: LNS_LOAN_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_SUMMARY_V, object_name:LNS_LOAN_SUMMARY_V, status:VALID, product: LNS - Loans , description: View for Loan Summary Information , implementation_dba_data: APPS.LNS_LOAN_SUMMARY_V ,
-
View: LNS_LOAN_HEADERS_EXT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_HEADERS_EXT_V, object_name:LNS_LOAN_HEADERS_EXT_V, status:VALID, product: LNS - Loans , description: Loans Accounting Header Extract , implementation_dba_data: APPS.LNS_LOAN_HEADERS_EXT_V ,