Search Results lns_pay_sum_overdue_v
Overview
The LNS_PAY_SUM_OVERDUE_V view is a reporting object within the Oracle E-Business Suite Loans (LNS) module, owned by the APPS schema and validated as of release 12.2.2. It is defined as an "Overdue Payment Summary View," and its purpose is to consolidate, at the loan level, the aggregate amounts that remain outstanding and past due across principal, interest, and fee components of a borrower's amortization schedule. Rather than exposing individual payment schedule rows, the view rolls each qualifying loan into a single summary row containing the summed balances due and a set of indicators describing the count and date range of overdue installments.
Because LNS is closely integrated with Oracle Receivables — loan receivables are represented through AR payment schedules — this view serves as a bridge between the AR payment schedule records that carry the monetary amounts due and the LNS loan header records that carry the loan's lifecycle status. It is typically consumed in delinquency dashboards, loan portfolio reporting, aging analyses, and downstream integrations that require a single, pre-aggregated figure for a loan's overdue exposure. Only loans whose status is one of ACTIVE, DEFAULT, or DELINQUENT contribute non-zero amounts; all other statuses are forced to zero within the CASE expressions.
Underlying Base Objects
The documented base objects referenced by the view are:
- LNS_LOAN_HEADERS_ALL — the driving table, supplying the LOAN_ID and the LOAN_STATUS used in every conditional aggregation. This table holds the master loan record.
- LNS_AMORTIZATION_SCHEDS — joined as AM, providing the AMORTIZATION_SCHEDULE_ID and DUE_DATE used to count and to derive the maximum and minimum overdue due dates.
- AR_PAYMENT_SCHEDULES_ALL — referenced three times, aliased as PSA_PRIN, PSA_INT, and PSA_FEE, one alias each for the principal, interest, and fee payment schedule components. Its AMOUNT_DUE_REMAINING column is the source of the monetary aggregates.
- AR_RECEIVABLE_APPLICATIONS_ALL — listed among the referenced base objects, reflecting the receivables application context from which the payment schedules are maintained, though it is not directly named in the excerpted view text.
The view therefore relates a single loan (one row per LOAN_ID) to its schedule and receivable detail through these joins, collapsing potentially many installment lines into one summarized record.
Key Columns
The view exposes the following aggregate columns, all computed conditionally on loan status:
- LOAN_ID — the grouping key, identifying the loan.
- Summed principal (AMOUNT_DUE_REMAINING from PSA_PRIN) — total principal past due.
- Summed interest (from PSA_INT) — total interest past due.
- Summed fees (from PSA_FEE) — total fee amounts past due.
- Combined overdue total — the sum of principal, interest, and fee amounts due remaining.
- Count of overdue schedules — a COUNT over AMORTIZATION_SCHEDULE_ID where the combined balance exceeds zero.
- Maximum overdue due date (AM.DUE_DATE) — latest overdue installment date.
- Minimum overdue due date (AM.DUE_DATE) — earliest overdue installment date, useful for aging and bucket determination.
NVL is applied throughout so that missing component amounts resolve to zero, while the count and date metrics only include schedules where the combined overdue amount is strictly greater than zero.
Common Use Cases and Queries
The view supports portfolio delinquency reporting, loan-level overdue exposure summaries, and integration feeds. A representative query retrieves loans with any overdue balance and orders them by total exposure:
SELECT LOAN_ID, SUM_PRINCIPAL, SUM_INTEREST, SUM_FEE, SUM_TOTAL, OVERDUE_COUNT, MIN_DUE_DATE, MAX_DUE_DATE FROM APPS.LNS_PAY_SUM_OVERDUE_V WHERE SUM_TOTAL > 0 ORDER BY SUM_TOTAL DESC;
Aging-style analysis can join the minimum due date back to the loan or schedule tables, and case-management workloads frequently filter on the overdue installment count. Because the view is pre-aggregated and status-filtered, it is well suited for dashboard regions, concurrent-program extracts, and downstream interfaces that require one summarized overdue figure per loan.
-
View: LNS_PAY_SUM_OVERDUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_PAY_SUM_OVERDUE_V, object_name:LNS_PAY_SUM_OVERDUE_V, status:VALID, product: LNS - Loans , description: Overdue Payment Summary View , implementation_dba_data: APPS.LNS_PAY_SUM_OVERDUE_V ,
-
View: LNS_PAY_SUM_OVERDUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_PAY_SUM_OVERDUE_V, object_name:LNS_PAY_SUM_OVERDUE_V, status:VALID, product: LNS - Loans , description: Overdue Payment Summary View , implementation_dba_data: APPS.LNS_PAY_SUM_OVERDUE_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.LNS_OCM_ADP_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_OCM_ADP_PUB, status:VALID,
-
PACKAGE BODY: APPS.LNS_OCM_ADP_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_OCM_ADP_PUB, status:VALID,
-
SYNONYM: APPS.LNS_AMORTIZATION_SCHEDS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:LNS_AMORTIZATION_SCHEDS, status:VALID,
-
SYNONYM: APPS.LNS_AMORTIZATION_SCHEDS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:LNS_AMORTIZATION_SCHEDS, status:VALID,
-
PACKAGE BODY: APPS.LNS_WORK_FLOW
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_WORK_FLOW, status:VALID,
-
SYNONYM: APPS.LNS_LOAN_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:LNS_LOAN_HEADERS_ALL, status:VALID,
-
VIEW: APPS.LNS_PAY_SUM_OVERDUE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_PAY_SUM_OVERDUE_V, object_name:LNS_PAY_SUM_OVERDUE_V, status:VALID,
-
SYNONYM: APPS.LNS_LOAN_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:LNS_LOAN_HEADERS_ALL, status:VALID,
-
VIEW: APPS.LNS_PAY_SUM_OVERDUE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_PAY_SUM_OVERDUE_V, object_name:LNS_PAY_SUM_OVERDUE_V, status:VALID,
-
PACKAGE BODY: APPS.LNS_WORK_FLOW
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_WORK_FLOW, status:VALID,
-
SYNONYM: APPS.AR_RECEIVABLE_APPLICATIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_RECEIVABLE_APPLICATIONS_ALL, status:VALID,
-
APPS.LNS_WORK_FLOW SQL Statements
12.1.1
-
SYNONYM: APPS.AR_RECEIVABLE_APPLICATIONS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_RECEIVABLE_APPLICATIONS_ALL, status:VALID,
-
PACKAGE BODY: APPS.LNS_BILLING_UTIL_PUB
12.1.1
-
SYNONYM: APPS.AR_PAYMENT_SCHEDULES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID,
-
SYNONYM: APPS.AR_PAYMENT_SCHEDULES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AR_PAYMENT_SCHEDULES_ALL, status:VALID,
-
APPS.LNS_OCM_ADP_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.LNS_BILLING_UTIL_PUB
12.2.2
-
APPS.LNS_OCM_ADP_PUB SQL Statements
12.1.1
-
APPS.LNS_WORK_FLOW dependencies on LNS_PAY_SUM_OVERDUE_V
12.2.2
-
APPS.LNS_OCM_ADP_PUB dependencies on LNS_PAY_SUM_OVERDUE_V
12.2.2
-
APPS.LNS_OCM_ADP_PUB dependencies on LNS_PAY_SUM_OVERDUE_V
12.1.1
-
APPS.LNS_WORK_FLOW dependencies on LNS_PAY_SUM_OVERDUE_V
12.1.1
-
APPS.LNS_WORK_FLOW SQL Statements
12.2.2
-
eTRM - LNS Tables and Views
12.1.1
description: Loans Terms Table ,
-
eTRM - LNS Tables and Views
12.2.2
description: Loans Terms Table ,
-
APPS.LNS_BILLING_BATCH_PUB dependencies on HR_ALL_ORGANIZATION_UNITS_TL
12.2.2
-
APPS.LNS_BILLING_BATCH_PUB dependencies on LNS_PAY_SUM_V
12.2.2
-
APPS.LNS_WORK_FLOW dependencies on FND_CURRENCY
12.2.2
-
APPS.LNS_WORK_FLOW dependencies on FND_CURRENCY
12.1.1
-
APPS.LNS_BILLING_BATCH_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.LNS_WORK_FLOW
12.1.1
-
APPS.LNS_WORK_FLOW dependencies on LNS_LOAN_HEADERS_ALL
12.1.1
-
APPS.LNS_WORK_FLOW dependencies on LNS_LOAN_HEADERS
12.1.1
-
PACKAGE BODY: APPS.LNS_OCM_ADP_PUB
12.1.1
-
PACKAGE BODY: APPS.LNS_OCM_ADP_PUB
12.2.2
-
APPS.LNS_OCM_ADP_PUB dependencies on LNS_LOAN_HEADERS_ALL
12.2.2
-
APPS.LNS_OCM_ADP_PUB dependencies on LNS_LOAN_HEADERS_ALL
12.1.1
-
APPS.LNS_BILLING_BATCH_PUB dependencies on LNS_AMORTIZATION_SCHEDS
12.2.2
-
APPS.LNS_WORK_FLOW dependencies on LNS_LOAN_HEADERS_ALL
12.2.2
-
APPS.LNS_WORK_FLOW dependencies on LNS_LOAN_HEADERS
12.2.2
-
PACKAGE BODY: APPS.LNS_WORK_FLOW
12.2.2
-
APPS.LNS_OCM_ADP_PUB dependencies on LNS_PARTICIPANTS
12.2.2
-
APPS.LNS_OCM_ADP_PUB dependencies on LNS_PARTICIPANTS
12.1.1