Search Results ship_to_full_address




Overview

OKL_AM_ASSET_SALE_UV is a read-only database view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the OKL - Lease and Finance Management product. Its name follows the standard Oracle naming convention: the _UV suffix designates a user-facing validation or inquiry view, while AM and ASSET_SALE identify the asset management and asset disposition business area. The view is reported VALID in the ETRM metadata, confirming the definition compiles cleanly against its dependent objects in both Oracle EBS 12.1.1 and 12.2.2.

The view consolidates asset sale transactions that originate in Oracle Order Management and flow into Lease and Finance Management asset return processing. It joins order header, order line, item, customer, ship-to address, contract, asset return, and remarketing data into a single denormalized row set. Its principal role is to support reporting and integration requirements where lease assets are sold to customers, providing a joined, presentation-ready projection rather than requiring report authors to reconstruct the OE/OKL relationships manually.

Underlying Base Objects

The view is defined over a fixed multi-table join. The following documented base objects are referenced:

The join links order headers to lines on HEADER_ID, links inventory items through the key flexfield view, resolves customer identity through the HZ tables, and connects asset return and contract records through the OKL identifiers.

Key Columns

Columns returned by the view include:

Common Use Cases and Queries

Typical usage includes asset sale reporting, booked versus unbooked line reconciliation, and lease-to-order integration extracts. Because BOOKED_FLAG is exposed directly, a frequent query filters unbooked sale lines:

  • SELECT order_number, line_number, customer_name, item_name, booked_flag FROM apps.okl_am_asset_sale_uv WHERE booked_flag = 'N';
  • SELECT contract_number, asset_number, unit_selling_price, ship_to_full_address FROM apps.okl_am_asset_sale_uv WHERE org_id = :p_org_id;

Note the BOOKED_FLAG value semantics follow OE_ORDER_LINES_ALL. The view is read-only and should be queried directly rather than modified.