Search Results shipping_method_code
Overview
OE_AK_SHIP_SETS_V is a seeded Oracle E-Business Suite database view owned by the APPS schema within the Order Management (ONT) product family. It exposes a filtered, denormalized projection of shipping set definitions maintained in the Order Management foundation. The view is defined as a restricted SELECT over OE_SETS, returning only those records where SET_TYPE equals 'SHIP_SET'. Because it is a view rather than a table, it carries no storage of its own and imposes no additional locking behavior; it is a read-only access path intended for inquiry, reporting, and integration.
The "AK" prefix in the object name follows the historical Oracle Applications convention for attribute-and-key style interface views. In practice, OE_AK_SHIP_SETS_V is used by Order Management and its dependent modules to resolve the shipping attributes—source organization, destination organization, scheduled dates, freight carrier, shipping method, and shipment priority—associated with a given shipping set identifier. This makes it a convenient, low-cost source for reports, concurrent programs, and custom extensions that need shipping set attributes without querying the broader OE_SETS table directly. The column FREIGHT_CARRIER_CODE, which is the term the user searched for, is one of the principal shipping attributes exposed by this view.
Underlying Base Objects
The ETRM metadata documents a single referenced base object: OE_SETS, accessed through a public synonym in the APPS schema. OE_SETS is the Order Management foundation table that stores set definitions for multiple set types, of which shipping sets are only one. The view applies a constant predicate, SET_TYPE = 'SHIP_SET', so every row returned represents a shipping set rather than another set category such as a pick set or a configuration set.
Because the relationship is a one-view-to-one-table projection, each row in OE_AK_SHIP_SETS_V corresponds to exactly one row in OE_SETS with the shipping set type. No joins, unions, or aggregations are present in the view text, so the view adds no cardinality change and no derived columns. Any filtering or joining that consumers require—for example, to order headers, delivery lines, or carrier master data—must be supplied in the consuming query.
Key Columns
- SET_ID — Primary identifier of the shipping set. This is the key used to correlate the view with order, delivery, and set-related records elsewhere in Order Management.
- SHIP_FROM_ORG_ID — Organization identifier for the shipping warehouse or source organization from which goods are dispatched.
- SHIP_TO_ORG_ID — Organization identifier for the receiving or destination location.
- SCHEDULE_SHIP_DATE — Planned ship date for the set.
- SCHEDULE_ARRIVAL_DATE — Planned arrival date at the destination.
- FREIGHT_CARRIER_CODE — Code of the freight carrier assigned to the shipping set. This is the attribute most frequently searched in this context and is typically resolved against carrier master data to obtain carrier name and service details.
- SHIPPING_METHOD_CODE — Code identifying the shipping method (for example, the mode or service level) associated with the set.
- SHIPMENT_PRIORITY_CODE — Code indicating the handling priority assigned to the shipment.
Common Use Cases and Queries
Typical use cases include shipping set inquiry screens, freight carrier assignment audits, carrier utilization reporting, and interfaces that export scheduled ship and arrival dates to planning or transportation systems. The view is also useful for validating that shipping sets carry complete carrier and method assignments before release to shipping.
The following query lists shipping sets by freight carrier:
SELECT set_id, ship_from_org_id, ship_to_org_id, freight_carrier_code, shipping_method_code, shipment_priority_code, schedule_ship_date FROM oe_ak_ship_sets_v WHERE freight_carrier_code = :p_carrier ORDER BY schedule_ship_date;SELECT freight_carrier_code, COUNT(*) FROM oe_ak_ship_sets_v GROUP BY freight_carrier_code;
Consumers should note that the view exposes only shipping set columns and no descriptive carrier or organization names; those must be obtained through additional lookups in the consuming query.
-
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 ,
-
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 ,
-
View: OE_SOLD_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SOLD_TO_ORGS_V, object_name:OE_SOLD_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: List of customers. , implementation_dba_data: APPS.OE_SOLD_TO_ORGS_V ,
-
View: OE_SOLD_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SOLD_TO_ORGS_V, object_name:OE_SOLD_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: List of customers. , implementation_dba_data: APPS.OE_SOLD_TO_ORGS_V ,
-
View: OE_AK_SHIPPING_METHOD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIPPING_METHOD_V, object_name:OE_AK_SHIPPING_METHOD_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIPPING_METHOD_V ,
-
View: OE_AK_SHIPPING_METHOD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIPPING_METHOD_V, object_name:OE_AK_SHIPPING_METHOD_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIPPING_METHOD_V ,
-
View: OE_AK_INVOICE_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVOICE_TO_ORGS_V, object_name:OE_AK_INVOICE_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_INVOICE_TO_ORGS_V ,
-
View: OE_CRM_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
View: OE_SHIP_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SHIP_TO_ORGS_V, object_name:OE_SHIP_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: Ship To Organizations. , implementation_dba_data: APPS.OE_SHIP_TO_ORGS_V ,
-
View: OE_CRM_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
View: OE_AK_INVOICE_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_INVOICE_TO_ORGS_V, object_name:OE_AK_INVOICE_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_INVOICE_TO_ORGS_V ,
-
View: OE_DELIVER_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DELIVER_TO_ORGS_V, object_name:OE_DELIVER_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: This view is used to get and validate the delivery to organizations. , implementation_dba_data: APPS.OE_DELIVER_TO_ORGS_V ,
-
View: OE_DELIVER_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DELIVER_TO_ORGS_V, object_name:OE_DELIVER_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: This view is used to get and validate the delivery to organizations. , implementation_dba_data: APPS.OE_DELIVER_TO_ORGS_V ,
-
View: OE_SHIP_TO_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SHIP_TO_ADDRESSES_V, object_name:OE_SHIP_TO_ADDRESSES_V, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_SHIP_TO_ADDRESSES_V ,
-
View: OE_AK_LINE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_LINE_TYPES_V, object_name:OE_AK_LINE_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_LINE_TYPES_V ,
-
View: OE_AK_SOLD_TO_SITE_USES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_SITE_USES_V, object_name:OE_AK_SOLD_TO_SITE_USES_V, status:VALID, product: ONT - Order Management , description: Selects defaultable attributes from customer location; , implementation_dba_data: APPS.OE_AK_SOLD_TO_SITE_USES_V ,
-
View: OE_AK_LINE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_LINE_TYPES_V, object_name:OE_AK_LINE_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_LINE_TYPES_V ,
-
View: OE_INVOICE_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_INVOICE_TO_ORGS_V, object_name:OE_INVOICE_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: Bill to organization , implementation_dba_data: APPS.OE_INVOICE_TO_ORGS_V ,
-
View: OE_INVOICE_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_INVOICE_TO_ORGS_V, object_name:OE_INVOICE_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: Bill to organization , implementation_dba_data: APPS.OE_INVOICE_TO_ORGS_V ,
-
View: OE_SHIP_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SHIP_TO_ORGS_V, object_name:OE_SHIP_TO_ORGS_V, status:VALID, product: ONT - Order Management , description: Ship To Organizations. , implementation_dba_data: APPS.OE_SHIP_TO_ORGS_V ,
-
View: OE_AK_DELIVER_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_DELIVER_TO_ORGS_V, object_name:OE_AK_DELIVER_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_DELIVER_TO_ORGS_V ,
-
View: OE_AK_SOLD_TO_SITE_USES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_SITE_USES_V, object_name:OE_AK_SOLD_TO_SITE_USES_V, status:VALID, product: ONT - Order Management , description: Selects defaultable attributes from customer location; , implementation_dba_data: APPS.OE_AK_SOLD_TO_SITE_USES_V ,
-
View: OE_AK_DELIVER_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_DELIVER_TO_ORGS_V, object_name:OE_AK_DELIVER_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_DELIVER_TO_ORGS_V ,
-
View: OE_SHIP_TO_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SHIP_TO_ADDRESSES_V, object_name:OE_SHIP_TO_ADDRESSES_V, status:VALID, product: ONT - Order Management , description: No longer used , implementation_dba_data: APPS.OE_SHIP_TO_ADDRESSES_V ,
-
View: OE_AK_ORDER_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_TYPES_V, object_name:OE_AK_ORDER_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_TYPES_V ,
-
View: OE_AK_ORDER_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_TYPES_V, object_name:OE_AK_ORDER_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_TYPES_V ,
-
View: OE_AK_SOLD_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_ORGS_V, object_name:OE_AK_SOLD_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SOLD_TO_ORGS_V ,
-
View: OE_AK_SHIP_TO_ORGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIP_TO_ORGS_V, object_name:OE_AK_SHIP_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIP_TO_ORGS_V ,
-
View: OE_AK_SHIP_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SHIP_TO_ORGS_V, object_name:OE_AK_SHIP_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SHIP_TO_ORGS_V ,
-
View: OE_AK_SOLD_TO_ORGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_SOLD_TO_ORGS_V, object_name:OE_AK_SOLD_TO_ORGS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_SOLD_TO_ORGS_V ,
-
View: OE_AK_BLANKET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_BLANKET_LINES_V, object_name:OE_AK_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_BLANKET_LINES_V ,
-
View: OE_LINE_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_TYPES_V, object_name:OE_LINE_TYPES_V, status:VALID, product: ONT - Order Management , description: This is a view to show line transaction types types for a specific organization and language. , implementation_dba_data: APPS.OE_LINE_TYPES_V ,
-
View: OE_LINE_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_TYPES_V, object_name:OE_LINE_TYPES_V, status:VALID, product: ONT - Order Management , description: This is a view to show line transaction types types for a specific organization and language. , implementation_dba_data: APPS.OE_LINE_TYPES_V ,
-
View: OE_TRXT_TYPES_NOORGS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRXT_TYPES_NOORGS_VL, object_name:OE_TRXT_TYPES_NOORGS_VL, status:VALID, product: ONT - Order Management , description: Org independent VL view for Shipping integration team to get the Order Type name. , implementation_dba_data: APPS.OE_TRXT_TYPES_NOORGS_VL ,
-
View: OE_PRN_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_PRN_ORDER_HEADERS_V ,
-
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_AK_BLANKET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_BLANKET_LINES_V, object_name:OE_AK_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_BLANKET_LINES_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 ,
-
View: OE_PRN_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRN_ORDER_HEADERS_V, object_name:OE_PRN_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_PRN_ORDER_HEADERS_V ,
-
View: OE_TRANSACTION_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_VL, object_name:OE_TRANSACTION_TYPES_VL, status:VALID, product: ONT - Order Management , description: MLS transaction types view for an organization. , implementation_dba_data: APPS.OE_TRANSACTION_TYPES_VL ,
-
View: OE_ORDER_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_TYPES_V, object_name:OE_ORDER_TYPES_V, status:VALID, product: ONT - Order Management , description: This is a view to show order transaction types for a specific organization and language. , implementation_dba_data: APPS.OE_ORDER_TYPES_V ,
-
View: OE_TRANSACTION_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_V, object_name:OE_TRANSACTION_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_TRANSACTION_TYPES_V ,
-
View: OE_TRANSACTION_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_VL, object_name:OE_TRANSACTION_TYPES_VL, status:VALID, product: ONT - Order Management , description: MLS transaction types view for an organization. , implementation_dba_data: APPS.OE_TRANSACTION_TYPES_VL ,
-
View: OE_ORDER_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_TYPES_V, object_name:OE_ORDER_TYPES_V, status:VALID, product: ONT - Order Management , description: This is a view to show order transaction types for a specific organization and language. , implementation_dba_data: APPS.OE_ORDER_TYPES_V ,
-
View: OE_CRM_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_LINES_V, object_name:OE_CRM_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_lines_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_LINES_V ,
-
View: OE_TRXT_TYPES_NOORGS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRXT_TYPES_NOORGS_VL, object_name:OE_TRXT_TYPES_NOORGS_VL, status:VALID, product: ONT - Order Management , description: Org independent VL view for Shipping integration team to get the Order Type name. , implementation_dba_data: APPS.OE_TRXT_TYPES_NOORGS_VL ,
-
View: OE_TRANSACTION_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TRANSACTION_TYPES_V, object_name:OE_TRANSACTION_TYPES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_TRANSACTION_TYPES_V ,
-
View: OE_AK_BLANKET_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_BLANKET_HEADERS_V, object_name:OE_AK_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_BLANKET_HEADERS_V ,