Search Results container_maximum_load_weight




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

The WSH_OPSM_ASN_CONTAINERS_V view is a shipping execution object owned by the APPS schema within the WSH (Shipping Execution) product module. It exposes container, or License Plate Number (LPN), information associated with Advance Shipment Notices and delivery details. The view flattens hierarchical container relationships — including parent-child LPN structures — into a single queryable result set, making it well suited for reporting, outbound integration, and label-generation scenarios where a caller must retrieve the full attribute set of each container on a delivery.

Because it is a view rather than a table, it holds no data of its own; it consistently re-derives container information from the underlying shipping and inventory structures at query time. In Oracle EBS 12.1.1 and 12.2.2, this view is commonly referenced by ASN-related processes and by custom reports that need to reconstruct the packing hierarchy of an outbound shipment.

Underlying Base Objects

The view text joins several base objects, all exposed through APPS synonyms:

The outer joins to WSH_DELIVERY_DETAILS (WCIP) and MTL_SYSTEM_ITEMS allow containers without a defined parent or without a resolvable item to remain in the result set.

Key Columns

Common Use Cases and Queries

Typical scenarios include generating ASN container listings, printing LPN labels, and validating packing hierarchies. A representative query retrieving all containers for a delivery follows:

  • SELECT lpn, parent_lpn, container_item_id, container_gross_weight, container_volume, lpn_type FROM wsh_opsm_asn_containers_v WHERE delivery_id = :p_delivery_id;
  • Identifying root (top-level) containers: filter WHERE parent_container_instance_id IS NULL.
  • Reconstructing the hierarchy: order or group by PARENT_CONTAINER_INSTANCE_ID to walk the container tree.
  • Detecting SSCC-18 registered LPNs: filter WHERE lpn_type = 'SSCC-18'.

Because the view resolves parent relationships and organization-level LPN numbering dynamically, it is preferable to querying WSH_DELIVERY_DETAILS directly when complete container context is required.