Search Results ui_location_code




Overview

The view WMS_WP_WWB_LINES_V is an Oracle E-Business Suite Applications (APPS) database object residing in the Warehouse Management (WMS) product family. It is a reporting and integration view that consolidates wave planning line information with associated outbound shipment, delivery, order, and item attributes. The view exposes a denormalized, query-friendly projection of line-level details used by the Wave Planning Workbench (WWB) within Oracle Warehouse Management. Because it joins data drawn from Order Management, Shipping Execution, and Inventory, it serves as a single source for line-level wave and delivery reporting without requiring consumers to reconstruct the join graph themselves.

The view is classified as VALID in the 12.1.1 / 12.2.2 data dictionary and is owned by the APPS schema. Its SELECT statement incorporates a USE_NL(MSIV) hint and a DISTINCT qualifier, indicating that it is intended to return unique line rows joined through nested loops against the item master view. Notably, the view repeatedly references WSH_LOCATIONS to resolve multiple ship-to, deliver-to, and contact identifiers into their UI_LOCATION_CODE descriptions.

Underlying Base Objects

The documented ETRM metadata lists the objects over which this view is defined. These span several EBS modules:

The heavy reliance on WSH_LOCATIONS is central to the view's design. Each of the many location-related columns (deliver-to, ship-to, contacts, and intermediate stops) is resolved through a scalar subquery against WSH_LOCATIONS keyed on WSH_LOCATION_ID. Because the user search term was wsh_locations, this view is a principal consumer of that table, translating numeric location identifiers into human-readable location codes for reporting and downstream integration.

Key Columns

The view exposes a broad set of line- and delivery-level attributes. Important columns include:

Common Use Cases and Queries

This view is typically queried for wave planning dashboards, delivery line reporting, and location-resolution integrations. A representative query follows:

  • Reporting all lines for a given delivery or order, including resolved ship-to and deliver-to location codes.
  • Analyzing pick, release, and planned fill rates across wave lines to identify shortfalls.
  • Extracting weight and volume data for load planning or carrier tendering.

Sample SQL:

SELECT order_number, delivery, item, requested_qty,
       shipped_qty, ship_to, deliver_to_location,
       pick_fill_rate, mode_of_transport, organization_code
  FROM apps.wms_wp_wwb_lines_v
 WHERE delivery = :p_delivery
 ORDER BY order_number;

Because the view resolves many identifiers through WSH_LOCATIONS, it is well suited to integrations that require readable location codes rather than internal IDs, eliminating the need for the calling application to join WSH_LOCATIONS independently.