Search Results container_tare_weight
Overview
APPS.WSH_OPSM_ASN_CONTAINERS_V is a valid, seeded database view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 releases, owned by the APPS schema and registered under the FND Design Data reference WSH.WSH_OPSM_ASN_CONTAINERS_V. It exposes container (License Plate Number, or LPN) information associated with Advance Shipment Notices (ASN) and outbound delivery records processed by Oracle Warehouse Management (WMS) and the Order Processing and Shipping Management (OPSM) module. The view is a reporting and integration construct: rather than storing data, it flattens the relationships between deliveries, delivery details, container instances, and inventory items into a single read-only projection that shipping, logistics, and integration developers can query directly.
Because the view surfaces attributes such as CONTAINER_FILL_PERCENT, CONTAINER_MAXIMUM_VOLUME, CONTAINER_MAXIMUM_LOAD_WEIGHT, and CONTAINER_MINIMUM_FILL_PERCENT, it is a primary source for users investigating container utilization thresholds. This accounts for its appearance in searches for "container_minimum_fill_percent," a column that stores the configured floor percentage below which a container is considered insufficiently filled for shipping rule evaluation. The view is consumed programmatically by WSH_OPSM_ASN_BE_PKG, the OPSM ASN business-event package, confirming its role as a supporting data source for ASN generation and container validation logic.
Underlying Base Objects
According to the documented dependency metadata, WSH_OPSM_ASN_CONTAINERS_V is defined over four base objects, all referenced through public synonyms resolved against the APPS schema:
- MTL_PARAMETERS — the inventory organization parameters table, providing organization-level context such as master organization identifiers used to join container items to their definitions.
- MTL_SYSTEM_ITEMS — the item master, supplying item descriptions (ITEM_DESCRIPTION) and item attribute validation for the container item and its contents.
- WSH_DELIVERY_ASSIGNMENTS — the table that links delivery details to deliveries, enabling the view to correlate a container to a specific DELIVERY_ID.
- WSH_DELIVERY_DETAILS — the shipping detail table that anchors container instance records to the outbound shipment line and inventory transactions.
The view depends on these tables in a read-only fashion; no materialization or trigger logic is documented. Because it is referenced by WSH_OPSM_ASN_BE_PKG, changes to container data propagate to ASN business events through normal query execution.
Key Columns
The view exposes 24 columns covering container identity, physical measurements, and delivery linkage:
- CONTAINER_INSTANCE_ID — unique numeric identifier for a physical container instance; joins to LPN definition tables.
- LPN (VARCHAR2 30) and PARENT_LPN — the license plate number of the container and its parent in a nested container hierarchy, with PARENT_CONTAINER_INSTANCE_ID for the numeric parent reference.
- CONTAINER_ITEM_ID, MASTER_SERIAL_NUMBER, CONTAINER_SERIAL_NUMBER, LOT_NUMBER — item and lot identification for the container and any serialized contents.
- CONTAINER_TYPE, LPN_TYPE — classification of the container (for example pallet, carton, or tote).
- CONTAINER_GROSS_WEIGHT / _UOM, CONTAINER_NET_WEIGHT, CONTAINER_TARE_WEIGHT — weight metrics used in load and shipping calculations.
- CONTAINER_VOLUME / _UOM, CONTAINER_MAXIMUM_VOLUME — current and maximum volumetric capacity.
- CONTAINER_MAXIMUM_LOAD_WEIGHT — the permitted weight ceiling for the container.
- CONTAINER_FILL_PERCENT — the actual current fill level as a percentage.
- CONTAINER_MINIMUM_FILL_PERCENT — the configured minimum fill threshold; the column the user sought. It supports rule evaluation that flags under-utilized containers before ASN dispatch.
- CONTAINER_SEAL_CODE, CONTAINER_TRACKING_NUMBER — security seal and carrier tracking references.
- ITEM_DESCRIPTION, DELIVERY_ID — item description from MTL_SYSTEM_ITEMS and the associated delivery header identifier.
Common Use Cases and Queries
The view is most frequently queried for container-level ASN reporting, fill-rate compliance, and integration extracts. A representative query listing containers below their minimum fill threshold is:
SELECT lpn, container_type, container_fill_percent, container_minimum_fill_percent, delivery_id FROM apps.wsh_opsm_asn_containers_v WHERE container_fill_percent < container_minimum_fill_percent;
Other common patterns include joining DELIVERY_ID to WSH_DELIVERIES for shipment manifests, aggregating CONTAINER_NET_WEIGHT and CONTAINER_VOLUME by delivery, and traversing the parent-child LPN hierarchy via PARENT_CONTAINER_INSTANCE_ID. Integration developers building ASN messages typically extract all columns for containers tied to a delivery, using WSH_OPSM_ASN_BE_PKG as the runtime partner. Because the view is read-only and joins a small number of tables, it is generally safe for high-frequency reporting, though large delivery volumes benefit from filtering on DELIVERY_ID.
-
VIEW: APPS.WSH_OPSM_ASN_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_CONTAINERS_V, object_name:WSH_OPSM_ASN_CONTAINERS_V, status:VALID,
-
VIEW: APPS.WSH_OPSM_ASN_CONTAINERS_V
12.2.2
-
View: WSH_DSNO_CONTAINERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_CONTAINERS_V, object_name:WSH_DSNO_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_CONTAINERS_V ,
-
View: WSH_DSNO_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_CONTAINERS_V, object_name:WSH_DSNO_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_CONTAINERS_V ,
-
View: ECE_DSNO_CONTAINERS_V
12.2.2
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: ECE_DSNO_CONTAINERS_V
12.1.1
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WSH_DSNO_CONTAINERS_V
12.2.2
-
VIEW: APPS.WSH_DSNO_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_CONTAINERS_V, object_name:WSH_DSNO_CONTAINERS_V, status:VALID,
-
VIEW: APPS.WSH_DSNO_CONTAINERS_V
12.1.1
-
VIEW: APPS.WSH_DSNO_CONTAINERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_CONTAINERS_V, object_name:WSH_DSNO_CONTAINERS_V, status:VALID,
-
View: WSH_OPSM_ASN_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OPSM_ASN_CONTAINERS_V, object_name:WSH_OPSM_ASN_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OPSM_ASN_CONTAINERS_V ,
-
TYPE: APPS.WSH_OPSM_ASN_CONTAINERS_REC
12.2.2
owner:APPS, object_type:TYPE, object_name:WSH_OPSM_ASN_CONTAINERS_REC, status:VALID,
-
eTRM - WSH Tables and Views
12.2.2
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,
-
eTRM - WSH Tables and Views
12.1.1
description: Stores hierarchy for zones. Each region component of a zone has a record in this table. ,