Search Results container_flag
Overview
APPS.WSH_DLVB_SHIP_FROM_TO_V is a lightweight reporting and integration view defined in the Oracle E-Business Suite shipping module (WSH). It exposes a filtered subset of delivery detail records together with the ship-from and ship-to location identifiers and container information. The view is particularly relevant to users who search on the container_flag attribute, because that column is explicitly projected by the view and originates directly from the underlying delivery details table.
The view presents only those rows from WSH_DELIVERY_DETAILS where the line direction is outbound. Specifically, the WHERE clause applies NVL(line_direction, 'O') IN ('O', 'IO'), meaning rows with a null line direction are treated as outbound, and rows marked as outbound ('O') or internal outbound ('IO') are retained. Inbound, return, and other non-outbound line directions are excluded. This makes the view a convenient, pre-filtered source for downstream reports, interfaces, and integration programs that must work exclusively with outbound shipment details.
Two columns, DELIVERY_ID and DELIVERY_NAME, are deliberately stubbed out as NULL casts (to_number(null) and to_char(null)). This design allows the view to conform to a common column contract expected by consuming programs while remaining decoupled from the delivery header, effectively providing ship-from/ship-to and container-level detail without requiring a join to the delivery header table.
Underlying Base Objects
The view is defined over a single base object: the synonym WSH_DELIVERY_DETAILS, which resolves to the core shipping table of the same name. There are no joins, unions, or aggregation in the view text. Consequently, every row in WSH_DLVB_SHIP_FROM_TO_V corresponds one-to-one with a qualifying row in WSH_DELIVERY_DETAILS. Because the definition relies on a synonym rather than a fully qualified schema reference, the view resolves against the APPS schema objects as shipped in EBS 12.1.1 and 12.2.2.
Key Columns
- CONTAINER_FLAG — Indicates whether the delivery detail line is associated with a container (such as a carton or pallet) or is handled as loose/bulk material. This is the column most often used to partition packed versus unpacked shipment lines.
- DELIVERY_DETAIL_ID — The primary identifier of the delivery detail line, used to join back to the base table or to related shipping entities.
- CONTAINER_NAME — The name or identifier of the container (LPN) associated with the line, when populated.
- ORGANIZATION_ID — The inventory organization owning the shipped item.
- INVENTORY_ITEM_ID — The item being shipped.
- SHIP_FROM_LOCATION_ID — The location from which the goods are dispatched.
- SHIP_TO_LOCATION_ID — The destination location for the shipment.
- DELIVERY_ID / DELIVERY_NAME — Null placeholders, retained to satisfy a consistent column contract; they carry no data.
Common Use Cases and Queries
A frequent requirement is to identify all containerized outbound lines for a given organization or item, which the search term "container_flag" suggests:
- Report packed versus loose outbound deliveries by filtering on CONTAINER_FLAG.
- Extract ship-from and ship-to location pairs for logistics or transportation planning.
- Feed interfaces that require outbound-only delivery detail records without headers.
Sample query:
SELECT container_flag,
container_name,
organization_id,
inventory_item_id,
ship_from_location_id,
ship_to_location_id
FROM apps.wsh_dlvb_ship_from_to_v
WHERE container_flag = 'Y'
AND organization_id = :p_org_id;
Because reserved words such as CONTAINER_FLAG are not Oracle SQL reserved terms, they may be referenced without quoting. The absence of a delivery header join means the view is efficient for row-level reporting but must be joined to WSH_DELIVERY_HEADERS externally when delivery-level attributes are required.
-
APPS.WSH_CONTAINER_UTILITIES SQL Statements
12.2.2
-
APPS.WSH_CONTAINER_UTILITIES SQL Statements
12.1.1
-
VIEW: APPS.WSH_DLVB_SHIP_FROM_TO_V
12.2.2
-
View: WSH_DLVY_SHIP_FROM_TO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVY_SHIP_FROM_TO_V, object_name:WSH_DLVY_SHIP_FROM_TO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVY_SHIP_FROM_TO_V ,
-
VIEW: APPS.WSH_DLVB_SHIP_FROM_TO_V
12.1.1
-
VIEW: APPS.WSH_DSNO_UNIQUE_CONTAINERS_V
12.1.1
-
VIEW: APPS.WSH_DLVY_SHIP_FROM_TO_V
12.1.1
-
View: WSH_DLVB_SHIP_FROM_TO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVB_SHIP_FROM_TO_V, object_name:WSH_DLVB_SHIP_FROM_TO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVB_SHIP_FROM_TO_V ,
-
View: WSH_DLVB_SHIP_FROM_TO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVB_SHIP_FROM_TO_V, object_name:WSH_DLVB_SHIP_FROM_TO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVB_SHIP_FROM_TO_V ,
-
View: WSH_DLVY_SHIP_FROM_TO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVY_SHIP_FROM_TO_V, object_name:WSH_DLVY_SHIP_FROM_TO_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DLVY_SHIP_FROM_TO_V ,
-
VIEW: APPS.WSH_DSNO_UNIQUE_CONTAINERS_V
12.2.2
-
APPS.WSH_DETAILS_VALIDATIONS SQL Statements
12.2.2
-
VIEW: APPS.WSH_DLVY_SHIP_FROM_TO_V
12.2.2
-
VIEW: APPS.WSH_DLVY_SHIP_FROM_TO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVY_SHIP_FROM_TO_V, object_name:WSH_DLVY_SHIP_FROM_TO_V, status:VALID,
-
VIEW: APPS.WSH_DLVB_SHIP_FROM_TO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVB_SHIP_FROM_TO_V, object_name:WSH_DLVB_SHIP_FROM_TO_V, status:VALID,
-
APPS.WSH_DETAILS_VALIDATIONS SQL Statements
12.1.1
-
VIEW: APPS.MST_WSH_DEL_DET_NOTPACKED_V
12.1.1
-
View: FTE_LOAD_DETAILS_V
12.2.2
product: FTE - Transportation Execution , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WSH_DLVY_SHIP_FROM_TO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVY_SHIP_FROM_TO_V, object_name:WSH_DLVY_SHIP_FROM_TO_V, status:VALID,
-
VIEW: APPS.WSH_DLVB_SHIP_FROM_TO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DLVB_SHIP_FROM_TO_V, object_name:WSH_DLVB_SHIP_FROM_TO_V, status:VALID,
-
APPS.WSH_WSHRDLAB_XMLP_PKG SQL Statements
12.1.1
-
APPS.WSH_CONTAINER_GRP SQL Statements
12.2.2
-
View: FTE_LOAD_DETAILS_V
12.1.1
product: FTE - Transportation Execution , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.WSH_CMSTPW_ORDERS_V
12.1.1
-
APPS.WSH_WSHRDLAB_XMLP_PKG SQL Statements
12.2.2
-
APPS.WSH_CONTAINER_GRP SQL Statements
12.1.1
-
APPS.WSH_SHIP_CONFIRM_ACTIONS2 SQL Statements
12.2.2
-
APPS.WSH_BOLS_UTIL_PKG SQL Statements
12.1.1
-
APPS.WSH_DLVB_COMMON_ACTIONS SQL Statements
12.2.2
-
APPS.WSH_BOLS_UTIL_PKG SQL Statements
12.2.2
-
APPS.WSH_DLVB_COMMON_ACTIONS SQL Statements
12.1.1
-
APPS.WSH_SHIP_CONFIRM_ACTIONS2 SQL Statements
12.1.1
-
View: WSH_DSNO_UNIQUE_CONTAINERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_UNIQUE_CONTAINERS_V, object_name:WSH_DSNO_UNIQUE_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_UNIQUE_CONTAINERS_V ,
-
VIEW: APPS.MST_WSH_TOPMOST_PACKAGES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MST_WSH_TOPMOST_PACKAGES_V, status:VALID,
-
APPS.WSH_CONTAINER_ACTIONS SQL Statements
12.1.1
-
APPS.WSH_CONTAINER_ACTIONS SQL Statements
12.2.2
-
VIEW: APPS.WSH_CMSTPW_ORDERS_V
12.2.2
-
VIEW: APPS.MST_WSH_DEL_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MST_WSH_DEL_DETAILS_V, status:VALID,
-
VIEW: APPS.WSHFV_FREIGHT_COSTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_FREIGHT_COSTS, object_name:WSHFV_FREIGHT_COSTS, status:VALID,
-
VIEW: APPS.IBE_SHIP_DLVY_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_SHIP_DLVY_DTL_V, object_name:IBE_SHIP_DLVY_DTL_V, status:VALID,
-
View: WSH_DSNO_UNIQUE_CONTAINERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_DSNO_UNIQUE_CONTAINERS_V, object_name:WSH_DSNO_UNIQUE_CONTAINERS_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_DSNO_UNIQUE_CONTAINERS_V ,
-
VIEW: APPS.MST_WSH_DEL_DET_NOTPACKED_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MST_WSH_DEL_DET_NOTPACKED_V, status:VALID,
-
VIEW: APPS.WSHFV_FREIGHT_COSTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSHFV_FREIGHT_COSTS, object_name:WSHFV_FREIGHT_COSTS, status:VALID,
-
VIEW: APPS.IBE_SHIP_DLVY_DTL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IBE.IBE_SHIP_DLVY_DTL_V, object_name:IBE_SHIP_DLVY_DTL_V, status:VALID,
-
VIEW: APPS.MST_WSH_DEL_DET_WFIRMDEL_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MST_WSH_DEL_DET_WFIRMDEL_V, status:VALID,
-
APPS.WSH_WSHRDXCP_XMLP_PKG SQL Statements
12.1.1
-
VIEW: APPS.MST_WSH_DEL_DET_WFIRMDEL_V
12.1.1
-
VIEW: WSH.WSH_DELIVERY_DETAILS#
12.2.2
-
VIEW: APPS.MST_WSH_TOPMOST_PACKAGES_V
12.1.1
-
VIEW: APPS.MST_WSH_DEL_DETAILS_V
12.1.1