Search Results master_container_id




Overview

The APPS.WSH_PACKED_CONTAINERS_V view is a reporting and integration construct within the Oracle E-Business Suite Order Entry (OE) module. It exposes packing container information maintained by the Warehouse Management (WSH) application, presenting container-level detail such as quantities, weights, volumes, parent-child container relationships, and inventory item attributes. The view is defined over the WSH_PACKED_CONTAINERS base table and enriches each container record with descriptive and control attributes drawn from the MTL_SYSTEM_ITEMS and MTL_PARAMETERS tables.

Because it joins container data to the inventory item master and organization parameters, the view is particularly useful for reporting scenarios that require both packing structure (for example, parent container, master container, and sequence) and the associated item and organization control settings. This makes it valuable across shipping, order fulfillment, and logistics reporting where container contents must be reconciled against item and warehouse definitions.

Underlying Base Objects

The view is defined over three documented base objects, all exposed through APPS synonyms:

  • WSH_PACKED_CONTAINERS — the primary table holding the packed container records, aliased as PC. This supplies container identifiers, delivery associations, quantities, weights, volumes, serial and lot details, and descriptive flexfield attributes.
  • MTL_SYSTEM_ITEMS — the inventory item master, aliased as MSI. It supplies item description, primary unit of measure, fill controls, volumetric attributes, and control codes for subinventories, revisions, lots, serials, and locators.
  • MTL_PARAMETERS — the organization parameters table, aliased as ORG. It supplies organization-level stock locator and negative inventory receipt control settings.

The join links container records to items by inventory item ID and organization ID, and links to organization parameters by organization ID using an outer join (ORG.ORGANIZATION_ID(+) = MSI.ORGANIZATION_ID), ensuring container rows are retained even where organization parameters are absent.

Key Columns

Common Use Cases and Queries

A frequent requirement is to retrieve all containers belonging to a master container, which supports hierarchy reporting and manifest generation:

  • List containers for a specific master container:
SELECT container_id, parent_container_id, master_container_id,
       sequence_number, quantity, gross_weight, net_weight
  FROM apps.wsh_packed_containers_v
 WHERE master_container_id = :master_container_id
 ORDER BY sequence_number;
  • Summarize total weight and volume per delivery for shipment planning:
SELECT delivery_id, SUM(gross_weight) total_gross, SUM(volume) total_volume
  FROM apps.wsh_packed_containers_v
 GROUP BY delivery_id;
  • Identify containers with serial or lot control for compliance reporting:
SELECT container_id, delivery_id, serial_number, lot_number, revision
  FROM apps.wsh_packed_containers_v
 WHERE serial_number IS NOT NULL
    OR lot_number IS NOT NULL;

These queries leverage the view's combination of packing hierarchy, measurement, and item control data, making it suitable for reporting, integration, and reconciliation tasks without requiring callers to assemble the underlying three-table join themselves.