Search Results wsh_delivery_assignments_v
Overview
WSH_DELIVERY_ASSIGNMENTS_V is an APPS-owned database view within the Oracle E-Business Suite Shipping Execution (WSH) module. It exposes a filtered and lightly transformed projection of the delivery assignment records that link delivery details to deliveries and, where applicable, to parent deliveries. Unlike many reporting views in the WSH schema, this view does not join additional tables; its purpose is to restrict the underlying assignment data to a defined set of assignment types and to normalize the TYPE column value for downstream consumers.
Because the view belongs to the APPS schema and carries a VALID status in both 12.1.1 and 12.2.2, it is treated as a stable interface for reporting, concurrent programs, and integrations that need to reason about which delivery details are assigned to which deliveries. It is commonly consumed by shipping reports, delivery confirmation logic, and custom extensions that must distinguish standard shipment assignments from other assignment categories.
Underlying Base Objects
The view is defined directly over a single base object, referenced in the metadata as WSH_DELIVERY_ASSIGNMENTS (SYNONYM). No joins, aggregations, or subqueries are present in the view text. The defining query selects the assignment identifier, the delivery and parent delivery identifiers, the delivery detail and parent delivery detail identifiers, the standard WHO audit columns, the program and request context columns, the ACTIVE_FLAG, and a derived TYPE value.
The TYPE transformation is the principal behavioral characteristic of the view. The projection computes NVL(WDA.TYPE, 'S'), meaning any assignment whose TYPE is null is surfaced as 'S'. The WHERE clause then filters rows so that only assignments with TYPE in ('S','O') or with a null TYPE are returned. In effect, the view presents standard and 'O'-type assignments plus untagged rows normalized to 'S', while excluding any other type codes that may exist in the base table.
Key Columns
- DELIVERY_ASSIGNMENT_ID — Primary identifier of the assignment record; the unique key exposed by the view.
- DELIVERY_ID — Identifier of the delivery to which the detail is assigned.
- PARENT_DELIVERY_ID — Identifier of the parent delivery, where the assignment participates in a delivery hierarchy.
- DELIVERY_DETAIL_ID — Identifier of the delivery detail (line-level shipment record) being assigned.
- PARENT_DELIVERY_DETAIL_ID — Identifier of the parent delivery detail in hierarchical shipping structures.
- ACTIVE_FLAG — Indicates whether the assignment is currently active; used to filter historical versus live assignments.
- TYPE — Assignment type, normalized via NVL so that null values appear as 'S'; the view is restricted to 'S', 'O', and null-derived rows.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN provide standard WHO tracking.
- Program context columns — PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE, and REQUEST_ID identify the concurrent program or request that last modified the row.
Common Use Cases and Queries
Typical scenarios include identifying all active delivery details assigned to a given delivery, correlating details with parent deliveries, and building shipping reports that exclude non-standard assignment types. Because the view hides underlying type codes other than 'S' and 'O', it is often preferred over the base table when the reporting requirement aligns with standard shipment semantics.
Example query listing active assignments for a delivery:
SELECT delivery_assignment_id, delivery_id, delivery_detail_id, parent_delivery_id, type FROM wsh_delivery_assignments_v WHERE delivery_id = :p_delivery_id AND active_flag = 'Y';SELECT delivery_id, delivery_detail_id FROM wsh_delivery_assignments_v WHERE active_flag = 'Y' AND type = 'S';SELECT a.delivery_id, a.delivery_detail_id, a.parent_delivery_id FROM wsh_delivery_assignments_v a WHERE a.delivery_detail_id = :p_detail_id AND a.active_flag = 'Y';
For performance, queries should filter on DELIVERY_ID, DELIVERY_DETAIL_ID, or ACTIVE_FLAG, since these columns drive the most selective access paths against the underlying synonym. Where transformations beyond the built-in TYPE normalization are required, the base table WSH_DELIVERY_ASSIGNMENTS should be queried directly.
-
View: WSH_DELIVERY_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_ASSIGNMENTS_V, object_name:WSH_DELIVERY_ASSIGNMENTS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_ASSIGNMENTS_V ,
-
View: WSH_BACKORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_BACKORDER_LINES_V, object_name:WSH_BACKORDER_LINES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_BACKORDER_LINES_V ,
-
View: WSH_CMSTPW_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_CMSTPW_ORDERS_V, object_name:WSH_CMSTPW_ORDERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_CMSTPW_ORDERS_V ,
-
View: WSH_DELIVERY_DETAILS_OE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_DETAILS_OE_V, object_name:WSH_DELIVERY_DETAILS_OE_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_DETAILS_OE_V ,
-
View: WSH_DELIVERABLE_STOPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLE_STOPS_V, object_name:WSH_DELIVERABLE_STOPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERABLE_STOPS_V ,
-
View: WSH_DSNO_PACKED_QUANTITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_PACKED_QUANTITY_V, object_name:WSH_DSNO_PACKED_QUANTITY_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_PACKED_QUANTITY_V ,
-
View: WSH_PURGE_SET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_PURGE_SET_V, object_name:WSH_PURGE_SET_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_PURGE_SET_V ,
-
View: WSH_INV_DELIVERY_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_INV_DELIVERY_DETAILS_V, object_name:WSH_INV_DELIVERY_DETAILS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_INV_DELIVERY_DETAILS_V ,
-
View: WSH_OE_LINES_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_OE_LINES_V1, object_name:WSH_OE_LINES_V1, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_OE_LINES_V1 ,
-
View: WSH_DELIVERABLE_TRIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERABLE_TRIPS_V, object_name:WSH_DELIVERABLE_TRIPS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERABLE_TRIPS_V ,
-
View: WSH_STND_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_SHIPITEMS_V, object_name:WSH_STND_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STND_SHIPITEMS_V ,
-
View: WSH_DSNO_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEM_DETAILS_V, object_name:WSH_DSNO_ITEM_DETAILS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEM_DETAILS_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: WSH_SS_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_CONTAINERS_V, object_name:WSH_SS_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_CONTAINERS_V ,
-
View: WSH_STND_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_CONTAINERS_V, object_name:WSH_STND_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STND_CONTAINERS_V ,
-
View: WSH_DELIVERY_LINE_STATUS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DELIVERY_LINE_STATUS_V, object_name:WSH_DELIVERY_LINE_STATUS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DELIVERY_LINE_STATUS_V ,
-
View: WSH_DSNO_ORDERS_COMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ORDERS_COMM_V, object_name:WSH_DSNO_ORDERS_COMM_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ORDERS_COMM_V ,
-
View: WSH_SS_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPITEMS_V, object_name:WSH_SS_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPITEMS_V ,
-
View: WSH_DSNO_ITEMS_COMM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ITEMS_COMM_V, object_name:WSH_DSNO_ITEMS_COMM_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ITEMS_COMM_V ,
-
View: WSH_SHIPPING_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.WSH_SHIPPING_DETAILS_V WSH.WSH_SHIPPING_DETAILS_V, object_name:WSH_SHIPPING_DETAILS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SHIPPING_DETAILS_V ,
-
View: WSH_DLVB_DLVY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVB_DLVY_V, object_name:WSH_DLVB_DLVY_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVB_DLVY_V ,
-
View: WSH_ITM_SHIPITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPITEMS_V, object_name:WSH_ITM_SHIPITEMS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_SHIPITEMS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_SHIPITEMS_V ,
-
View: WSH_ITM_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_CONTAINERS_V, object_name:WSH_ITM_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , description: Temporary Table to return WSH_SS_CONTAINERS_V along with Dummy Records to avoid problems in Retreiving Data while using XSU. , implementation_dba_data: APPS.WSH_ITM_CONTAINERS_V ,
-
View: WSH_EXCEPTIONS_DLVY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_EXCEPTIONS_DLVY_V, object_name:WSH_EXCEPTIONS_DLVY_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_EXCEPTIONS_DLVY_V ,
-
View: WSH_DSNO_DELIVERY_ATTRIBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_DELIVERY_ATTRIBS_V, object_name:WSH_DSNO_DELIVERY_ATTRIBS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_DELIVERY_ATTRIBS_V ,
-
View: WSH_DSNO_ORDERS_SPECIFIC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_ORDERS_SPECIFIC_V, object_name:WSH_DSNO_ORDERS_SPECIFIC_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_ORDERS_SPECIFIC_V ,
-
View: WSH_DSNO_DELIVERIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_DELIVERIES_V, object_name:WSH_DSNO_DELIVERIES_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_DELIVERIES_V ,