Search Results okl_asset_returns_v
Overview
The OKL_ASSET_RETURNS_V view is a reporting and integration layer within the Oracle E-Business Suite (EBS) Leasing and Finance Management module (OKL). It exposes the transactional data that governs assets that are off lease following a contract termination, as well as assets that have been flagged as potential returns. The view is owned by the APPS schema and holds a VALID status in both release 12.1.1 and 12.2.2, making it a stable object against which custom reports, concurrent programs, and integrations can be built.
Rather than storing data itself, OKL_ASSET_RETURNS_V presents a denormalized, user-friendly projection of the underlying asset returns entity. It combines the transactional attributes held in the base table with descriptive and translated content, thereby freeing report developers from having to perform their own joins against the translation table. This design follows the standard Oracle EBS pattern in which a _B (base) table and a _TL (translation) table are coupled through a _V view, with the view acting as the canonical read interface.
From a functional standpoint, the view supports the returns management lifecycle: identifying an asset as a candidate for return, recording the actual return and title return dates, tracking repurchase and relocation options, and capturing commercial reason codes. Because it is a view, all access is read-oriented, and DML must be directed at the underlying base table through the appropriate OKL business APIs.
Underlying Base Objects
The documented metadata for ETRM 12.2.2 identifies two referenced base objects, both exposed through synonyms in the APPS schema:
- OKL_ASSET_RETURNS_B — the base transactional table that stores the primary asset return records, including identifiers, dates, flags, price fields, and descriptive flexfield attributes.
- OKL_ASSET_RETURNS_TL — the translation table that stores language-dependent text such as the new item description and comments.
The view's SELECT statement joins these two objects. Most columns are sourced from OKL_ASSET_RETURNS_B with the alias ARTB, while the SFWT_FLAG, NEW_ITEM_DESCRIPTION, and COMMENTS columns are drawn from the ARTB-equivalent translation row aliased as ARTT. The join is keyed on the record ID, ensuring one translated row per base row for the session language. The use of synonyms rather than direct table names is consistent with APPS-schema views and permits the underlying objects to be relocated without invalidating dependent code.
Key Columns
The view exposes a broad column set. The most significant include:
- ROW_ID, ID, OBJECT_VERSION_NUMBER — the physical row identifier, the logical primary key, and the optimistic locking version used by the underlying entity.
- RMR_ID, IMR_ID, RNA_ID, KLE_ID, ISO_ID — foreign keys linking the return to the relevant return, item, negotiation, lease, and insurance/subscription entities.
- ARS_CODE, ART1_CODE — status and type/ reason code values that drive workflow and reporting classification.
- DATE_RETURNED, DATE_TITLE_RETURNED, DATE_RETURN_DUE, DATE_RETURN_NOTIFIED — the core dates for the return lifecycle, from notification through title transfer.
- RELOCATE_ASSET_YN, ASSET_RELOCATED_YN, REPURCHASE_AGMT_YN, VOLUNTARY_YN — Yes/No indicators expressing disposition decisions.
- FLOOR_PRICE, NEW_ITEM_PRICE — financial values relevant to repurchase and replacement pricing.
- DATE_REPOSSESSION_REQUIRED, DATE_REPOSSESSION_ACTUAL, DATE_HOLD_UNTIL — dates governing repossession and hold periods.
- COMMMERCIALLY_REAS_SALE_YN, LIKE_KIND_YN — commercial-reason and like-kind exchange indicators (note the documented spelling of COMMMERCIALLY_REAS_SALE_YN).
- NEW_ITEM_DESCRIPTION, COMMENTS, SFWT_FLAG — translated descriptive text and the software flag from the _TL object.
- ATTRIBUTE_CATEGORY through ATTRIBUTE15 — the descriptive flexfield segments available for customer-specific extension.
- ORG_ID — the multi-org operating unit identifier used for row-level security.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — the standard "Who" audit columns populated when records are created or updated by concurrent programs.
Common Use Cases and Queries
Typical scenarios include building an off-lease asset return register, monitoring overdue returns, and feeding downstream remarketing or disposition processes. Because ORG_ID is present, queries should normally be filtered by operating unit, and the view should be accessed through the APPS schema or a synonym.
A representative query listing returns due within a window is:
SELECT id, ars_code, date_return_due, date_returned FROM apps.okl_asset_returns_v WHERE org_id = :p_org_id AND date_return_due BETWEEN :p_from AND :p_to ORDER BY date_return_due;
To identify assets flagged for repurchase with pricing information:
SELECT id, kle_id, floor_price, new_item_price FROM apps.okl_asset_returns_v WHERE repurchase_agmt_yn = 'Y' AND org_id = :p_org_id;
To retrieve descriptive detail for a specific return:
SELECT id, new_item_description, comments FROM apps.okl_asset_returns_v WHERE id = :p_return_id;
Because the object is a view and object version numbers are exposed, consumers integrating through interfaces should treat it as read-only and perform updates through the OKL asset returns business APIs, supplying OBJECT_VERSION_NUMBER to enforce optimistic locking.
-
View: OKL_ASSET_RETURNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_RETURNS_V, object_name:OKL_ASSET_RETURNS_V, status:VALID, product: OKL - Leasing and Finance Management , description: The transaction table for managing assets that are off lease after a contract termination or assets that have been identified as possible returns , implementation_dba_data: APPS.OKL_ASSET_RETURNS_V ,
-
View: OKL_ASSET_RETURNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_ASSET_RETURNS_V, object_name:OKL_ASSET_RETURNS_V, status:VALID, product: OKL - Lease and Finance Management , description: The transaction table for managing assets that are off lease after a contract termination or assets that have been identified as possible returns , implementation_dba_data: APPS.OKL_ASSET_RETURNS_V ,
-
APPS.OKL_AM_ASSET_RETURN_WF SQL Statements
12.1.1
-
VIEW: APPS.OKL_AM_REPURCHASE_ASSET_HDR_UV
12.1.1
-
VIEW: APPS.OKL_AM_ASSET_LOV_UV
12.1.1
-
VIEW: APPS.OKL_AM_ASSET_LOV_UV
12.2.2
-
APPS.OKL_AM_ASSET_RETURN_WF SQL Statements
12.2.2
-
VIEW: APPS.OKL_AM_REPURCHASE_ASSET_HDR_UV
12.2.2
-
SYNONYM: APPS.OKL_ASSET_RETURNS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_ASSET_RETURNS_TL, status:VALID,
-
SYNONYM: APPS.OKL_ASSET_RETURNS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_ASSET_RETURNS_TL, status:VALID,
-
VIEW: APPS.OKL_AM_REPURCHASE_ASSET_HDR_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_REPURCHASE_ASSET_HDR_UV, object_name:OKL_AM_REPURCHASE_ASSET_HDR_UV, status:VALID,
-
VIEW: APPS.OKL_AM_REPURCHASE_ASSET_HDR_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_REPURCHASE_ASSET_HDR_UV, object_name:OKL_AM_REPURCHASE_ASSET_HDR_UV, status:VALID,
-
View: OKL_AM_ASSET_LOV_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_LOV_UV, object_name:OKL_AM_ASSET_LOV_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_LOV_UV ,
-
PACKAGE BODY: APPS.OKL_TAP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_TAP_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_RFC_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_RFC_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_RFC_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_RFC_PVT, status:VALID,
-
View: OKL_AM_REPURCHASE_ASSET_HDR_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_REPURCHASE_ASSET_HDR_UV, object_name:OKL_AM_REPURCHASE_ASSET_HDR_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_REPURCHASE_ASSET_HDR_UV ,
-
PACKAGE BODY: APPS.OKL_AM_SHIPPING_INSTR_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_SHIPPING_INSTR_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_RAS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_RAS_PVT, status:VALID,
-
View: OKL_AM_ASSET_LOV_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_LOV_UV, object_name:OKL_AM_ASSET_LOV_UV, status:VALID, product: OKL - Leasing and Finance Management , implementation_dba_data: APPS.OKL_AM_ASSET_LOV_UV ,
-
SYNONYM: APPS.OKL_ASSET_RETURNS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OKL_ASSET_RETURNS_B, status:VALID,
-
View: OKL_AM_REPURCHASE_ASSET_HDR_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_REPURCHASE_ASSET_HDR_UV, object_name:OKL_AM_REPURCHASE_ASSET_HDR_UV, status:VALID, product: OKL - Lease and Finance Management , implementation_dba_data: APPS.OKL_AM_REPURCHASE_ASSET_HDR_UV ,
-
PACKAGE BODY: APPS.OKL_ART_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ART_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_QTE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_QTE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_TAP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_TAP_PVT, status:VALID,
-
SYNONYM: APPS.OKL_ASSET_RETURNS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OKL_ASSET_RETURNS_B, status:VALID,
-
PACKAGE BODY: APPS.OKL_RAS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_RAS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_AM_SHIPPING_INSTR_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_SHIPPING_INSTR_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_ART_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_ART_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_QTE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_QTE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_AM_ASSET_RETURN_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_ASSET_RETURN_WF, status:VALID,
-
VIEW: APPS.OKL_AM_ASSET_LOV_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_LOV_UV, object_name:OKL_AM_ASSET_LOV_UV, status:VALID,
-
VIEW: APPS.OKL_AM_ASSET_LOV_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_LOV_UV, object_name:OKL_AM_ASSET_LOV_UV, status:VALID,
-
PACKAGE BODY: APPS.OKL_AM_ASSET_RETURN_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_ASSET_RETURN_WF, status:VALID,
-
PACKAGE: APPS.OKL_ART_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OKL_ART_PVT, status:VALID,
-
PACKAGE: APPS.OKL_ART_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OKL_ART_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_AM_QUOTES_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_QUOTES_WF, status:VALID,
-
APPS.OKL_AM_SHIPPING_INSTR_PVT SQL Statements
12.1.1
-
APPS.OKL_AM_SHIPPING_INSTR_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKL_AM_QUOTES_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_QUOTES_WF, status:VALID,
-
VIEW: APPS.OKL_AM_RMK_BILLING_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_RMK_BILLING_UV, object_name:OKL_AM_RMK_BILLING_UV, status:VALID,
-
APPS.OKL_ART_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKL_AM_CNTRCT_LN_TRMNT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_CNTRCT_LN_TRMNT_PVT, status:VALID,
-
VIEW: APPS.OKL_AM_ASSET_SALE_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_ASSET_SALE_UV, object_name:OKL_AM_ASSET_SALE_UV, status:VALID,
-
VIEW: APPS.OKL_AM_RMK_BILLING_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_AM_RMK_BILLING_UV, object_name:OKL_AM_RMK_BILLING_UV, status:VALID,
-
APPS.OKL_ART_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKL_SPLIT_ASSET_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_SPLIT_ASSET_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_AM_CNTRCT_LN_TRMNT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_AM_CNTRCT_LN_TRMNT_PVT, status:VALID,
-
VIEW: APPS.OKL_TRX_AP_INVOICES_UV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_AP_INVOICES_UV, object_name:OKL_TRX_AP_INVOICES_UV, status:VALID,
-
VIEW: APPS.OKL_TRX_AP_INVOICES_UV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKL.OKL_TRX_AP_INVOICES_UV, object_name:OKL_TRX_AP_INVOICES_UV, status:VALID,