Search Results freight_carrier_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.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_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_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_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_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 ,
-
View: OE_PO_ENTER_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PO_ENTER_RECEIPTS_V, object_name:OE_PO_ENTER_RECEIPTS_V, status:VALID, product: ONT - Order Management , description: For enter receipts to invoice. , implementation_dba_data: APPS.OE_PO_ENTER_RECEIPTS_V ,
-
View: OE_CRM_ORDER_LINES_V
12.1.1
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_PO_ENTER_RECEIPTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PO_ENTER_RECEIPTS_V, object_name:OE_PO_ENTER_RECEIPTS_V, status:VALID, product: ONT - Order Management , description: For enter receipts to invoice. , implementation_dba_data: APPS.OE_PO_ENTER_RECEIPTS_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_DELIVERY_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DELIVERY_LINES_V, object_name:OE_DELIVERY_LINES_V, status:VALID, product: ONT - Order Management , description: This view is for interfacing the lines to shipping, for departure planning. , implementation_dba_data: APPS.OE_DELIVERY_LINES_V ,
-
View: OE_DELIVERY_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_DELIVERY_LINES_V, object_name:OE_DELIVERY_LINES_V, status:VALID, product: ONT - Order Management , description: This view is for interfacing the lines to shipping, for departure planning. , implementation_dba_data: APPS.OE_DELIVERY_LINES_V ,
-
View: OE_LINE_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_LINE_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_AK_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_HEADERS_V, object_name:OE_AK_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_HEADERS_V ,
-
View: OE_AK_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_HEADERS_V, object_name:OE_AK_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_HEADERS_V ,
-
View: OEFV_ORDER_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
View: OEFV_ORDER_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
View: OE_BLANKET_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HEADERS_V, object_name:OE_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HEADERS_V ,
-
View: OE_BLANKET_HDRS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HDRS_HIST_V, object_name:OE_BLANKET_HDRS_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HDRS_HIST_V ,
-
View: OE_BLANKET_HDRS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HDRS_HIST_V, object_name:OE_BLANKET_HDRS_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HDRS_HIST_V ,
-
View: OE_BLANKET_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HEADERS_V, object_name:OE_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HEADERS_V ,
-
View: OE_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OE_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OEFV_ORDER_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_HEADERS ,
-
View: OEFV_ORDER_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_HEADERS, object_name:OEFV_ORDER_HEADERS, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OEFV_ORDER_HEADERS ,
-
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 ,
-
View: OE_HEADER_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADER_ACKS_V, object_name:OE_HEADER_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Headers. , implementation_dba_data: APPS.OE_HEADER_ACKS_V ,
-
View: OE_HEADER_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADER_ACKS_V, object_name:OE_HEADER_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Headers. , implementation_dba_data: APPS.OE_HEADER_ACKS_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
View: OE_BLKT_HEADERS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_HEADERS_HIST_V, object_name:OE_BLKT_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history headers information, and which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_HEADERS_HIST_V ,
-
View: OE_SCH_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
View: OE_BLKT_HEADERS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_HEADERS_HIST_V, object_name:OE_BLKT_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history headers information, and which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_HEADERS_HIST_V ,
-
View: OE_SCH_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_ORDER_LINES_V, object_name:OE_SCH_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_SCH_ORDER_LINES_V ,
-
View: OE_BLANKET_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
View: OE_BLANKET_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_HIST_V, object_name:OE_BLANKET_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA line history information, and it is udes in BSA version comparison UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_HIST_V ,
-
View: OE_BLANKET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_V ,
-
View: OE_BLANKET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_LINES_V, object_name:OE_BLANKET_LINES_V, status:VALID, product: ONT - Order Management , description: This view is used to get the BSA lines information, used in BSA entry UI. , implementation_dba_data: APPS.OE_BLANKET_LINES_V ,
-
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 ,
-
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_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.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 ,
-
View: OE_BLKT_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_LINES_HIST_V, object_name:OE_BLKT_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history lines information, which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_LINES_HIST_V ,
-
View: OE_BLKT_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLKT_LINES_HIST_V, object_name:OE_BLKT_LINES_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to get BSA history lines information, which is used in BSA organizer. , implementation_dba_data: APPS.OE_BLKT_LINES_HIST_V ,