Search Results ship_partial_flag
Overview
OKX_QTE_SHIPMENTS_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite. It belongs to the OKX – Contracts Integration product family, which provides the integration layer between Oracle Quoting (ASO) and downstream order fulfillment flows in Oracle Order Management. The view exposes shipment-level scheduling and fulfillment detail associated with quote lines, allowing quote headers and quote lines to be linked to the shipment records generated against them.
Because the object is a view rather than a table, no data is stored within it. Instead, it presents a horizontally projected, denormalized result set derived from the underlying Oracle Quoting shipment entity. Its purpose is to give reporting tools, concurrent programs, and integration interfaces a stable, APPS-owned access point to shipment information without requiring direct reads from the Oracle Quoting base schema. In EBS 12.1.1 and 12.2.2 the object retains a VALID status, and the documented metadata confirms it is defined over the ASO_SHIPMENTS base object exposed through a synonym.
Underlying Base Objects
The documented reference for this view is the base object ASO_SHIPMENTS, accessed through a synonym. ASO_SHIPMENTS is the Oracle Quoting shipment entity that stores shipment scheduling information for quote lines, including promise dates, ship-to parties, shipping and packing instructions, carrier and freight attributes, and reserved quantities. OKX_QTE_SHIPMENTS_V is a simple projection over that entity: the view text selects a defined list of columns directly FROM ASO_SHIPMENTS with no joins, unions, or aggregation.
As a consequence, each row in the view corresponds one-to-one with a row in ASO_SHIPMENTS. Row counts and cardinality therefore match the underlying shipment records. Any update, deletion, or insertion performed on the base shipment entity is immediately reflected when the view is queried. The view remains a dependent object of ASO_SHIPMENTS, so the underlying table must exist and be valid for the view to compile and return data.
Key Columns
- SHIPMENT_ID – Primary identifier of the shipment record; unique per shipment row.
- QUOTE_HEADER_ID / QUOTE_LINE_ID – Foreign keys linking the shipment to the quote header and quote line it fulfills, enabling the OKX integration to reconcile quote and shipment data.
- PROMISE_DATE, REQUEST_DATE, SCHEDULE_SHIP_DATE – Key scheduling dates describing the customer promise, the requested date, and the planned ship date.
- SHIP_TO_PARTY_ID / SHIP_TO_PARTY_SITE_ID / SHIP_TO_CUST_ACCOUNT_ID – Party, site, and customer account identifiers for the receiving location.
- SHIP_METHOD_CODE, FREIGHT_TERMS_CODE, FREIGHT_CARRIER_CODE, FOB_CODE – Fulfillment and freight attributes controlling how the shipment is transported and billed.
- SHIPPING_INSTRUCTIONS / PACKING_INSTRUCTIONS – Free-text handling directions carried from the quote to the shipment.
- QUANTITY / RESERVED_QUANTITY / RESERVATION_ID – Shipped quantity, reserved quantity, and the associated reservation reference.
- ORDER_LINE_ID – Reference to the order line created when the quote converts to an order.
- SHIP_SET_ID / SHIP_PARTIAL_FLAG / SHIPMENT_PRIORITY_CODE – Grouping, partial-shipment, and priority indicators.
- SHIP_QUOTE_PRICE – Price carried on the shipment for the quoted item.
- OBJECT_VERSION_NUMBER – Optimistic locking column for concurrent update control.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 – Flexfield descriptive columns available for customer-specific extension.
- Audit columns – CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE for who/when/program traceability.
Common Use Cases and Queries
The view is typically used to report on shipment scheduling attached to quotes, to feed integration programs that pass shipment detail downstream, and to reconcile quote lines with their resultant order lines. A common pattern joins the view back to the quote header and line entities using QUOTE_HEADER_ID and QUOTE_LINE_ID.
Example: retrieve scheduled shipments for a given quote line.
SELECT s.shipment_id, s.quote_line_id, s.promise_date, s.schedule_ship_date, s.quantity, s.reserved_quantity, s.ship_method_code, s.freight_carrier_code FROM apps.okx_qte_shipments_v s WHERE s.quote_line_id = :p_quote_line_id ORDER BY s.schedule_ship_date;
Example: list all open scheduled shipments with ship-to detail for a date range.
SELECT s.shipment_id, s.quote_header_id, s.ship_to_party_id, s.ship_to_party_site_id, s.ship_to_cust_account_id, s.freight_terms_code, s.fob_code FROM apps.okx_qte_shipments_v s WHERE s.schedule_ship_date BETWEEN :p_from_date AND :p_to_date;
Because the view performs no transformation, ad hoc queries can rely on the underlying column semantics matching Oracle Quoting documentation. Developers should avoid DML against the view and instead direct inserts and updates to the Oracle Quoting shipment APIs or the base entity, treating OKX_QTE_SHIPMENTS_V strictly as a query and reporting surface.
-
View: OKX_QTE_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QTE_SHIPMENTS_V, object_name:OKX_QTE_SHIPMENTS_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_QTE_SHIPMENTS_V ,
-
VIEW: ASO.ASO_SHIPMENTS#
12.2.2
-
VIEW: APPS.ASO_OA_SHIPMENTS_LINE_V
12.2.2
-
VIEW: APPS.ASO_OA_SHIPMENTS_HDR_V
12.1.1
-
VIEW: APPS.OKX_QTE_SHIPMENTS_V
12.1.1
-
VIEW: APPS.OKX_QTE_SHIPMENTS_V
12.2.2
-
View: OKX_QTE_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QTE_SHIPMENTS_V, object_name:OKX_QTE_SHIPMENTS_V, status:VALID, product: OKX - Contracts Integration , implementation_dba_data: APPS.OKX_QTE_SHIPMENTS_V ,
-
VIEW: APPS.ASO_OA_SHIPMENTS_HDR_V
12.2.2
-
VIEW: APPS.ASO_OA_SHIPMENTS_LINE_V
12.1.1
-
View: IBE_ORDER_SHIPMENTS_V
12.2.2
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ASO_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_SHIPMENTS_V, object_name:ASO_SHIPMENTS_V, status:VALID,
-
VIEW: APPS.ASO_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_SHIPMENTS_V, object_name:ASO_SHIPMENTS_V, status:VALID,
-
VIEW: APPS.OKX_QTE_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QTE_SHIPMENTS_V, object_name:OKX_QTE_SHIPMENTS_V, status:VALID,
-
VIEW: APPS.OKX_QTE_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_QTE_SHIPMENTS_V, object_name:OKX_QTE_SHIPMENTS_V, status:VALID,
-
VIEW: APPS.ASO_OA_SHIPMENTS_LINE_V
12.2.2
owner:APPS, object_type:VIEW, object_name:ASO_OA_SHIPMENTS_LINE_V, status:VALID,
-
VIEW: ASO.ASO_SHIPMENTS#
12.2.2
owner:ASO, object_type:VIEW, object_name:ASO_SHIPMENTS#, status:VALID,
-
VIEW: OE.SO_HEADERS_ALL#
12.2.2
-
View: SO_HEADERS_OEXORRSO_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_HEADERS, object_name:SO_HEADERS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_HEADERS ,
-
VIEW: APPS.ASO_OA_SHIPMENTS_HDR_V
12.2.2
owner:APPS, object_type:VIEW, object_name:ASO_OA_SHIPMENTS_HDR_V, status:VALID,
-
VIEW: APPS.SO_HEADERS
12.1.1
-
View: IBE_ORDER_SHIPMENTS_V
12.1.1
product: IBE - iStore , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.ASO_OA_SHIPMENTS_HDR_V
12.1.1
owner:APPS, object_type:VIEW, object_name:ASO_OA_SHIPMENTS_HDR_V, status:VALID,
-
VIEW: APPS.ASO_OA_SHIPMENTS_LINE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:ASO_OA_SHIPMENTS_LINE_V, status:VALID,
-
View: SO_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_HEADERS, object_name:SO_HEADERS, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_HEADERS ,
-
TABLE: ASO.ASO_SHIPMENTS
12.1.1
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_SHIPMENTS, object_name:ASO_SHIPMENTS, status:VALID,
-
TABLE: ASO.ASO_SHIPMENTS
12.2.2
owner:ASO, object_type:TABLE, fnd_design_data:ASO.ASO_SHIPMENTS, object_name:ASO_SHIPMENTS, status:VALID,
-
View: SO_HEADERS_OEXORRSO_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.SO_HEADERS
12.2.2
-
View: ECE_DSNO_ORDERS_V
12.1.1
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: ECE_DSNO_ORDERS_V
12.2.2
product: EC - e-Commerce Gateway , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
VIEW: OE.SO_HEADERS_ALL#
12.2.2
owner:OE, object_type:VIEW, object_name:SO_HEADERS_ALL#, status:VALID,
-
View: ASO_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_SHIPMENTS_V, object_name:ASO_SHIPMENTS_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_SHIPMENTS_V ,
-
View: ASO_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_SHIPMENTS_V, object_name:ASO_SHIPMENTS_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_SHIPMENTS_V ,
-
VIEW: APPS.ASO_PVT_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_SHIPMENTS_V, object_name:ASO_PVT_SHIPMENTS_V, status:VALID,
-
VIEW: APPS.ASO_PVT_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_SHIPMENTS_V, object_name:ASO_PVT_SHIPMENTS_V, status:VALID,
-
View: XNC_QUOTE_SHIPMENTS_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_SHIPMENTS_V retrieves full quote shipment details. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_QUOTE_SHIPMENTS_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_SHIPMENTS_V retrieves full quote shipment details. , implementation_dba_data: Not implemented in this database ,
-
APPS.ASO_SHIPMENTS_PKG SQL Statements
12.1.1
-
View: ASO_PVT_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_SHIPMENTS_V, object_name:ASO_PVT_SHIPMENTS_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_SHIPMENTS_V ,
-
View: ASO_PVT_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_PVT_SHIPMENTS_V, object_name:ASO_PVT_SHIPMENTS_V, status:VALID, product: ASO - Order Capture , implementation_dba_data: APPS.ASO_PVT_SHIPMENTS_V ,
-
TYPE: APPS.ASO_QUOTE_PUB_SHIPMENT_REC_TY
12.2.2
owner:APPS, object_type:TYPE, object_name:ASO_QUOTE_PUB_SHIPMENT_REC_TY, status:VALID,
-
VIEW: APPS.SO_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_HEADERS, object_name:SO_HEADERS, status:VALID,
-
VIEW: APPS.SO_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_HEADERS, object_name:SO_HEADERS, status:VALID,
-
View: ICX_SO_HEADERS_V
12.1.1
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
APPS.ASO_SHIPMENTS_PKG SQL Statements
12.2.2
-
View: SO_HEADERS_CANCEL_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: ICX_SO_HEADERS_V
12.2.2
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS_CANCEL_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: AS_DOSSIER_HEADERS_DETAIL_V
12.1.1
product: AS - Sales Foundation , description: Order history header details view , implementation_dba_data: Not implemented in this database ,