Search Results salvage_value
Overview
OKL_LA_BOOK_DEPRN_UV is an APPS-owned database view in the Oracle Lease and Finance Management (OKL) module. It is documented as the user interface view for the asset book depreciation page, meaning it supplies the denormalized, presentation-ready rowset that the depreciation maintenance screen consumes when displaying asset-book depreciation records. The view is classified with a status of VALID in the ETRM metadata for both Oracle EBS 12.1.1 and 12.2.2, and the base objects referenced are resolved through APPS synonyms.
Because it is a single view rather than a table, it exposes no independent storage; all values are derived at query time from the lease contract line and transaction asset tables. This makes it suitable both for the form-driven depreciation page and for ad hoc reporting and integration extracts that need the same asset, category, cost, and salvage figures that the UI presents. The PERCENT_SALVAGE_VALUE column, which corresponds to the user search term, is one of the value columns projected by the view.
Underlying Base Objects
The view text joins four documented objects, all resolved through APPS synonyms or views:
- OKL_TXL_ASSETS_B — the primary transaction asset table, aliased TXL. It supplies ID, KLE_ID, DNZ_KHR_ID, ASSET_NUMBER, CORPORATE_BOOK, IN_SERVICE_DATE, LIFE_IN_MONTHS, DEPRECIATION_ID, DEPRECIATION_COST, DEPRN_METHOD, DEPRN_RATE, SALVAGE_VALUE, PERCENT_SALVAGE_VALUE, and FA_COST.
- OKX_ASST_CATGRS_V — the asset category view, aliased CAT. It is joined with an outer join (
CAT.ID1(+)) on DEPRECIATION_ID = CAT.ID1 and contributes CATEGORY_ID and CATEGORY_NAME. - OKC_K_LINES_TL — the contract line translation table, aliased CLT, joined on
CLT.ID = TXL.KLE_IDwith a language restriction (CLT.LANGUAGE = USERENV('LANG')), providing the translated DESCRIPTION. - OKC_K_LINES_B — the contract line base table, aliased CLEB, joined on
CLEB.ID = CLT.ID, contributing ORIG_SYSTEM_ID1.
All joins are inner joins except the category outer join, so an asset row is returned only when a matching contract line exists in both the base and translated line tables.
Key Columns
- ID, KLE_ID, DNZ_KHR_ID — primary identifiers linking the depreciation row back to the asset and its source record.
- ASSET_NUMBER, DESCRIPTION — asset identification and the contract line's translated description.
- CORPORATE_BOOK, IN_SERVICE_DATE, LIFE_IN_MONTHS — book assignment, capitalization date, and depreciable life in months.
- CATEGORY_ID, CATEGORY_NAME — depreciation category, with the outer join allowing unnamed categories.
- DEPRECIATION_COST, FA_COST, DEPRN_METHOD, DEPRN_RATE — cost basis, fixed-asset cost, method, and rate (rate is multiplied by 100 and left null when absent).
- SALVAGE_VALUE, PERCENT_SALVAGE_VALUE — the residual value and its percentage form, both cast to character;
PERCENT_SALVAGE_VALUEis the column most often sought for salvage-related reporting. - ORIG_SYSTEM_ID1 — the originating system identifier, defaulted to
-9999when null.
Common Use Cases and Queries
Typical uses include reconciling book depreciation against Fixed Assets, auditing salvage percentages by category, and feeding downstream extracts. A representative query for salvage analysis:
SELECT asset_number, corporate_book, category_name, depreciation_cost, salvage_value, percent_salvage_value FROM okl_la_book_deprn_uv WHERE percent_salvage_value IS NOT NULL;SELECT corporate_book, category_name, AVG(deprn_rate), SUM(TO_NUMBER(salvage_value)) FROM okl_la_book_deprn_uv GROUP BY corporate_book, category_name;SELECT asset_number, description, in_service_date, orig_system_id1 FROM okl_la_book_deprn_uv WHERE kle_id = :p_kle_id;
Because numeric values such as SALVAGE_VALUE and PERCENT_SALVAGE_VALUE are stored as character strings, consumers should apply TO_NUMBER where arithmetic is required, guarding against nulls and empty strings.
-
View: OKL_LA_BOOK_DEPRN_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_BOOK_DEPRN_UV, object_name:OKL_LA_BOOK_DEPRN_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for asset book depreciation page , implementation_dba_data: APPS.OKL_LA_BOOK_DEPRN_UV ,
-
View: OKL_AM_ASSET_DETAILS_CHR_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_CHR_UV, object_name:OKL_AM_ASSET_DETAILS_CHR_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_CHR_UV ,
-
View: OKL_AM_ASSET_DETAILS_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_DETAILS_UV, object_name:OKL_AM_ASSET_DETAILS_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_UV ,
-
View: OKL_SPLIT_ASSET_TRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_SPLIT_ASSET_TRX_UV, object_name:OKL_SPLIT_ASSET_TRX_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for Split Asset Data Object , implementation_dba_data: APPS.OKL_SPLIT_ASSET_TRX_UV ,
-
View: OKL_ASSET_DEPRN_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_DEPRN_UV, object_name:OKL_ASSET_DEPRN_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_ASSET_DEPRN_UV ,
-
View: OKL_TXD_ASSETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TXD_ASSETS_V, object_name:OKL_TXD_ASSETS_V, status:VALID, product: OKL - Lease and Finance Management , description: A transaction table to record various Tax book related assets attributes needed by Fixed Asset Module before activating the contract and additionaly to store the split asset transaction attributes needed by Fixed Asset Moulde before activa , implementation_dba_data: APPS.OKL_TXD_ASSETS_V ,
-
View: OKL_AM_SALVAGE_VALUE_WD_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_SALVAGE_VALUE_WD_UV, object_name:OKL_AM_SALVAGE_VALUE_WD_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_SALVAGE_VALUE_WD_UV ,
-
View: OKL_LIKE_KIND_EXCHANGE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LIKE_KIND_EXCHANGE_V, object_name:OKL_LIKE_KIND_EXCHANGE_V, status:VALID, product: OKL - Lease and Finance Management , description: OKL_LINE_KIND_EXCHANGE_V will retrieve data necessary for performing Like Kind Exchange. , implementation_dba_data: APPS.OKL_LIKE_KIND_EXCHANGE_V ,
-
View: OKL_AM_OFF_LEASE_TRX_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_OFF_LEASE_TRX_UV, object_name:OKL_AM_OFF_LEASE_TRX_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_OFF_LEASE_TRX_UV ,
-
View: OKL_VIEW_TRX_ASSETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_VIEW_TRX_ASSETS_V, object_name:OKL_VIEW_TRX_ASSETS_V, status:VALID, product: OKL - Lease and Finance Management , description: User interface view to view asset level accounting transactions , implementation_dba_data: APPS.OKL_VIEW_TRX_ASSETS_V ,
-
View: OKL_TXL_ASSETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TXL_ASSETS_V, object_name:OKL_TXL_ASSETS_V, status:VALID, product: OKL - Lease and Finance Management , description: A contract line level transaction table to record various asset attributes needed by Fixed Asset Module before activating the contract. , implementation_dba_data: APPS.OKL_TXL_ASSETS_V ,
-
View: OKL_CS_ASSET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CS_ASSET_LINES_V, object_name:OKL_CS_ASSET_LINES_V, status:VALID, product: OKL - Lease and Finance Management , description: View based on fixed asset line in Oracle Contracts for Lease 'LEASE' contracts. Fixed asset line in OKL points to a fixed asset(asset_id) in Oracle FA.Also this view shows asset for loan type of contracts. , implementation_dba_data: APPS.OKL_CS_ASSET_LINES_V ,
-
View: OKL_AM_OFF_LSE_TRX_UPD_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_OFF_LSE_TRX_UPD_UV, object_name:OKL_AM_OFF_LSE_TRX_UPD_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_OFF_LSE_TRX_UPD_UV ,
-
View: OKL_ASSET_LINES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_LINES_ALL_V, object_name:OKL_ASSET_LINES_ALL_V, status:VALID, product: OKL - Lease and Finance Management , description: View based on fixed asset line in Oracle Contracts for Lease 'LEASE' contracts. Fixed asset line in OKL points to a fixed asset(asset_id) in Oracle FA.Also this view shows asset for loan type of contracts. , implementation_dba_data: APPS.OKL_ASSET_LINES_ALL_V ,
-
View: OKL_CONTRACT_ASSET_HV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CONTRACT_ASSET_HV, object_name:OKL_CONTRACT_ASSET_HV, status:VALID, product: OKL - Lease and Finance Management , description: History view for lease management created fixed assets , implementation_dba_data: APPS.OKL_CONTRACT_ASSET_HV ,