Search Results capital_reduction
Overview
OKL_ASSET_ADJUST_UV is a user interface view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the OKL – Leasing and Finance Management module. It is documented as the presentation-layer view behind the Asset Adjustment screen, exposing the asset-level financial adjustment attributes that a leasing user maintains when contracts require capital restructuring, trade-in recognition, or down-payment handling. The view is reported as VALID in ETRM 12.2.2 and remains applicable to 12.1.1, where the same OKL and OKC object model is used.
The view does not store data. It is a join-based projection of the leasing line records against the common contract line and line-style definitions, translated for the runtime language of the session. Because it is an interface view, it typically supports the OAF-based Asset Adjustment page rather than being an end-user reporting object, but it can be queried directly for diagnostics and reconciliation.
Underlying Base Objects
The view is defined over four documented objects, all referenced through APPS synonyms: OKL_K_LINES, OKC_K_LINES_B, OKC_K_LINES_TL, and OKC_LINE_STYLES_B. The core leasing attributes reside in OKL_K_LINES (aliased KLE), which is joined to OKC_K_LINES_B (CLE) on the shared ID column. The translated descriptions come from OKC_K_LINES_TL (CLET), joined on ID and filtered by CLET.LANGUAGE = USERENV('LANG'). The line-style definition is provided by OKC_LINE_STYLES_B (LSE), joined on CLE.LSE_ID = LSE.ID, with the predicate LSE.LTY_CODE = 'FREE_FORM1' restricting the view to free-form line styles used by leasing asset adjustment records.
Key Columns
- ID — Primary identifier of the leasing line style record; the join key across all four base objects.
- STS_CODE — Status code of the contract line, used to filter active versus terminated adjustments.
- DNZ_CHR_ID, CLE_ID, LSE_ID, STY_ID — Foreign keys linking the record to the contract, line, line style, and style definition respectively.
- ASSET_NUMBER, DESCRIPTION — Translated asset identifier and item description from OKC_K_LINES_TL.
- CAPITAL_REDUCTION — The reduction applied to the capitalized asset value; this is the column most closely associated with the search term "capital_reduction".
- TRADEIN_AMOUNT — Value credited for a traded-in asset.
- CAPITAL_REDUCTION_PERCENT, CAPITAL_AMOUNT — Percentage basis of the reduction and the resulting capitalized amount.
- OEC — Original equipment cost basis for the leased asset.
- CAPITALIZE_DOWN_PAYMENT_YN, DOWN_PAYMENT_RECEIVER_CODE — Flags and codes governing whether the down payment is capitalized and which party receives it.
Note that all monetary and percentage columns are wrapped in TO_CHAR in the view text, so values are returned as character strings. Any arithmetic or comparison must therefore apply explicit numeric conversion.
Common Use Cases and Queries
Typical uses include validating asset adjustment entries before contract booking, reconciling capital reduction amounts against finance schedules, and auditing trade-in or down-payment treatment. The following retrieves capital reduction details for a specific asset:
SELECT ID, ASSET_NUMBER, DESCRIPTION,
CAPITAL_REDUCTION, CAPITAL_REDUCTION_PERCENT,
CAPITAL_AMOUNT, OEC
FROM APPS.OKL_ASSET_ADJUST_UV
WHERE ASSET_NUMBER = :asset_number;
To aggregate the total capital reduction per contract, converting the character columns to numbers:
SELECT DNZ_CHR_ID, SUM(TO_NUMBER(CAPITAL_REDUCTION)) TOTAL_REDUCTION FROM APPS.OKL_ASSET_ADJUST_UV WHERE STS_CODE = 'ACTIVE' GROUP BY DNZ_CHR_ID;
Because the view is language-filtered, joins to additional OKL tables should use ID or CLE_ID, and callers should account for the FREE_FORM1 line-style restriction when interpreting results.
-
View: OKL_ASSET_ADJUST_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_ADJUST_UV, object_name:OKL_ASSET_ADJUST_UV, status:VALID, product: OKL - Leasing and Finance Management , description: User interface view used for Asset Adjustment screen , implementation_dba_data: APPS.OKL_ASSET_ADJUST_UV ,
-
View: OKL_ASSET_ADJUST_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_ADJUST_UV, object_name:OKL_ASSET_ADJUST_UV, status:VALID, product: OKL - Lease and Finance Management , description: User interface view used for Asset Adjustment screen , implementation_dba_data: APPS.OKL_ASSET_ADJUST_UV ,
-
VIEW: APPS.OKL_ASSET_ADJUST_UV
12.1.1
-
VIEW: APPS.OKL_ASSET_ADJUST_UV
12.2.2
-
VIEW: APPS.OKL_ASSET_ADJUST_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_ADJUST_UV, object_name:OKL_ASSET_ADJUST_UV, status:VALID,
-
VIEW: OKL.OKL_K_LINES_H#
12.2.2
-
VIEW: OKL.OKL_K_LINES#
12.2.2
-
VIEW: APPS.OKL_ASSET_ADJUST_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_ADJUST_UV, object_name:OKL_ASSET_ADJUST_UV, status:VALID,
-
APPS.OKL_KLE_PVT SQL Statements
12.1.1
-
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.2.2
-
VIEW: OKL.OKL_K_LINES#
12.2.2
owner:OKL, object_type:VIEW, object_name:OKL_K_LINES#, 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: APPS.OKL_K_LINES_V
12.1.1
-
VIEW: APPS.OKL_K_LINES_V
12.2.2
-
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: 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: APPS.OKL_K_LINES_FULL_V
12.2.2
-
VIEW: APPS.OKL_K_LINES_FULL_V
12.1.1
-
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,
-
Lookup Type: OKL_FIN_PRIMARY_PURPOSES
12.2.2
product: OKL - Lease and Finance Management , meaning: OKL FINANCIAL PRODUCT PRIMARY PURPOSES , description: Financial Product Primary Purposes for Stream Generation Templates ,
-
Lookup Type: OKL_FIN_PRIMARY_PURPOSES
12.1.1
product: OKL - Leasing and Finance Management , meaning: OKL FINANCIAL PRODUCT PRIMARY PURPOSES , description: Financial Product Primary Purposes for Stream Generation Templates ,
-
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,
-
PACKAGE: APPS.OKL_KLE_PVT
12.1.1
-
PACKAGE: APPS.OKL_KLE_PVT
12.2.2
-
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,
-
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,
-
Lookup Type: OKL_STREAM_TYPE_PURPOSE
12.1.1
product: OKL - Leasing and Finance Management , meaning: Stream Type Purpose , description: Stream Type Purpose ,
-
APPS.OKL_STRM_GEN_TEMPLATE_PVT SQL Statements
12.2.2
-
Lookup Type: OKL_STREAM_TYPE_PURPOSE
12.2.2
product: OKL - Lease and Finance Management , meaning: Stream Type Purpose , description: Stream Type Purpose ,
-
APPS.OKL_STRM_GEN_TEMPLATE_PVT SQL Statements
12.1.1
-
APPS.OKL_ACTIVATE_CONTRACT_PUB SQL Statements
12.1.1
-
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.1.1
-
APPS.OKL_COPY_ASSET_PVT SQL Statements
12.2.2
-
APPS.OKL_CREATE_KLE_PVT dependencies on OKL_ACCOUNTING_UTIL
12.2.2
-
APPS.OKL_QA_DATA_INTEGRITY SQL Statements
12.1.1
-
APPS.OKL_CREATE_KLE_PVT dependencies on OKL_ACCOUNTING_UTIL
12.1.1
-
APPS.OKL_QA_DATA_INTEGRITY SQL Statements
12.2.2
-
APPS.OKL_SPLIT_ASSET_PVT SQL Statements
12.1.1
-
APPS.OKL_SPLIT_CONTRACT_PVT SQL Statements
12.1.1
-
APPS.OKL_SPLIT_CONTRACT_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKL_KLE_PVT_W
12.2.2
-
PACKAGE BODY: APPS.OKL_KLE_PVT_W
12.1.1