Search Results ship_set
Overview
The view APPS.OE_AK_SHIP_SETS_V is a filtered projection of the Oracle Order Management shipping set repository. It exposes a single subset of the records stored in OE_SETS — specifically those rows where SET_TYPE = 'SHIP_SET'. In Oracle EBS, a shipping set is a named grouping of order lines that must be shipped together from the same warehouse, to the same destination, on the same scheduled dates, and via the same carrier and shipping method. Collectively these attributes define an "arrival set" or "ship set" constraint that the shipping and scheduling engine enforces during pick release and ship confirmation.
Because the underlying table OE_SETS serves multiple set types (for example, ship sets and arrival sets), the view functions primarily as a convenience and security layer: it spares report developers and integration interfaces from repeatedly coding the SET_TYPE predicate and it presents a stable, human-readable column list that maps directly to the business concept of a ship set. It is therefore widely referenced in Order Management and Shipping Execution reporting, in custom concurrent programs, and in inbound or outbound interfaces that must resolve the set identifier associated with a group of lines. The view is owned by APPS and is normally granted to responsibility-level users through the standard EBS synonym and grant model.
Underlying Base Objects
The documented base object is OE_SETS, accessed through a synonym in the APPS schema. OE_SETS stores the header-level definition of all order sets. Each record is identified by SET_ID and qualified by SET_TYPE. The view applies the constant filter WHERE SET_TYPE = 'SHIP_SET', so every row returned by OE_AK_SHIP_SETS_V represents a ship set definition and no arrival-only or other set type will appear.
Note that the view is a read-only projection. It contains no joins, aggregations, or lookups to OE_ORDER_HEADERS_ALL, OE_ORDER_LINES_ALL, or the shipping tables; the association between a ship set and its member lines is held separately in the line-level set columns. Consequently, the view should be treated as a dimension of ship set headers rather than as a complete picture of set membership.
Key Columns
- SET_ID — Primary identifier of the ship set. This value is the foreign key referenced by order lines that belong to the set.
- SHIP_FROM_ORG_ID — Inventory organization from which all lines in the set must ship.
- SHIP_TO_ORG_ID — Destination organization or party site for the set.
- SCHEDULE_SHIP_DATE — Date on which the set is scheduled to leave the warehouse; all member lines share this date.
- SCHEDULE_ARRIVAL_DATE — Date on which the set is scheduled to arrive at the destination.
- FREIGHT_CARRIER_CODE — Carrier assigned to the set.
- SHIPPING_METHOD_CODE — Shipping method or service level applied to the set.
- SHIPMENT_PRIORITY_CODE — Priority used by the shipping engine when sequencing the set.
Because the view inherits these columns directly from OE_SETS, code values follow the same validation and lookup conventions (FND_LOOKUPS, ORG_FREIGHT, and inventory organization definitions) applied elsewhere in Order Management.
Common Use Cases and Queries
Typical uses include validating set consistency before pick release, reporting on scheduled ship and arrival dates by carrier or destination, and supplying set identifiers to integration processes that create or update order lines. The following query lists ship sets by scheduled ship date and shipping method.
SELECT set_id, ship_from_org_id, ship_to_org_id, schedule_ship_date, freight_carrier_code FROM oe_ak_ship_sets_v WHERE schedule_ship_date >= TRUNC(SYSDATE) ORDER BY schedule_ship_date;SELECT set_id, shipping_method_code, shipment_priority_code FROM oe_ak_ship_sets_v WHERE ship_from_org_id = :org_id;SELECT COUNT(*) FROM oe_ak_ship_sets_v WHERE schedule_arrival_date BETWEEN :from_date AND :to_date;
When joining to order lines, the analyst must use the line-level set column or the shipping set assignment table; the view alone does not expose membership. All queries should be run with the standard EBS APPS initialization or via a secured synonym granted to the reporting schema.
-
VIEW: APPS.OE_AK_SHIP_SETS_V
12.2.2
-
VIEW: APPS.OE_AK_SHIP_SETS_V
12.1.1
-
VIEW: APPS.WMS_PACKING_MATERIAL_V
12.1.1
-
VIEW: APPS.MST_SHIP_SET_VIOLATION_V
12.1.1
owner:APPS, object_type:VIEW, object_name:MST_SHIP_SET_VIOLATION_V, status:VALID,
-
VIEW: APPS.WMS_WP_LINES_GTMP_V
12.2.2
-
VIEW: APPS.WMS_PACKING_MATERIAL_V
12.2.2
-
View: OE_AK_SHIP_SETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIP_SETS_V, object_name:OE_AK_SHIP_SETS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIP_SETS_V ,
-
View: OE_AK_SHIP_SETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIP_SETS_V, object_name:OE_AK_SHIP_SETS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIP_SETS_V ,
-
APPS.OE_LINE_UTIL_EXT SQL Statements
12.2.2
-
TABLE: WMS.WMS_PACKING_MATERIAL_GTEMP
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_PACKING_MATERIAL_GTEMP, object_name:WMS_PACKING_MATERIAL_GTEMP, status:VALID,
-
TABLE: WMS.WMS_PACKING_MATERIAL_GTEMP
12.1.1
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_PACKING_MATERIAL_GTEMP, object_name:WMS_PACKING_MATERIAL_GTEMP, status:VALID,
-
View: WMS_PACKING_MATERIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PACKING_MATERIAL_V, object_name:WMS_PACKING_MATERIAL_V, status:VALID, product: WMS - Warehouse Management , description: View to be used for Packing Workbench eligible material spreadtable , implementation_dba_data: APPS.WMS_PACKING_MATERIAL_V ,
-
View: WMS_WP_LINES_GTMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WP_LINES_GTMP_V, object_name:WMS_WP_LINES_GTMP_V, status:VALID, product: WMS - Warehouse Management , implementation_dba_data: APPS.WMS_WP_LINES_GTMP_V ,
-
VIEW: APPS.WMS_WP_LINES_GTMP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_WP_LINES_GTMP_V, object_name:WMS_WP_LINES_GTMP_V, status:VALID,
-
View: WMS_PACKING_MATERIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PACKING_MATERIAL_V, object_name:WMS_PACKING_MATERIAL_V, status:VALID, product: WMS - Warehouse Management , description: View to be used for Packing Workbench eligible material spreadtable , implementation_dba_data: APPS.WMS_PACKING_MATERIAL_V ,
-
TABLE: WMS.WMS_WP_LINES_GTMP
12.2.2
owner:WMS, object_type:TABLE, fnd_design_data:WMS.WMS_WP_LINES_GTMP, object_name:WMS_WP_LINES_GTMP, status:VALID,
-
VIEW: APPS.WMS_PACKING_MATERIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PACKING_MATERIAL_V, object_name:WMS_PACKING_MATERIAL_V, status:VALID,
-
APPS.OE_GENESIS_UTIL SQL Statements
12.2.2
-
VIEW: APPS.WMS_PACKING_MATERIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WMS.WMS_PACKING_MATERIAL_V, object_name:WMS_PACKING_MATERIAL_V, status:VALID,
-
APPS.OE_SET_UTIL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OE_SET_UTIL
12.1.1
-
PACKAGE BODY: APPS.OE_SET_UTIL
12.2.2
-
APPS.OE_SET_UTIL SQL Statements
12.1.1
-
View: OE_AK_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
View: OE_AK_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
PACKAGE: APPS.CSP_PART_SEARCH_PVT
12.2.2
-
VIEW: APPS.OE_AK_ORDER_LINES_V
12.1.1
-
PACKAGE: APPS.OE_SCH_ORGANIZER_UTIL
12.2.2
-
PACKAGE: APPS.OE_SCH_ORGANIZER_UTIL
12.1.1
-
VIEW: APPS.OE_AK_ORDER_LINES_V
12.2.2
-
PACKAGE BODY: APPS.CSP_PART_SEARCH_PVT
12.2.2
-
View: OE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
APPS.WSH_PICKING_BATCHES_GRP SQL Statements
12.1.1
-
PACKAGE: APPS.OE_ATP
12.2.2
-
PACKAGE: APPS.OE_ATP
12.1.1
-
View: OE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: View for Order Lines used in the Sales Order form. , implementation_dba_data: APPS.OE_ORDER_LINES_V ,
-
View: OE_ORDER_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,
-
View: OE_ORDER_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_HIST_V ,
-
PACKAGE BODY: APPS.OE_SCH_ORGANIZER_UTIL
12.1.1
-
PACKAGE BODY: APPS.OE_SCH_ORGANIZER_UTIL
12.2.2
-
APPS.WSH_PICKING_BATCHES_GRP SQL Statements
12.2.2
-
VIEW: APPS.OE_ORDER_LINES_V
12.1.1
-
VIEW: APPS.OE_ORDER_LINES_HIST_V
12.2.2
-
VIEW: APPS.OE_ORDER_LINES_V
12.2.2
-
VIEW: APPS.OE_ORDER_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID,
-
VIEW: APPS.OE_ORDER_LINES_HIST_V
12.1.1
-
VIEW: APPS.OE_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID,
-
TYPE: SYSTEM.ASO_LINE_TYPE
12.1.1
owner:SYSTEM, object_type:TYPE, object_name:ASO_LINE_TYPE, status:VALID,
-
VIEW: APPS.OE_ORDER_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_HIST_V, object_name:OE_ORDER_LINES_HIST_V, status:VALID,
-
VIEW: APPS.OE_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_V, object_name:OE_ORDER_LINES_V, status:VALID,