Search Results deprn_method_tax
Overview
The view OKL_LA_ASST_TAX_DEPRN_UV is an Oracle E-Business Suite database object owned by the APPS schema within the OKL (Leasing and Finance Management) product family. Per the ETRM metadata, its documented purpose is to serve as the user interface view for the tax book depreciation page. The suffix _UV denotes a "user view," a naming convention Oracle applies to views built specifically to back an OAF (Oracle Application Framework) page or an equivalent UI region. Rather than exposing every column of the underlying transaction tables, the view projects a focused, presentation-ready column set that maps directly to fields rendered on the tax book depreciation page.
Because it is a view and not a table, it holds no data of its own; it is a read-only projection over the tax asset base and translation tables. This makes it relevant to reporting and integration work in both EBS 12.1.1 and 12.2.2, where the OKL schema is largely unchanged. Technical consultants frequently identify this view when tracing the source of tax depreciation attributes displayed on the leasing asset pages, or when building custom extracts that mirror the page layout.
Underlying Base Objects
The documented view text references two base objects, both exposed in the data dictionary as synonyms:
- OKL_TXD_ASSETS_B — the base ("_B") table holding tax asset records, joined here as
ASDB. - OKL_TXD_ASSETS_TL — the translation ("_TL") table providing language-specific descriptive text, joined here as
ASDTL.
The join predicate is ASDB.ID = ASDTL.ID combined with ASDTL.LANGUAGE = USERENV('LANG'), the standard EBS pattern that returns descriptions in the session's current language. The association is therefore one row per tax asset record, enriched with the translated description. No outer joins or aggregations appear in the documented view text.
Key Columns
The view exposes eleven columns. The most operationally significant include:
- ID — primary identifier of the tax asset record; correlates to the base table key.
- TAL_ID — link to the associated leasing asset (TAL) record, connecting tax data to the lease asset context.
- ASSET_NUMBER — the tax asset number used for identification.
- DESCRIPTION — translated description sourced from
OKL_TXD_ASSETS_TL. - QUANTITY and COST — quantity of the asset and its cost; cost is explicitly cast with
TO_CHAR. - TAX_BOOK — the tax book to which the depreciation record belongs.
- LIFE_IN_MONTHS_TAX — the tax life in months, wrapped in
NVL(TO_CHAR(...), '')so NULLs render as empty strings. - DEPRN_METHOD_TAX — the tax depreciation method; this is the column surfaced for the user search term "deprn_method_tax."
- DEPRN_RATE_TAX — the tax depreciation rate, multiplied by 100 (as a percentage) and similarly NVL-guarded.
The character conversion and NVL wrapping indicate the view is tuned for direct UI binding rather than set-based computation.
Common Use Cases and Queries
Typical uses include reconciling the tax depreciation page against stored data, auditing tax books, and populating custom reports. A representative query follows:
- List tax depreciation methods per asset:
SELECT tal_id, asset_number, tax_book, deprn_method_tax, deprn_rate_tax, life_in_months_tax FROM apps.okl_la_asst_tax_deprn_uv ORDER BY asset_number; - Filter by tax book: add
WHERE tax_book = :p_bookto isolate one book. - Join to lease assets: join
TAL_IDto the TAL asset table to blend tax and lease-book attributes.
Because the view applies USERENV('LANG'), callers should run it within a session whose language is set appropriately to obtain the expected description. In 12.2.2 the object remains VALID and unchanged in structure relative to the documented 12.1.1 behavior.
-
View: OKL_LA_ASST_TAX_DEPRN_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_ASST_TAX_DEPRN_UV, object_name:OKL_LA_ASST_TAX_DEPRN_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view for tax book depreciation page , implementation_dba_data: APPS.OKL_LA_ASST_TAX_DEPRN_UV ,
-
VIEW: OKL.OKL_TXD_ASSETS_B#
12.2.2
-
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_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: APPS.OKL_LA_ASST_TAX_DEPRN_UV
12.2.2
-
View: OKL_LA_ASST_TAX_DEPRN_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_ASST_TAX_DEPRN_UV, object_name:OKL_LA_ASST_TAX_DEPRN_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view for tax book depreciation page , implementation_dba_data: APPS.OKL_LA_ASST_TAX_DEPRN_UV ,
-
VIEW: APPS.OKL_LA_ASST_TAX_DEPRN_UV
12.1.1
-
VIEW: APPS.OKL_TXD_ASSETS_V
12.1.1
-
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: APPS.OKL_LA_ASST_TAX_DEPRN_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_ASST_TAX_DEPRN_UV, object_name:OKL_LA_ASST_TAX_DEPRN_UV, status:VALID,
-
VIEW: APPS.OKL_LA_ASST_TAX_DEPRN_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_LA_ASST_TAX_DEPRN_UV, object_name:OKL_LA_ASST_TAX_DEPRN_UV, status:VALID,
-
VIEW: OKL.OKL_TXD_ASSETS_B#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_TXD_ASSETS_B#, status:VALID,
-
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: APPS.OKL_TXD_ASSETS_V
12.2.2
-
VIEW: APPS.OKL_SPLIT_ASSET_TRX_UV
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.OKL_SPLIT_ASSET_TRX_UV
12.2.2
-
VIEW: APPS.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,
-
VIEW: OKL.OKL_LINES_INTERFACE#
12.2.2
-
VIEW: APPS.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,
-
TABLE: OKL.OKL_TXD_ASSETS_B
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_TXD_ASSETS_B, object_name:OKL_TXD_ASSETS_B, status:VALID,
-
TABLE: OKL.OKL_TXD_ASSETS_B
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_TXD_ASSETS_B, object_name:OKL_TXD_ASSETS_B, status:VALID,
-
VIEW: APPS.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,
-
APPS.OKL_ASD_PVT SQL Statements
12.2.2
-
APPS.OKL_ASD_PVT SQL Statements
12.1.1
-
VIEW: OKL.OKL_LINES_INTERFACE#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_LINES_INTERFACE#, status:VALID,
-
PACKAGE: APPS.OKL_ASD_PVT
12.2.2
-
PACKAGE: APPS.OKL_ASD_PVT
12.1.1
-
TABLE: OKL.OKL_LINES_INTERFACE
12.1.1
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_LINES_INTERFACE, object_name:OKL_LINES_INTERFACE, status:VALID,
-
TABLE: OKL.OKL_LINES_INTERFACE
12.2.2
owner:OKL, object_type:TABLE, fnd_design_data:OKL.OKL_LINES_INTERFACE, object_name:OKL_LINES_INTERFACE, status:VALID,
-
PACKAGE BODY: APPS.OKL_ASD_PVT_W
12.1.1
-
PACKAGE BODY: APPS.OKL_ASD_PVT_W
12.2.2
-
APPS.OKL_COPY_ASSET_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKL_ASD_PVT
12.1.1
-
APPS.OKL_COPY_ASSET_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKL_ASD_PVT
12.2.2
-
APPS.OKL_ASD_PVT dependencies on OKC_API
12.2.2
-
APPS.OKL_ASD_PVT dependencies on OKC_API
12.1.1
-
APPS.OKL_ACTIVATE_ASSET_PVT SQL Statements
12.2.2
-
APPS.OKL_ASD_PVT dependencies on OKL_TXD_ASSETS_V
12.2.2
-
APPS.OKL_ASD_PVT dependencies on OKL_TXD_ASSETS_V
12.1.1
-
APPS.OKL_COPY_CONTRACT_PVT SQL Statements
12.2.2
-
APPS.OKL_ASD_PVT dependencies on OKL_TXD_ASSETS_B
12.2.2
-
APPS.OKL_COPY_CONTRACT_PVT SQL Statements
12.1.1
-
APPS.OKL_ASD_PVT dependencies on OKL_TXD_ASSETS_B
12.1.1
-
APPS.OKL_ACTIVATE_ASSET_PVT SQL Statements
12.1.1
-
APPS.OKL_SPLIT_ASSET_PVT SQL Statements
12.1.1
-
APPS.OKL_SPLIT_ASSET_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKL_MASS_REBOOK_PVT
12.1.1
-
PACKAGE BODY: APPS.OKL_MASS_REBOOK_PVT
12.2.2