Search Results residual_grnty_amount
Overview
OKL_LA_ASSET_DTLS_UV is an APPS-owned database view within the Oracle E-Business Suite Lease and Finance Management (OKL) module. It is documented as the "User Interface view for asset details page," meaning it serves as the data source backing a specific Lease Management application screen where users review and maintain asset-level lease information. In EBS 12.1.1 and 12.2.2, the OKL schema manages lease contracts, contract lines, and the associated financial and asset attributes of leased equipment. This view abstracts the multi-table join required to present that information into a single queryable object.
Because it is a view rather than a base table, OKL_LA_ASSET_DTLS_UV exposes no independently stored data; every query resolves live against the underlying contract line tables. This makes it valuable for reporting and integration scenarios that must reflect current contract data without the complexity of reconstructing the join logic. The metadata confirms Status: VALID, indicating the object is compiled and available in the documented environment.
Underlying Base Objects
The view is defined over three referenced base objects, accessed through synonyms: OKC_K_LINES_B, OKC_K_LINES_TL, and OKL_K_LINES. OKC_K_LINES_B and OKC_K_LINES_TL belong to the Oracle Contracts (OKC) core, where OKC_K_LINES_B holds the base contract line records and OKC_K_LINES_TL holds the translatable (language-specific) line text. OKL_K_LINES is the OKL extension table that stores lease-specific attributes keyed to the same line identifier.
The join condition links all three on the line ID: CLEB.ID = CLET.ID, KLE.ID = CLEB.ID, with CLET.LANGUAGE filtered by USERENV('LANG') to return only the text row matching the session language. This design is characteristic of EBS contract data, where the base and translation tables are kept separate. The view therefore inherits the security and partitioning behaviour of the underlying tables rather than introducing its own.
Key Columns
The view exposes fifteen columns. ID, CLE_ID, and DNZ_CHR_ID are identifiers linking to the contract line, the contract, and the related contract header or character context. EXCEPTION_YN flags exceptions on the line. Several columns concern residual value handling, which is central to lease accounting:
- RESIDUAL_CODE — the residual value code, the column most directly associated with the user's search term; it classifies the residual treatment applied to the lease asset.
- RESIDUAL_PERCENTAGE, RESIDUAL_VALUE, and RESIDUAL_GRNTY_AMOUNT — residual percentage, residual value, and the guaranteed residual amount, exposed as character strings via TO_CHAR.
- PRESCRIBED_ASSET_YN and RE_LEASE_YN — flags indicating whether the asset is prescribed and whether the line is a re-lease.
- PREVIOUS_CONTRACT — reference to a prior contract in re-lease scenarios.
- RVI_PREMIUM, EXPECTED_ASSET_COST, DATE_DELIVERY_EXPECTED, and DATE_FUNDING_EXPECTED — residual value insurance premium, expected asset cost, and expected delivery and funding dates, the date and monetary fields converted with TO_CHAR.
Common Use Cases and Queries
The primary use case is reporting on lease asset residual terms. A typical query retrieves residual details for contract lines:
- Listing all lines with a specific residual code: SELECT ID, CLE_ID, RESIDUAL_CODE, RESIDUAL_PERCENTAGE, RESIDUAL_VALUE FROM OKL_LA_ASSET_DTLS_UV WHERE RESIDUAL_CODE = :code;
- Auditing guaranteed residual amounts: SELECT PREVIOUS_CONTRACT, RESIDUAL_GRNTY_AMOUNT FROM OKL_LA_ASSET_DTLS_UV WHERE RESIDUAL_GRNTY_AMOUNT IS NOT NULL;
- Identifying re-leased assets: SELECT CLE_ID, RE_LEASE_YN, PREVIOUS_CONTRACT FROM OKL_LA_ASSET_DTLS_UV WHERE RE_LEASE_YN = 'Y';
- Tracking expected funding and delivery schedules using DATE_FUNDING_EXPECTED and DATE_DELIVERY_EXPECTED.
Because numeric and date columns are cast to character, report filters and joins on those columns require explicit conversion. Users should also be aware that results reflect only the row matching the session language in OKC_K_LINES_TL.
-
View: OKL_LA_ASSET_DTLS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_ASSET_DTLS_UV, object_name:OKL_LA_ASSET_DTLS_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User Interface view for asset details page , implementation_dba_data: APPS.OKL_LA_ASSET_DTLS_UV ,
-
View: OKL_LA_ASSET_DTLS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_ASSET_DTLS_UV, object_name:OKL_LA_ASSET_DTLS_UV, status:VALID, product: OKL - Lease and Finance Management , description: User Interface view for asset details page , implementation_dba_data: APPS.OKL_LA_ASSET_DTLS_UV ,
-
VIEW: APPS.OKL_LA_ASSET_DTLS_UV
12.2.2
-
VIEW: APPS.OKL_LA_ASSET_DTLS_UV
12.1.1
-
VIEW: OKL.OKL_K_LINES_H#
12.2.2
-
VIEW: OKL.OKL_K_LINES#
12.2.2
-
VIEW: APPS.OKL_LA_ASSET_DTLS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_ASSET_DTLS_UV, object_name:OKL_LA_ASSET_DTLS_UV, status:VALID,
-
VIEW: APPS.OKL_LA_ASSET_DTLS_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_ASSET_DTLS_UV, object_name:OKL_LA_ASSET_DTLS_UV, status:VALID,
-
View: OKL_K_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_V, object_name:OKL_K_LINES_V, status:VALID, product: OKL - Leasing and Finance Management , description: Oracle Lease Management shadow table for Oracle Contracts Core line tables, OKC_K_LINES_B and OKC_K_LINES_TL. OKL_K_LINES contains attributes that relate to contracts created in OKL and do not fit into the standard lines tables OKC_K_LINES_ , implementation_dba_data: APPS.OKL_K_LINES_V ,
-
View: OKL_K_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_V, object_name:OKL_K_LINES_V, status:VALID, product: OKL - Lease and Finance Management , description: Oracle Lease Management shadow table for Oracle Contracts Core line tables, OKC_K_LINES_B and OKC_K_LINES_TL. OKL_K_LINES contains attributes that relate to contracts created in OKL and do not fit into the standard lines tables OKC_K_LINES_ , implementation_dba_data: APPS.OKL_K_LINES_V ,
-
APPS.OKL_KLE_PVT SQL Statements
12.1.1
-
APPS.OKL_KLE_PVT SQL Statements
12.2.2
-
VIEW: OKL.OKL_K_LINES#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_K_LINES#, status:VALID,
-
VIEW: APPS.OKL_OR_ASSET_INFO_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_ASSET_INFO_UV, object_name:OKL_OR_ASSET_INFO_UV, status:VALID,
-
VIEW: OKL.OKL_K_LINES_H#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_K_LINES_H#, status:VALID,
-
View: OKL_OR_ASSET_INFO_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_ASSET_INFO_UV, object_name:OKL_OR_ASSET_INFO_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_OR_ASSET_INFO_UV ,
-
View: OKL_OR_ASSET_INFO_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_ASSET_INFO_UV, object_name:OKL_OR_ASSET_INFO_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_OR_ASSET_INFO_UV ,
-
VIEW: APPS.OKL_K_LINES_V
12.1.1
-
VIEW: APPS.OKL_K_LINES_V
12.2.2
-
VIEW: APPS.OKL_OR_ASSET_INFO_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_OR_ASSET_INFO_UV, object_name:OKL_OR_ASSET_INFO_UV, status:VALID,
-
View: OKL_K_LINES_FULL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_FULL_V, object_name:OKL_K_LINES_FULL_V, status:VALID, product: OKL - Lease and Finance Management , description: OKL_K_LINES_FULL_V is the full view on tables OKC_K_LINES_B and OKL_K_LINES. It combines the attributes of contracts core and lease management contract line tables. , implementation_dba_data: APPS.OKL_K_LINES_FULL_V ,
-
View: OKL_K_LINES_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_FULL_V, object_name:OKL_K_LINES_FULL_V, status:VALID, product: OKL - Leasing and Finance Management , description: OKL_K_LINES_FULL_V is the full view on tables OKC_K_LINES_B and OKL_K_LINES. It combines the attributes of contracts core and lease management contract line tables. , implementation_dba_data: APPS.OKL_K_LINES_FULL_V ,
-
VIEW: APPS.OKL_K_LINES_FULL_V
12.1.1
-
VIEW: APPS.OKL_K_LINES_FULL_V
12.2.2
-
TABLE: OKL.OKL_K_LINES_H
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_LINES_H, object_name:OKL_K_LINES_H, status:VALID,
-
TABLE: OKL.OKL_K_LINES
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_LINES, object_name:OKL_K_LINES, status:VALID,
-
TABLE: OKL.OKL_K_LINES_H
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_LINES_H, object_name:OKL_K_LINES_H, status:VALID,
-
TABLE: OKL.OKL_K_LINES
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_K_LINES, object_name:OKL_K_LINES, status:VALID,
-
VIEW: APPS.OKL_K_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_V, object_name:OKL_K_LINES_V, status:VALID,
-
VIEW: APPS.OKL_K_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_V, object_name:OKL_K_LINES_V, status:VALID,
-
PACKAGE: APPS.OKL_KLE_PVT
12.2.2
-
PACKAGE: APPS.OKL_KLE_PVT
12.1.1
-
VIEW: APPS.OKL_K_LINES_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_FULL_V, object_name:OKL_K_LINES_FULL_V, status:VALID,
-
VIEW: APPS.OKL_K_LINES_FULL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_K_LINES_FULL_V, object_name:OKL_K_LINES_FULL_V, status:VALID,
-
PACKAGE BODY: APPS.OKL_KLE_PVT
12.2.2
-
PACKAGE BODY: APPS.OKL_KLE_PVT
12.1.1
-
APPS.OKL_COPY_ASSET_PVT SQL Statements
12.2.2
-
APPS.OKL_COPY_ASSET_PVT SQL Statements
12.1.1
-
APPS.OKL_CONTRACT_REBOOK_PVT dependencies on DUAL
12.1.1
-
APPS.OKL_CONTRACT_REBOOK_PVT dependencies on DUAL
12.2.2
-
APPS.OKL_SPLIT_CONTRACT_PVT dependencies on DUAL
12.1.1
-
APPS.OKL_SPLIT_CONTRACT_PVT dependencies on DUAL
12.2.2
-
APPS.OKL_SPLIT_CONTRACT_PVT SQL Statements
12.2.2
-
APPS.OKL_SPLIT_CONTRACT_PVT SQL Statements
12.1.1
-
APPS.OKL_COPY_ASSET_PVT dependencies on DUAL
12.2.2
-
APPS.OKL_COPY_ASSET_PVT dependencies on DUAL
12.1.1
-
PACKAGE BODY: APPS.OKL_KLE_PVT_W
12.2.2
-
PACKAGE BODY: APPS.OKL_KLE_PVT_W
12.1.1
-
APPS.OKL_KLE_PVT dependencies on OKL_API
12.1.1
-
APPS.OKL_KLE_PVT dependencies on OKL_API
12.2.2