Search Results salvage_value
Overview
OKL_AM_ASSET_DETAILS_UV is an APPS-owned database view within the Oracle E-Business Suite Release 12.1.1 and 12.2.2 Oracle Leasing and Finance Management (OKL) module. It consolidates contract line, asset line, contract header, line style, and fixed asset category information into a single denormalized reporting structure. The view presents a flattened picture of leased assets tied to contracts, exposing descriptive and financial attributes such as original cost, in-service date, manufacturer, model, depreciation category, and the human-readable depreciation category description.
Its principal role is to support reporting and integration scenarios where an asset's contract context must be joined with its fixed asset depreciation classification without requiring the caller to construct multiple joins manually. In 12.2.2 the view remains VALID under the APPS schema and continues to reference the same underlying objects documented in 12.1.1. Because the view exposes DEPRN_CATEGORY_DESC through a description lookup against FA_CATEGORIES_VL, it is particularly relevant to users querying the search term "deprn_category_desc," which is the friendly description resolved from the numeric depreciation category on the asset line.
Underlying Base Objects
The view is defined over five referenced objects, each contributing a distinct portion of the result set:
- OKL_K_LINES_FULL_V (VIEW) – Supplies the contract line identifier, line name, item description, change request ID, start and end dates, and line-level status code.
- OKX_ASSET_LINES_V (VIEW) – Supplies asset-specific attributes such as original cost, serial number, in-service date, manufacturer name, model number, asset type, useful life in months, new/used indicator, salvage value, depreciation category, and depreciation start date. It is outer-joined on PARENT_LINE_ID.
- OKC_K_HEADERS_B (SYNONYM) – Supplies the contract number and contract status code, joined via CHR_ID.
- OKC_LINE_STYLES_V (VIEW) – Restricts rows to free-form line styles through the LTY_CODE = 'FREE_FORM1' predicate.
- FA_CATEGORIES_VL (VIEW) – Provides the depreciation category description (FAC.DESCRIPTION) resolved from OALV.DEPRECIATION_CATEGORY via an outer join on CATEGORY_ID.
The outer joins on OKX_ASSET_LINES_V and FA_CATEGORIES_VL ensure that contract lines without a corresponding asset line, or asset lines without a matching fixed asset category, are retained with NULL asset or description values rather than being dropped.
Key Columns
- ID / NAME / ITEM_DESCRIPTION – Contract line identity and the described item.
- CHR_ID / CONTRACT_NUMBER / CONTRACT_STATUS – Contract header linkage and status.
- START_DATE / END_DATE / LINE_STATUS – Line-level validity window and status.
- ORIGINAL_COST – Asset cost carried from the asset line.
- SERIAL_NUMBER / MANUFACTURER_NAME / MODEL_NUMBER – Asset identification attributes.
- IN_SERVICE_DATE / DEPRN_START_DATE – Operational and depreciation commencement dates.
- ASSET_TYPE / LIFE_IN_MONTHS / NEW_USED / SALVAGE_VALUE – Asset classification and depreciation parameters.
- DEPRECIATION_CATEGORY – Numeric fixed asset category identifier.
- DEPRN_CATEGORY_DESC – The descriptive name of the depreciation category, resolved from FA_CATEGORIES_VL and the primary target of the "deprn_category_desc" search.
Common Use Cases and Queries
Typical usage includes asset depreciation reporting, contract-to-asset reconciliation, and integration extracts where downstream systems require both the category code and its description. The following sample returns the contract, asset, and depreciation category details for free-form leased asset lines:
SELECT contract_number, name, item_description, serial_number, original_cost, depreciation_category, deprn_category_desc FROM okl_am_asset_details_uv WHERE deprn_category_desc IS NOT NULL;SELECT contract_number, asset_type, life_in_months, new_used, salvage_value, deprn_start_date FROM okl_am_asset_details_uv WHERE line_status = 'ACTIVE';SELECT deprn_category_desc, COUNT(*), SUM(original_cost) FROM okl_am_asset_details_uv GROUP BY deprn_category_desc ORDER BY deprn_category_desc;
Because the view already performs the FA_CATEGORIES_VL lookup, callers searching for "deprn_category_desc" can filter directly on that column without re-joining fixed asset category tables, reducing query complexity and improving consistency across reports. Note that the outer join nature of DEPRECIATION_CATEGORY means rows lacking a valid category will return a NULL description and should be handled explicitly in any grouping or filter logic.
-
View: OKL_AM_ASSET_DETAILS_UV
12.1.1
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 - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_UV ,
-
View: OKL_LA_BOOK_DEPRN_UV
12.1.1
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 - Leasing 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.1.1
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 - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_DETAILS_CHR_UV ,
-
View: OKL_SPLIT_ASSET_TRX_UV
12.1.1
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 - Leasing 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.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_DEPRN_UV, object_name:OKL_ASSET_DEPRN_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_ASSET_DEPRN_UV ,
-
View: OKL_AM_SALVAGE_VALUE_WD_UV
12.1.1
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 - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_SALVAGE_VALUE_WD_UV ,
-
View: OKL_TXD_ASSETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TXD_ASSETS_V, object_name:OKL_TXD_ASSETS_V, status:VALID, product: OKL - Leasing 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_VIEW_TRX_ASSETS_V
12.1.1
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 - Leasing and Finance Management , description: User interface view to view asset level accounting transactions , implementation_dba_data: APPS.OKL_VIEW_TRX_ASSETS_V ,
-
View: OKL_AM_OFF_LEASE_TRX_UV
12.1.1
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 - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_OFF_LEASE_TRX_UV ,
-
View: OKL_TXL_ASSETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TXL_ASSETS_V, object_name:OKL_TXL_ASSETS_V, status:VALID, product: OKL - Leasing 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_LIKE_KIND_EXCHANGE_V
12.1.1
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 - Leasing 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_LSE_TRX_UPD_UV
12.1.1
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 - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_OFF_LSE_TRX_UPD_UV ,
-
View: OKL_CS_ASSET_LINES_V
12.1.1
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 - Leasing 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_ASSET_LINES_ALL_V
12.1.1
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 - Leasing 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.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_CONTRACT_ASSET_HV, object_name:OKL_CONTRACT_ASSET_HV, status:VALID, product: OKL - Leasing and Finance Management , description: History view for lease management created fixed assets , implementation_dba_data: APPS.OKL_CONTRACT_ASSET_HV ,