Search Results shipment_attribute1
Overview
The WSH_STND_SHIPMENT_V view is a shipped-and-standalone reporting object owned by the APPS schema within the Oracle E-Business Suite WSH – Shipping Execution module. Its status is VALID and it is available in both EBS 12.1.1 and 12.2.2. The view presents a denormalized, business-friendly projection of delivery and shipment data, joining delivery header information from WSH_NEW_DELIVERIES with transaction history from WSH_TRANSACTIONS_HISTORY and enriching it with carrier, organization, and ship-from location attributes. Because it exposes descriptive column aliases (for example SHIP_METHOD, CARRIER, TRANSPORTATION_METHOD, and the SHIPMENT_ATTRIBUTE1 through SHIPMENT_ATTRIBUTE15 flexfield columns), it is intended for operational reporting, outbound integrations, and custom concurrent programs rather than for transactional processing. The view is scoped to shipping execution; it does not expose order line or inventory detail, only delivery-level shipment context.
Underlying Base Objects
According to the documented view text and ETRM metadata, WSH_STND_SHIPMENT_V is defined over the following base objects:
- WSH_NEW_DELIVERIES (SYNONYM) — aliased as WND; supplies the delivery header, weights, volumes, waybill, service level, and the descriptive flexfield attribute columns.
- WSH_TRANSACTIONS_HISTORY (SYNONYM) — aliased as WTH; supplies action type, document type, document number/revision, and original document number.
- WSH_CARRIERS_V (VIEW) — aliased as WCAR; resolves the carrier name.
- WSH_LOCATIONS (SYNONYM) and HR_LOCATIONS_ALL_TL (SYNONYM) — via HRL; provide the ship-from location code.
- ORG_ORGANIZATION_DEFINITIONS (VIEW) — aliased as OOG; supplies the organization code.
- HR_GENERAL and HR_SECURITY (PACKAGES) — supply the multitenancy and security predicates used by the localization layer.
The view uses SELECT DISTINCT, so duplicate delivery/transaction combinations are collapsed before returning rows.
Key Columns
- DELIVERY_ID — primary key of the delivery; joins back to WSH_NEW_DELIVERIES.
- ACTION_CODE / DOCUMENT_NUMBER / DOCUMENT_REVISION / DOCUMENT_TYPE — identify the shipment transaction record.
- SHIP_FROM_LOCATION, ORGANIZATION_CODE, CARRIER, SHIP_METHOD, SERVICE_LEVEL, TRANSPORTATION_METHOD — logistics descriptors.
- GROSS_WEIGHT, NET_WEIGHT, TARE_WEIGHT, WEIGHT_UOM_CODE, VOLUME, VOLUME_UOM_CODE, NUMBER_OF_LPN — weight, volume and packing metrics; TARE_WEIGHT is derived as gross weight less net weight.
- SHIPMENT_ATTRIBUTE_CATEGORY and SHIPMENT_ATTRIBUTE1 … SHIPMENT_ATTRIBUTE15 — the DFF segments sourced from WND.ATTRIBUTE1–15. This is the column set returned when a user searches for shipment_attribute1.
- MANUAL_WV, SHIPMENT_DIRECTION, DELIVERED_DATE, WAYBILL, FREIGHT_TERMS, FOB_CODE, SHIPPING_MARKS, LOADING_SEQUENCE — additional shipping and compliance attributes.
Common Use Cases and Queries
Typical scenarios include carrier scorecarding, shipment audits, DFF-driven reporting, and integration feeds. A simple query returning the shipment attribute and its descriptive context is shown below.
- Retrieve all deliveries carrying a specific DFF value:
SELECT delivery_id, document_number, carrier, ship_method, shipment_attribute_category, shipment_attribute1 FROM apps.wsh_stnd_shipment_v WHERE shipment_attribute1 = :p_attr1; - Weight and volume reconciliation by organization and ship-from location:
SELECT organization_code, ship_from_location, carrier, SUM(gross_weight) gross, SUM(net_weight) net, SUM(volume) vol FROM apps.wsh_stnd_shipment_v WHERE creation_date >= :p_from_date GROUP BY organization_code, ship_from_location, carrier; - Feed deliveries to a downstream TMS using ACTION_CODE, DOCUMENT_TYPE, and DELIVERED_DATE.
Because the view is a reporting projection over transactional shipping tables, always apply organization and date predicates to constrain row counts, and use the DELIVERY_ID to drill back to WSH_NEW_DELIVERIES for any detail not exposed here.
-
View: WSH_STND_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_SHIPMENT_V, object_name:WSH_STND_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_STND_SHIPMENT_V ,
-
View: ECE_POCO_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_SHIPMENTS_V, object_name:ECE_POCO_SHIPMENTS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts shipment informationfor the outbound Purchase Order Change (860/ORDCHG) transaction.@rep:scope private@rep:product PO@rep:lifecycle active@rep:displayname Purchase Order Change Shipment View@rep:category BUSINESS_ENTITY P , implementation_dba_data: APPS.ECE_POCO_SHIPMENTS_V ,
-
View: WSH_SS_SHIPMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPMENT_V, object_name:WSH_SS_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPMENT_V ,
-
VIEW: APPS.ECE_POO_SHIPMENTS_V
12.1.1
-
VIEW: EC.ECE_PO_INTERFACE_SHIPMENTS#
12.2.2
-
View: WSH_SS_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPMENT_V, object_name:WSH_SS_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_SS_SHIPMENT_V ,
-
View: ECE_POO_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_SHIPMENTS_V, object_name:ECE_POO_SHIPMENTS_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts shipment information* for the outbound Purchase Order (850/ORDERS) transaction.* @rep:scope private* @rep:product PO* @rep:lifecycle active* @rep:displayname Purchase Order Shipment View* @rep:category BUSINESS_ENTIT , implementation_dba_data: APPS.ECE_POO_SHIPMENTS_V ,
-
View: ECE_POO_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_SHIPMENTS_V, object_name:ECE_POO_SHIPMENTS_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts shipment information* for the outbound Purchase Order (850/ORDERS) transaction.* @rep:scope private* @rep:product PO* @rep:lifecycle active* @rep:displayname Purchase Order Shipment View* @rep:category BUSINESS_ENTIT , implementation_dba_data: APPS.ECE_POO_SHIPMENTS_V ,
-
View: ECE_POCO_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_SHIPMENTS_V, object_name:ECE_POCO_SHIPMENTS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts shipment informationfor the outbound Purchase Order Change (860/ORDCHG) transaction.@rep:scope private@rep:product PO@rep:lifecycle active@rep:displayname Purchase Order Change Shipment View@rep:category BUSINESS_ENTITY P , implementation_dba_data: APPS.ECE_POCO_SHIPMENTS_V ,
-
View: WSH_ITM_SHIPMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPMENT_V, object_name:WSH_ITM_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ITM_SHIPMENT_V ,
-
VIEW: APPS.WSH_ITM_SHIPMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPMENT_V, object_name:WSH_ITM_SHIPMENT_V, status:VALID,
-
View: WSH_ITM_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPMENT_V, object_name:WSH_ITM_SHIPMENT_V, status:VALID, product: WSH - Shipping Execution , implementation_dba_data: APPS.WSH_ITM_SHIPMENT_V ,
-
VIEW: APPS.WSH_SS_SHIPMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPMENT_V, object_name:WSH_SS_SHIPMENT_V, status:VALID,
-
VIEW: APPS.WSH_ITM_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_ITM_SHIPMENT_V, object_name:WSH_ITM_SHIPMENT_V, status:VALID,
-
VIEW: APPS.ECE_POCO_SHIPMENTS_V
12.1.1
-
VIEW: APPS.WSH_SS_SHIPMENT_V
12.1.1
-
VIEW: APPS.WSH_SS_SHIPMENT_V
12.2.2
-
VIEW: APPS.ECE_POO_SHIPMENTS_V
12.2.2
-
VIEW: APPS.ECE_POCO_SHIPMENTS_V
12.2.2
-
VIEW: APPS.WSH_STND_SHIPMENT_V
12.2.2
-
VIEW: APPS.WSH_SS_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_SS_SHIPMENT_V, object_name:WSH_SS_SHIPMENT_V, status:VALID,
-
VIEW: APPS.WSH_ITM_SHIPMENT_V
12.2.2
-
VIEW: APPS.WSH_STND_SHIPMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSH.WSH_STND_SHIPMENT_V, object_name:WSH_STND_SHIPMENT_V, status:VALID,
-
VIEW: PO.PO_LINES_INTERFACE#
12.2.2
-
VIEW: APPS.WSH_ITM_SHIPMENT_V
12.1.1
-
VIEW: APPS.ECE_POCO_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_SHIPMENTS_V, object_name:ECE_POCO_SHIPMENTS_V, status:VALID,
-
VIEW: APPS.ECE_POO_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_SHIPMENTS_V, object_name:ECE_POO_SHIPMENTS_V, status:VALID,
-
VIEW: APPS.ECE_POO_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POO_SHIPMENTS_V, object_name:ECE_POO_SHIPMENTS_V, status:VALID,
-
VIEW: APPS.ECE_POCO_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_SHIPMENTS_V, object_name:ECE_POCO_SHIPMENTS_V, status:VALID,
-
VIEW: EC.ECE_PO_INTERFACE_SHIPMENTS#
12.2.2
owner:EC, object_type:VIEW, object_name:ECE_PO_INTERFACE_SHIPMENTS#, status:VALID,
-
VIEW: PO.PO_LINES_INTERFACE#
12.2.2
owner:PO, object_type:VIEW, object_name:PO_LINES_INTERFACE#, status:VALID,
-
TABLE: EC.ECE_PO_INTERFACE_SHIPMENTS
12.2.2
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_PO_INTERFACE_SHIPMENTS, object_name:ECE_PO_INTERFACE_SHIPMENTS, status:VALID,
-
TABLE: EC.ECE_PO_INTERFACE_SHIPMENTS
12.1.1
owner:EC, object_type:TABLE, fnd_design_data:EC.ECE_PO_INTERFACE_SHIPMENTS, object_name:ECE_PO_INTERFACE_SHIPMENTS, status:VALID,
-
TABLE: PO.PO_LINES_INTERFACE
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINES_INTERFACE, object_name:PO_LINES_INTERFACE, status:VALID,
-
TABLE: PO.PO_LINES_INTERFACE
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_LINES_INTERFACE, object_name:PO_LINES_INTERFACE, status:VALID,
-
PACKAGE: APPS.PO_R12_CAT_UPG_PVT
12.2.2
-
PACKAGE: APPS.PO_R12_CAT_UPG_PVT
12.1.1
-
APPS.CTO_AUTO_PROCURE_PK SQL Statements
12.1.1
-
APPS.CTO_AUTO_PROCURE_PK SQL Statements
12.2.2
-
APPS.PO_R12_CAT_UPG_PVT dependencies on PO_R12_CAT_UPG_TYPES
12.1.1
-
APPS.PO_R12_CAT_UPG_PVT dependencies on PO_R12_CAT_UPG_TYPES
12.2.2
-
eTRM - EC Tables and Views
12.2.2
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
eTRM - EC Tables and Views
12.1.1
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
PACKAGE BODY: APPS.CTO_AUTO_PROCURE_PK
12.1.1
-
PACKAGE BODY: APPS.CTO_AUTO_PROCURE_PK
12.2.2
-
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. ,
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,