Search Results lns_assets
Overview
LNS_ASSETS is a table in the LNS (Loans) product schema of Oracle E-Business Suite, documented as VALID in both the 12.1.1 and 12.2.2 releases. The ETRM metadata defines its purpose succinctly: LNS_ASSETS is used to store the assets of a loan participant. In the Oracle Loans data model, this makes LNS_ASSETS the operational repository for collateral and asset records pledged against, or otherwise associated with, a loan and its obligors. Each row captures a discrete asset — its owner, classification, valuation, custodian, and, where applicable, lien information — thereby supporting credit exposure tracking, collateral monitoring, and participant-level reporting within the Loans module.
Heuristic Data Vault classification mined from the foreign-key structure labels this object satellite-leaning. As a modeling suggestion, LNS_ASSETS behaves primarily as a descriptive satellite: it carries a large payload of descriptive and quantitative attributes (51 documented columns) that change over time, while its four foreign keys to HZ_PARTIES act as secondary contextual references rather than a composite hub key. The single unique business key — LNS_ASSETS_U1 on ASSET_ID — distinguishes it from a pure hub-and-link construction.
Key Information Stored
The table is anchored by its surrogate primary key constraint, LNS_ASSETS_PK, defined on the ASSET_ID column. A second unique index, LNS_ASSETS_U1, is also documented on ASSET_ID, confirming the surrogate identifier is the sole unique business-key candidate on this object.
- ASSET_ID — surrogate primary key, and the unique business-key candidate; used by all downstream references.
- ASSET_OWNER_ID — foreign key to HZ_PARTIES identifying the party that owns the asset.
- ASSET_CLASS_CODE and ASSET_TYPE_CODE — the classification and categorization of the asset record.
- DESCRIPTION — free-text narrative describing the asset.
- VALUATION, CURRENCY_CODE, VALUATION_DATE, and VALUATION_METHOD_CODE — the assessed monetary value, its currency, valuation timestamp, and methodology.
- QUANTITY and UOM_CODE — quantity held and the unit of measure.
- ACQUIRED_ASSET_LOAN_ID — links the asset to the loan against which it was acquired.
- LIEN_AMOUNT — the encumbrance amount recorded against the asset.
- CUSTODIAN_ID and CUSTODIAN_REF_NUM — the party holding the asset in custody and the custodian's reference number.
- START_DATE_ACTIVE, END_DATE_ACTIVE, and NEXT_EVALUATION_DATE — asset lifecycle and revaluation scheduling dates.
- CONTACT_PERS_PARTY_ID and CONTACT_REL_PARTY_ID — contact person and related party references into HZ_PARTIES.
- OBJECT_VERSION_NUMBER — optimistic locking column used by the ORM layer.
The remaining columns are the standard WHO audit set (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN), twenty descriptive ATTRIBUTE flex columns (ATTRIBUTE1 through ATTRIBUTE20) with ATTRIBUTE_CATEGORY, plus appraiser details (APPRAISER_NAME, APPRAISER_PHONE_NUMBER) and reference fields (REFERENCE_TYPE, REFERENCE_NAME).
Common Use Cases and Queries
Typical queries retrieve assets by owner, by loan, or by valuation date. For example, to list all assets owned by a given party:
SELECT asset_id, description, valuation, currency_code, valuation_date FROM lns_assets WHERE asset_owner_id = :party_id;
To find assets requiring revaluation, filter on the scheduled evaluation date:
SELECT asset_id, asset_class_code, next_evaluation_date FROM lns_assets WHERE next_evaluation_date <= SYSDATE;
For collateral or lien reporting, query by LIEN_AMOUNT and ACQUIRED_ASSET_LOAN_ID to aggregate pledged value per loan. Reporting use cases include collateral coverage reports, asset registers by custodian, valuation aging, and asset lifecycle analysis using START_DATE_ACTIVE and END_DATE_ACTIVE. Because ASSET_OWNER_ID, CUSTODIAN_ID, and the two contact party columns all point into HZ_PARTIES, any party-oriented query joins back to the trading community model for names and addresses.
Related Objects
The ETRM relationship data documents the following significant dependencies:
- HZ_PARTIES — referenced four times from LNS_ASSETS via ASSET_OWNER_ID, CUSTODIAN_ID, CONTACT_PERS_PARTY_ID, and CONTACT_REL_PARTY_ID. This is the dominant join path for party enrichment.
- LNS_ASSET_ASSIGNMENTS — child table referencing LNS_ASSETS through LNS_ASSET_ASSIGNMENTS.ASSET_ID. Each asset may have multiple assignments, making this the primary dependent transactional object.
Together, LNS_ASSETS and LNS_ASSET_ASSIGNMENTS form the core asset sub-model of the LNS Loans schema, with HZ_PARTIES supplying the party dimension on four separate axes. Master-detail queries should join LNS_ASSETS to LNS_ASSET_ASSIGNMENTS on ASSET_ID, and resolve party details by joining each *_PARTY_ID or *_ID column to HZ_PARTIES.PARTY_ID.
-
Table: LNS_ASSETS
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_ASSETS, object_name:LNS_ASSETS, status:VALID, product: LNS - Loans , description: LNS_ASSETS is used to store the assets of a loan participant. , implementation_dba_data: LNS.LNS_ASSETS ,
-
Table: LNS_ASSETS
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_ASSETS, object_name:LNS_ASSETS, status:VALID, product: LNS - Loans , description: LNS_ASSETS is used to store the assets of a loan participant. , implementation_dba_data: LNS.LNS_ASSETS ,
-
Lookup Type: LNS_ASSETS
12.1.1
product: LNS - Loans , meaning: Loan Assets History , description: Columns in LNS_ASSETS to be tracked in loan history ,
-
Lookup Type: LNS_ASSETS
12.2.2
product: LNS - Loans , meaning: Loan Assets History , description: Columns in LNS_ASSETS to be tracked in loan history ,
-
VIEW: APPS.LNS_ASSETS_DFV
12.2.2
-
SYNONYM: APPS.LNS_ASSETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:LNS_ASSETS, status:VALID,
-
SYNONYM: APPS.LNS_ASSETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:LNS_ASSETS, status:VALID,
-
VIEW: LNS.LNS_ASSETS#
12.2.2
owner:LNS, object_type:VIEW, object_name:LNS_ASSETS#, status:VALID,
-
VIEW: APPS.LNS_ASSETS_VL
12.2.2
-
VIEW: APPS.LNS_ASSETS_VL
12.1.1
-
VIEW: LNS.LNS_ASSETS#
12.2.2
-
PACKAGE BODY: APPS.LNS_ASSETS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_ASSETS_PKG, status:VALID,
-
TABLE: LNS.LNS_ASSETS
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_ASSETS, object_name:LNS_ASSETS, status:VALID,
-
Table: LNS_ASSET_ASSIGNMENTS
12.1.1
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_ASSET_ASSIGNMENTS, object_name:LNS_ASSET_ASSIGNMENTS, status:VALID, product: LNS - Loans , description: LNS_ASSET_ASSIGNMENTS stores the assignment of assets to a loan as collateral. , implementation_dba_data: LNS.LNS_ASSET_ASSIGNMENTS ,
-
Table: LNS_ASSET_ASSIGNMENTS
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_ASSET_ASSIGNMENTS, object_name:LNS_ASSET_ASSIGNMENTS, status:VALID, product: LNS - Loans , description: LNS_ASSET_ASSIGNMENTS stores the assignment of assets to a loan as collateral. , implementation_dba_data: LNS.LNS_ASSET_ASSIGNMENTS ,
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.LNS_ASSETS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_ASSETS_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
TABLE: LNS.LNS_ASSETS
12.2.2
owner:LNS, object_type:TABLE, fnd_design_data:LNS.LNS_ASSETS, object_name:LNS_ASSETS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.LNS_OCM_ADP_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_OCM_ADP_PUB, status:VALID,
-
PACKAGE BODY: APPS.LNS_OCM_ADP_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_OCM_ADP_PUB, status:VALID,
-
APPS.LNS_LOAN_COLLATERAL_PUB SQL Statements
12.1.1
-
VIEW: APPS.LNS_ASSETS_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:LNS_ASSETS_DFV, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
APPS.LNS_ASSETS_PKG SQL Statements
12.2.2
-
APPS.LNS_LOAN_COLLATERAL_PUB SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.LNS_ASSETS_VL
12.1.1
owner:APPS, object_type:VIEW, object_name:LNS_ASSETS_VL, status:VALID,
-
APPS.LNS_OCM_ADP_PUB SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.LNS_REP_UTILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_REP_UTILS, status:VALID,
-
APPS.LNS_ASSETS_PKG SQL Statements
12.1.1
-
VIEW: APPS.LNS_ASSETS_VL
12.2.2
owner:APPS, object_type:VIEW, object_name:LNS_ASSETS_VL, status:VALID,
-
APPS.LNS_OCM_ADP_PUB SQL Statements
12.2.2
-
TABLE: LNS.LNS_ASSETS_TL
12.2.2
owner:LNS, object_type:TABLE, object_name:LNS_ASSETS_TL, status:VALID,
-
TABLE: LNS.LNS_ASSETS_TL
12.1.1
owner:LNS, object_type:TABLE, object_name:LNS_ASSETS_TL, status:VALID,
-
PACKAGE BODY: APPS.LNS_REP_UTILS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:LNS_REP_UTILS, status:VALID,
-
PACKAGE BODY: APPS.LNS_ASSETS_PKG
12.2.2
-
PACKAGE BODY: APPS.LNS_ASSETS_PKG
12.1.1
-
PACKAGE BODY: APPS.LNS_LOAN_COLLATERAL_PUB
12.2.2
-
PACKAGE BODY: APPS.LNS_LOAN_COLLATERAL_PUB
12.1.1
-
Table: HZ_PARTIES
12.1.1
owner:AR, object_type:TABLE, fnd_design_data:AR.HZ_PARTIES, object_name:HZ_PARTIES, status:VALID, product: AR - Receivables , description: Information about parties such as organizations, people, and groups , implementation_dba_data: AR.HZ_PARTIES ,
-
eTRM - LNS Tables and Views
12.2.2
description: Loans Terms Table ,