Search Results cle_fin
Overview
APPS.OKL_LA_SERIAL_NUMBER_UV is a reporting view within the Oracle E-Business Suite (EBS) Lease and Finance Management (OKL) module. It is one of the _UV ("user view") objects that expose serialized, instance-level asset data to downstream reporting, integration, and contract-authoring consumers. Its central purpose is to resolve a serialized item — an Oracle Install Base instance from CSI_ITEM_INSTANCES — to the specific lease contract line under which that item is financed, together with its physical installation location.
The view returns this data in a flattened, denormalized shape that mirrors the Object1/Object2 key idiom used by the OKC contract line framework. In particular, the user search term "inst_item" corresponds directly to the line style INST_ITEM, which is hard-coded in the view's WHERE clause as the discriminator identifying the Install Base item line. This confirms the view's intended semantic role: it exists to expose serial number and instance identifiers for lines typed as INST_ITEM.
Underlying Base Objects
The view is defined over seven referenced base objects, all exposed to APPS as synonyms: CSI_ITEM_INSTANCES, HZ_LOCATIONS, HZ_PARTY_SITES, HZ_PARTY_SITE_USES, OKC_K_ITEMS, OKC_K_LINES_B, and OKC_LINE_STYLES_B.
The join structure is deliberately nested and hierarchical across three levels of contract lines. From the finance header line (CLE_FIN, line style FREE_FORM1) the view descends to an intermediate line (CLE_INST, line style FREE_FORM2) and finally to the Install Base item line (CLE_IB, line style INST_ITEM). The OKC_K_ITEMS table provides the Object1 linkage between the INST_ITEM line and the Install Base instance: the predicate cim_ib.object1_id1 = csi.instance_id with jtot_object1_code = 'OKX_IB_ITEM' ties the contract line to the specific CSI instance. Installation location is resolved through HZ_PARTY_SITE_USES (site_use_type INSTALL_AT), joined to HZ_PARTY_SITES and then HZ_LOCATIONS.
Key Columns
- KLE_ID (CLE_IB.ID) — Contract line identifier of the INST_ITEM line.
- DNZ_CLE_ID / DNZ_CHR_ID (CLE_FIN.ID / CLE_FIN.DNZ_CHR_ID) — The finance header line and its contract identifier, anchoring the returned record to a lease/contract.
- SERIAL_NUMBER — The manufacturer or tracked serial number of the instance, from CSI_ITEM_INSTANCES.
- INSTANCE_NUMBER_IB — Oracle Install Base instance number.
- INVENTORY_ITEM_ID, INVENTORY_ORG_ID, INV_MASTER_ORG_ID — Item and organization references identifying the catalog item and its owning/master organizations.
- OBJECT_ID1_NEW (HPSU.PARTY_SITE_USE_ID) and OBJECT_ID2_NEW ('#') — The resolved installation-site reference formatted in the Object1/Object2 convention, where '#' denotes a null secondary component.
Common Use Cases and Queries
Typical usage includes generating serial-number reports for leased assets, reconciling Install Base instances to their governing lease contracts, and driving integrations that must publish asset-to-contract mappings. Because the view is keyed by serial number, it is frequently joined to CSI or OKC reporting queries.
A representative query retrieving serialized items for a contract is:
SELECT serial_number,
instance_number_ib,
inventory_item_id,
inventory_org_id,
object_id1_new
FROM apps.okl_la_serial_number_uv
WHERE dnz_chr_id = :contract_id;
To locate the contract line for a given serial number:
SELECT kle_id, dnz_cle_id, dnz_chr_id FROM apps.okl_la_serial_number_uv WHERE serial_number = :serial_number;
Note that the view exposes no primary key; the ID column is a literal NULL. Consumers therefore must rely on KLE_ID or DNZ_CHR_ID as the meaningful identifying columns.
-
VIEW: APPS.OKL_LA_SERIAL_NUMBER_UV
12.1.1
-
VIEW: APPS.OKL_LA_SERIAL_NUMBER_UV
12.2.2
-
VIEW: APPS.OKL_OLD_LOAN_ASSETS_UV
12.2.2
-
VIEW: APPS.OKL_NEW_LOAN_ASSETS_UV
12.1.1
-
VIEW: APPS.OKL_NEW_LOAN_ASSETS_UV
12.2.2
-
VIEW: APPS.OKL_AM_QTE_UNITS_UV
12.1.1
-
VIEW: APPS.OKL_NEW_ASSETS_UV
12.1.1
-
VIEW: APPS.OKL_NEW_ASSETS_UV
12.2.2
-
VIEW: APPS.OKL_OLD_LOAN_ASSETS_UV
12.1.1
-
VIEW: APPS.OKL_OLD_ASSETS_UV
12.2.2
-
VIEW: APPS.OKL_OLD_ASSETS_UV
12.1.1
-
VIEW: APPS.OKL_AM_QTE_UNITS_UV
12.2.2
-
View: OKL_AM_QTE_UNITS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_QTE_UNITS_UV, object_name:OKL_AM_QTE_UNITS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: Quote unit details view , implementation_dba_data: APPS.OKL_AM_QTE_UNITS_UV ,
-
View: OKL_AM_QTE_UNITS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_QTE_UNITS_UV, object_name:OKL_AM_QTE_UNITS_UV, status:VALID, product: OKL - Lease and Finance Management , description: Quote unit details view , implementation_dba_data: APPS.OKL_AM_QTE_UNITS_UV ,
-
View: OKL_LA_SERIAL_NUMBER_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_SERIAL_NUMBER_UV, object_name:OKL_LA_SERIAL_NUMBER_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User Interface view for install base serial numbers of a financial asset , implementation_dba_data: APPS.OKL_LA_SERIAL_NUMBER_UV ,
-
View: OKL_LA_SERIAL_NUMBER_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_SERIAL_NUMBER_UV, object_name:OKL_LA_SERIAL_NUMBER_UV, status:VALID, product: OKL - Lease and Finance Management , description: User Interface view for install base serial numbers of a financial asset , implementation_dba_data: APPS.OKL_LA_SERIAL_NUMBER_UV ,
-
View: OKL_NEW_LOAN_ASSETS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_NEW_LOAN_ASSETS_UV, object_name:OKL_NEW_LOAN_ASSETS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for asset summary page , implementation_dba_data: APPS.OKL_NEW_LOAN_ASSETS_UV ,
-
View: OKL_NEW_LOAN_ASSETS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_NEW_LOAN_ASSETS_UV, object_name:OKL_NEW_LOAN_ASSETS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for asset summary page , implementation_dba_data: APPS.OKL_NEW_LOAN_ASSETS_UV ,
-
View: OKL_OLD_LOAN_ASSETS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OLD_LOAN_ASSETS_UV, object_name:OKL_OLD_LOAN_ASSETS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for asset summary page. , implementation_dba_data: APPS.OKL_OLD_LOAN_ASSETS_UV ,
-
View: OKL_OLD_ASSETS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OLD_ASSETS_UV, object_name:OKL_OLD_ASSETS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for asset summary page , implementation_dba_data: APPS.OKL_OLD_ASSETS_UV ,
-
View: OKL_NEW_ASSETS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_NEW_ASSETS_UV, object_name:OKL_NEW_ASSETS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for asset summary page , implementation_dba_data: APPS.OKL_NEW_ASSETS_UV ,
-
View: OKL_OLD_LOAN_ASSETS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OLD_LOAN_ASSETS_UV, object_name:OKL_OLD_LOAN_ASSETS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for asset summary page. , implementation_dba_data: APPS.OKL_OLD_LOAN_ASSETS_UV ,
-
View: OKL_NEW_ASSETS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_NEW_ASSETS_UV, object_name:OKL_NEW_ASSETS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for asset summary page , implementation_dba_data: APPS.OKL_NEW_ASSETS_UV ,
-
View: OKL_OLD_ASSETS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OLD_ASSETS_UV, object_name:OKL_OLD_ASSETS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for asset summary page , implementation_dba_data: APPS.OKL_OLD_ASSETS_UV ,
-
APPS.OKL_AM_SERVICE_K_INT_WF SQL Statements
12.1.1
-
APPS.OKL_AM_SERVICE_K_INT_WF SQL Statements
12.2.2
-
APPS.OKL_AM_TERMNT_QUOTE_PVT SQL Statements
12.1.1
-
APPS.OKL_AM_TERMNT_QUOTE_PVT SQL Statements
12.2.2
-
APPS.OKL_AM_CREATE_QUOTE_PVT SQL Statements
12.1.1
-
APPS.OKL_AM_CREATE_QUOTE_PVT SQL Statements
12.2.2
-
APPS.OKL_LLA_UTIL_PVT SQL Statements
12.1.1
-
APPS.OKL_DEAL_ASSET_PVT SQL Statements
12.1.1
-
APPS.OKL_DEAL_ASSET_PVT SQL Statements
12.2.2
-
APPS.OKL_LLA_UTIL_PVT SQL Statements
12.2.2
-
APPS.OKL_LA_ASSET_PVT SQL Statements
12.1.1
-
APPS.OKL_LA_ASSET_PVT SQL Statements
12.2.2
-
APPS.OKL_LA_STREAM_PVT SQL Statements
12.1.1
-
APPS.OKL_LA_STREAM_PVT SQL Statements
12.2.2
-
APPS.OKL_LA_STREAM_PVT dependencies on OKL_SUBSIDIES_B
12.2.2
-
APPS.OKL_SLA_ACC_SOURCES_PVT SQL Statements
12.1.1
-
APPS.OKL_LA_STREAM_PVT dependencies on OKL_SUBSIDIES_B
12.1.1
-
APPS.OKL_AM_CREATE_QUOTE_PVT dependencies on OKC_K_LINES_B
12.1.1
-
APPS.OKL_AM_TERMNT_QUOTE_PVT dependencies on OKC_K_LINES_B
12.1.1
-
APPS.OKL_AM_CREATE_QUOTE_PVT dependencies on OKC_K_LINES_B
12.2.2
-
APPS.OKL_AM_TERMNT_QUOTE_PVT dependencies on OKC_K_LINES_B
12.2.2
-
APPS.OKL_LA_ASSET_PVT dependencies on OKC_K_LINES_B
12.1.1
-
APPS.OKL_LA_ASSET_PVT dependencies on OKC_K_LINES_B
12.2.2
-
APPS.OKL_SLA_ACC_SOURCES_PVT dependencies on OKC_K_LINES_B
12.2.2
-
APPS.OKL_AM_TERMNT_QUOTE_PVT dependencies on OKC_LINE_STYLES_B
12.2.2
-
APPS.OKL_AM_TERMNT_QUOTE_PVT dependencies on OKC_K_LINES_TL
12.2.2