Search Results loan_status
Overview
The APPS.LNS_LOAN_INFO view is a consolidated reporting object within the Oracle E-Business Suite (EBS) Loans (LNS) module, part of the Enterprise Treasury and Risk Management (ETRM) product family. It provides a denormalized, flattened perspective of loan master data joined with customer, loan type, disbursement, and loan adjustment information. Because the view is defined over header-level loan records and their associated disbursements and adjustments, it is commonly referenced in operational reports, custom concurrent programs, and integration extracts that require a single loan-and-related-entity representation.
The defining characteristic of LNS_LOAN_INFO is its use of UNION ALL across three constituent query blocks. Each block returns the loan header attributes (loan number, start date, funded amount, status, class, type) alongside a distinct category of subsidiary record: no child record, a disbursement record, or a loan amount adjustment record. Unused columns in each block are populated with -1 or NULL placeholders, producing a stable, uniform column signature that supports downstream reporting without requiring outer joins. The placeholder values also simplify conditional logic and null handling in reports.
Underlying Base Objects
The view is defined over the following documented base objects, all referenced through APPS synonyms except where noted:
- LNS_LOAN_HEADERS_ALL — the primary loan header table (aliased
trx). - LNS_LOAN_TYPES_VL — the loan type view providing descriptive type names.
- LNS_DISB_HEADERS — the disbursement header table (aliased
disb), joined bytrx.loan_id = disb.loan_id. - LNS_LOAN_AMOUNT_ADJS — the loan amount adjustment table (aliased
ladj). - LNS_LOAN_LINES — a referenced base object for loan line detail.
- HZ_CUST_ACCOUNTS and HZ_PARTIES — Trading Community Architecture tables supplying account number and party name.
- LNS_UTILITY_PUB — the utility package providing
get_lookup_meaning(), used to translate status and class codes into descriptive text.
The joins require a valid customer account (linking to party), a valid loan type, and — in the disbursement and adjustment blocks — a matching child record in LNS_DISB_HEADERS or LNS_LOAN_AMOUNT_ADJS.
Key Columns
- loan_id, loan_number — the loan header identifier and user-visible number.
- party_name, account_number — the borrowing customer's name and account number.
- loan_start_date, funded_amount — the loan's inception date and funded principal.
- LOAN_STATUS, LOAN_CLASS — descriptive meanings resolved via
lns_utility_pub.get_lookup_meaningfor the loan_status and loan_class_code columns. - loan_type_name — the descriptive loan type.
- DISB_HEADER_ID — disbursement header identifier (or
-1when not applicable). - STATUS — the funding status meaning for the disbursement (FUNDING_STATUS lookup).
- disbursement_number — the user-visible disbursement identifier, populated only in the disbursement block. This is the primary column returned when a report requires disbursement-level detail.
- payment_request_date — the date the disbursement payment was requested.
- loan_amount_adj_id, loan_adjustment_description — adjustment identifiers and descriptions from LNS_LOAN_AMOUNT_ADJS.
- loan_line_id, reference_description — loan line identifiers and reference descriptions.
Common Use Cases and Queries
A typical use case is extracting all loans and their disbursements for reconciliation against treasury payment records. The following query filters the disjoint UNION ALL sub-sets produced by the view:
SELECT loan_number,
party_name,
account_number,
disbursement_number,
payment_request_date,
STATUS
FROM apps.lns_loan_info
WHERE disbursement_number IS NOT NULL
ORDER BY loan_number, disbursement_number;
For adjustment reporting, the same view is filtered on the adjustment identifier:
SELECT loan_number,
account_number,
loan_amount_adj_id,
loan_adjustment_description
FROM apps.lns_loan_info
WHERE loan_amount_adj_id > 0;
Because the view resolves status and class codes to descriptive meanings via LNS_UTILITY_PUB, it is well suited to ad-hoc reporting and business-intelligence extracts where code-level translation is undesirable. Reports should account for the synthetic placeholder values (-1, NULL) present in columns irrelevant to each source block, and should apply the appropriate IS NOT NULL or > 0 predicates when targeting a specific child entity such as a disbursement.
Additional practical scenarios include loan portfolio dashboards, customer exposure listings, and integration feeds into external treasury or general ledger systems that require a unified loan-to-disbursement or loan-to-adjustment row shape.
-
Lookup Type: LOAN_STATUS
12.1.1
product: LNS - Loans , meaning: Loan Status ,
-
Lookup Type: LOAN_STATUS
12.2.2
product: LNS - Loans , meaning: Loan Status ,
-
VIEW: APPS.LNS_LOAN_INFO
12.2.2
-
View: LNS_LOAN_INFO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_INFO, object_name:LNS_LOAN_INFO, status:VALID, product: LNS - Loans , description: Loans Accounting Events Informational View , implementation_dba_data: APPS.LNS_LOAN_INFO ,
-
View: LNS_LOAN_INFO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_INFO, object_name:LNS_LOAN_INFO, status:VALID, product: LNS - Loans , description: Loans Accounting Events Informational View , implementation_dba_data: APPS.LNS_LOAN_INFO ,
-
VIEW: APPS.LNS_LOAN_INFO
12.1.1
-
VIEW: LNS.LNS_LOAN_HEADERS_ALL#
12.2.2
-
View: IGF_SL_LOANS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOANS, object_name:IGF_SL_LOANS, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOANS ,
-
View: IGF_SL_LOANS
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.LNS_OCM_ADP_PUB SQL Statements
12.2.2
-
APPS.LNS_OCM_ADP_PUB SQL Statements
12.1.1
-
VIEW: APPS.LNS_LOAN_INFO
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_INFO, object_name:LNS_LOAN_INFO, status:VALID,
-
APPS.XLA_00206_AAD_S_000003_PKG SQL Statements
12.1.1
-
VIEW: APPS.LNS_LOAN_INFO
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_LOAN_INFO, object_name:LNS_LOAN_INFO, status:VALID,
-
TABLE: APPS.LNS_LOAN_DTLS_ALL_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:LNS.LNS_LOAN_DTLS_ALL_MV, object_name:LNS_LOAN_DTLS_ALL_MV, status:VALID,
-
VIEW: APPS.IGF_SL_LOANS
12.1.1
-
View: IGF_SL_COD_REP_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: View used for reporting the various Direct Loan tags in the outbound XML for Direct Loan , implementation_dba_data: Not implemented in this database ,
-
APPS.XLA_00206_AAD_S_000003_PKG SQL Statements
12.2.2
-
View: IGF_SL_COD_REP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_COD_REP_V, object_name:IGF_SL_COD_REP_V, status:VALID, product: IGF - Financial Aid , description: View used for reporting the various Direct Loan tags in the outbound XML for Direct Loan , implementation_dba_data: APPS.IGF_SL_COD_REP_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: APPS.IGF_SL_COD_REP_V
12.1.1
-
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 ,
-
VIEW: APPS.LNS_AMORTIZATION_SCHEDULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_AMORTIZATION_SCHEDULES_V, object_name:LNS_AMORTIZATION_SCHEDULES_V, status:VALID,
-
VIEW: APPS.LNS_AMORTIZATION_SCHEDULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_AMORTIZATION_SCHEDULES_V, object_name:LNS_AMORTIZATION_SCHEDULES_V, status:VALID,
-
VIEW: APPS.LNS_AR_AMORTIZATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_AR_AMORTIZATIONS_V, object_name:LNS_AR_AMORTIZATIONS_V, status:VALID,
-
VIEW: APPS.LNS_AR_AMORTIZATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_AR_AMORTIZATIONS_V, object_name:LNS_AR_AMORTIZATIONS_V, status:VALID,
-
VIEW: APPS.LNS_LOAN_SUMMARY_V
12.2.2
-
VIEW: APPS.LNS_LOAN_SUMMARY_V
12.1.1
-
VIEW: APPS.IGF_SL_LOANS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOANS, object_name:IGF_SL_LOANS, status:VALID,
-
APPS.XLA_00206_AAD_S_000004_PKG SQL Statements
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.LNS_AM_SCHEDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_AM_SCHEDS_V, object_name:LNS_AM_SCHEDS_V, status:VALID,
-
VIEW: APPS.LNS_AM_SCHEDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:LNS.LNS_AM_SCHEDS_V, object_name:LNS_AM_SCHEDS_V, status:VALID,
-
MATERIALIZED VIEW: APPS.LNS_LOAN_DTLS_ALL_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:LNS_LOAN_DTLS_ALL_MV, status:VALID,
-
TABLE: IGF.IGF_SL_LOANS_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LOANS_ALL, object_name:IGF_SL_LOANS_ALL, status:VALID,
-
APPS.XLA_00206_AAD_S_000004_PKG SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.IEX_LOAN_SUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, object_name:IEX_LOAN_SUMMARY_V, status:VALID,
-
VIEW: APPS.IGF_SL_PLUS_LOAN_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_PLUS_LOAN_DETAILS_V, object_name:IGF_SL_PLUS_LOAN_DETAILS_V, status:VALID,
-
VIEW: APPS.IGF_SL_LOANS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOANS_V, object_name:IGF_SL_LOANS_V, status:VALID,
-
VIEW: APPS.IEX_LOAN_SUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, object_name:IEX_LOAN_SUMMARY_V, status:VALID,
-
VIEW: LNS.LNS_LOAN_HEADERS_ALL#
12.2.2
owner:LNS, object_type:VIEW, object_name:LNS_LOAN_HEADERS_ALL#, status:VALID,
-
View: IGF_SL_PLUS_LOAN_DETAILS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: PLUS Loan Details View , implementation_dba_data: Not implemented in this database ,
-
APPS.LNS_BUS_EVENT_SUB_PVT SQL Statements
12.2.2
-
View: IGF_SL_PLUS_LOAN_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_PLUS_LOAN_DETAILS_V, object_name:IGF_SL_PLUS_LOAN_DETAILS_V, status:VALID, product: IGF - Financial Aid , description: PLUS Loan Details View , implementation_dba_data: APPS.IGF_SL_PLUS_LOAN_DETAILS_V ,
-
View: IGF_SL_LOANS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOANS_V, object_name:IGF_SL_LOANS_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOANS_V ,
-
View: IGF_SL_LOANS_V
12.2.2
product: IGF - Financial Aid (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 ,
-
TABLE: LNS.LNS_LOAN_HEADERS_ALL
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_LOAN_HEADERS_ALL, object_name:LNS_LOAN_HEADERS_ALL, status:VALID,
-
Lookup Type: LNS_LOAN_HEADERS_ALL
12.2.2
product: LNS - Loans , meaning: Loan Header , description: Columns to be tracked in loan history ,