Search Results oe_sets
Overview
OE_SETS is a core Order Management (ONT) table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores information about line sets. A line set groups related order lines so that fulfillment operations — shipping, arrival scheduling, and lot/serial assignment — can be coordinated as a single logical unit rather than processed line by line. The table is owned by the ONT schema and is documented as VALID in the ETRM repository, where it carries a heuristic Data Vault classification of hub-leaning. From a modeling perspective, this classification suggests treating OE_SETS as a hub entity anchored by its surrogate key, with surrounding transactional context (dates, tolerances, statuses) best modeled as satellites and its relationships to order headers and lines expressed as links.
Key Information Stored
OE_SETS is documented with 23 columns in the 12.2.2 physical schema. The primary key is OE_SETS_PK, defined on SET_ID, which also underlies the unique index OE_SETS_U1. SET_ID is therefore both the surrogate key and the documented business-key candidate for uniquely identifying a set.
The most significant attributes are:
- SET_ID — Surrogate primary key identifying the line set.
- SET_NAME — User-facing name for the set.
- SET_TYPE — Classifies the set (for example, by grouping purpose).
- HEADER_ID — Foreign key to the owning order header in OE_ORDER_HEADERS_ALL.
- SHIP_FROM_ORG_ID and SHIP_TO_ORG_ID — Source and destination organizations for the set.
- SCHEDULE_SHIP_DATE and SCHEDULE_ARRIVAL_DATE — Planned ship and arrival dates driving scheduling.
- FREIGHT_CARRIER_CODE, SHIPPING_METHOD_CODE, and SHIPMENT_PRIORITY_CODE — Logistics attributes applied to the set.
- SET_STATUS — Current lifecycle status of the set.
- INVENTORY_ITEM_ID, ORDERED_QUANTITY_UOM, and LINE_TYPE_ID — Item, unit of measure, and line type context, with LINE_TYPE_ID referencing PO_LINE_TYPES_B.
- SHIP_TOLERANCE_ABOVE and SHIP_TOLERANCE_BELOW — Permitted over- and under-shipment thresholds.
Standard audit columns (CREATED_BY, CREATION_DATE, UPDATED_BY, UPDATE_DATE, UPDATE_LOGIN) and INST_ID complete the documented structure.
Common Use Cases and Queries
OE_SETS is typically queried to reconcile sets against their order lines and headers, to report on scheduling and shipping tolerances, and to support fulfillment exception reporting. A representative join retrieves all lines belonging to a set:
SELECT l.line_id, l.ordered_quantity, s.set_name, s.set_status FROM oe_order_lines_all l, oe_sets s WHERE l.line_set_id = s.set_id AND s.header_id = :header_id;SELECT s.set_id, s.set_name, s.schedule_ship_date FROM oe_sets s WHERE s.header_id = :header_id ORDER BY s.schedule_ship_date;SELECT s.set_id, COUNT(l.line_id) FROM oe_sets s, oe_order_lines_all l WHERE l.line_set_id = s.set_id GROUP BY s.set_id;
Because OE_ORDER_LINES_ALL references OE_SETS through LINE_SET_ID, SHIP_SET_ID, and ARRIVAL_SET_ID, reporting frequently pivots on those columns to distinguish shipping sets from arrival sets when analyzing delivery consolidation.
Related Objects
The documented foreign-key relationships define the principal related objects:
- OE_ORDER_HEADERS_ALL — Referenced via OE_SETS.HEADER_ID; the parent order header.
- OE_ORDER_LINES_ALL — References OE_SETS through SHIP_SET_ID, LINE_SET_ID, and ARRIVAL_SET_ID; the primary line-level consumer of set information.
- OE_LINE_SETS — References OE_SETS.SET_ID, providing the line-to-set association.
- OE_LOT_SERIAL_NUMBERS — References OE_SETS.LINE_SET_ID, linking serialized or lot-controlled units to sets.
- PO_LINE_TYPES_B — Referenced via OE_SETS.LINE_TYPE_ID; supplies line type definitions.
-
Table: OE_SETS
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_SETS, object_name:OE_SETS, status:VALID, product: ONT - Order Management , description: OE_SETS stores information on line sets. , implementation_dba_data: ONT.OE_SETS ,
-
Table: OE_SETS
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_SETS, object_name:OE_SETS, status:VALID, product: ONT - Order Management , description: OE_SETS stores information on line sets. , implementation_dba_data: ONT.OE_SETS ,
-
Table: OE_ORDER_LINES_ALL
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_LINES_ALL, object_name:OE_ORDER_LINES_ALL, status:VALID, product: ONT - Order Management , description: OE_ORDER_LINES_ALL stores information for all order lines in Oracle Order Management. , implementation_dba_data: ONT.OE_ORDER_LINES_ALL ,
-
Table: OE_ORDER_LINES_ALL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_LINES_ALL, object_name:OE_ORDER_LINES_ALL, status:VALID, product: ONT - Order Management , description: OE_ORDER_LINES_ALL stores information for all order lines in Oracle Order Management. , implementation_dba_data: ONT.OE_ORDER_LINES_ALL ,
-
View: OE_MRP_OPEN_DEMANDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MRP_OPEN_DEMANDS_V, object_name:OE_MRP_OPEN_DEMANDS_V, status:VALID, product: ONT - Order Management , description: This vew is used by MRP for their Scheduler's Workbench. , implementation_dba_data: APPS.OE_MRP_OPEN_DEMANDS_V ,
-
View: OE_MRP_OPEN_DEMANDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_MRP_OPEN_DEMANDS_V, object_name:OE_MRP_OPEN_DEMANDS_V, status:VALID, product: ONT - Order Management , description: This vew is used by MRP for their Scheduler's Workbench. , implementation_dba_data: APPS.OE_MRP_OPEN_DEMANDS_V ,
-
Table: OE_LINE_SETS
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LINE_SETS, object_name:OE_LINE_SETS, status:VALID, product: ONT - Order Management , description: This table stores information about Sets. , implementation_dba_data: ONT.OE_LINE_SETS ,
-
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_ARRIVAL_SETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ARRIVAL_SETS_V, object_name:OE_AK_ARRIVAL_SETS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ARRIVAL_SETS_V ,
-
View: OE_AK_ARRIVAL_SETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ARRIVAL_SETS_V, object_name:OE_AK_ARRIVAL_SETS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ARRIVAL_SETS_V ,
-
Table: OE_LOT_SERIAL_NUMBERS
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LOT_SERIAL_NUMBERS, object_name:OE_LOT_SERIAL_NUMBERS, status:VALID, product: ONT - Order Management , description: This table stores customer reported lot serial numbers for lot and / or serial number controlled return lines. , implementation_dba_data: ONT.OE_LOT_SERIAL_NUMBERS ,
-
View: OEFV_FULFILLMENT_SETS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_FULFILLMENT_SETS, object_name:OEFV_FULFILLMENT_SETS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_FULFILLMENT_SETS ,
-
View: OEFV_FULFILLMENT_SETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_FULFILLMENT_SETS, object_name:OEFV_FULFILLMENT_SETS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_FULFILLMENT_SETS ,
-
Table: OE_LINE_SETS
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LINE_SETS, object_name:OE_LINE_SETS, status:VALID, product: ONT - Order Management , description: This table stores information about Sets. , implementation_dba_data: ONT.OE_LINE_SETS ,
-
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 ,
-
Table: OE_LOT_SERIAL_NUMBERS
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_LOT_SERIAL_NUMBERS, object_name:OE_LOT_SERIAL_NUMBERS, status:VALID, product: ONT - Order Management , description: This table stores customer reported lot serial numbers for lot and / or serial number controlled return lines. , implementation_dba_data: ONT.OE_LOT_SERIAL_NUMBERS ,
-
Table: OE_ORDER_HEADERS_ALL
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_HEADERS_ALL, object_name:OE_ORDER_HEADERS_ALL, status:VALID, product: ONT - Order Management , description: OE_ORDER_HEADERS_ALL stores header information for orders in Order Management. , implementation_dba_data: ONT.OE_ORDER_HEADERS_ALL ,
-
Table: OE_ORDER_HEADERS_ALL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_ORDER_HEADERS_ALL, object_name:OE_ORDER_HEADERS_ALL, status:VALID, product: ONT - Order Management , description: OE_ORDER_HEADERS_ALL stores header information for orders in Order Management. , implementation_dba_data: ONT.OE_ORDER_HEADERS_ALL ,