Search Results ece_poco_shipments_v
Overview
ECE_POCO_SHIPMENTS_V is a private APPS-owned database view in the Oracle E-Business Suite e-Commerce Gateway (EC) module. Its documented purpose is to extract shipment-level information for the outbound Purchase Order Change (860/ORDCHG) transaction, and its display name within the ETRM repository is "Purchase Order Change Shipment View." The object is registered with lifecycle status "active," scope "private," and product affiliation to PO, indicating that although it physically resides in the APPS schema alongside other e-Commerce Gateway extraction views, it is functionally tied to Oracle Purchasing and is not intended as a public, general-purpose interface.
For users researching shipment_need_by_date, this view is directly relevant. The view's defining SELECT maps POLL.NEED_BY_DATE to the output alias SHIPMENT_NEED_BY_DATE. It is the alias — not the base column name — that appears in the outbound 860/ORDCHG shipment segment, so any investigation of a need-by date discrepancy on a purchase order change extract should begin here. The view is status VALID in the documented 12.2.2 environment, and the same definition is applicable across 12.1.1, since the underlying PO_LINE_LOCATIONS structure was not rearchitected between these releases.
Underlying Base Objects
The documented base objects are PO_LINE_LOCATIONS (synonym), HR_LOCATIONS_ALL and HR_LOCATIONS_ALL_TL (synonyms), HR_ALL_ORGANIZATION_UNITS, HR_GENERAL (package), the HZ party and location synonyms (HZ_PARTIES, HZ_LOCATIONS, HZ_CUST_ACCOUNT_ROLES, HZ_CUST_ACCT_SITES_ALL, HZ_CUST_SITE_USES_ALL, HZ_ORG_CONTACTS, HZ_RELATIONSHIPS), PER_ALL_PEOPLE_F, PER_ALL_ASSIGNMENTS_F, OE_ORDER_HEADERS_ALL, and OE_DROP_SHIP_SOURCES.
PO_LINE_LOCATIONS is the driving table and the source of all shipment scheduling data, including NEED_BY_DATE, PROMISED_DATE, LAST_ACCEPT_DATE, QUANTITY, QUANTITY_CANCELLED, QUANTITY_RECEIVED, PRICE_OVERRIDE, and the fifteen shipment-level DFF attributes. HR_LOCATIONS_ALL and HR_LOCATIONS_ALL_TL supply the ship-to address and location code, while HR_ALL_ORGANIZATION_UNITS and HR_GENERAL support organizational resolution. The HZ objects resolve ship-to contact names through party relationships; PER_ALL_PEOPLE_F and PER_ALL_ASSIGNMENTS_F provide person and assignment context. OE_ORDER_HEADERS_ALL and OE_DROP_SHIP_SOURCES allow the view to recognize drop-shipment sourcing relationships where the purchasing shipment is fulfilled directly by a supplier against a sales order.
Key Columns
- SHIPMENT_NUMBER — from POLL.SHIPMENT_NUM; identifies the shipment line within the PO.
- SHIPMENT_NEED_BY_DATE — from POLL.NEED_BY_DATE; the date the buyer requires delivery of the shipment.
- SHIPMENT_PROMISED_DATE — from POLL.PROMISED_DATE; the supplier-committed delivery date.
- SHIPMENT_LAST_ACCEPTABLE_DATE — from POLL.LAST_ACCEPT_DATE; the latest date the buyer will accept receipt.
- QUANTITY_ORIGINAL, QUANTITY_CANCELLED, QUANTITY_RECEIVED — shipment quantities. UOM_CODE and QUANTITY_PENDING are deliberately returned as NULL, as the view text explicitly selects TO_NUMBER(NULL) for both.
- PRICE_OVERRIDE, CANCELLED_FLAG, CANCELLED_DATE — change-relevant pricing and cancellation indicators.
- SHIP_VIA, FOB_CODE, FREIGHT_TERMS, TAXABLE_FLAG — shipping and tax attributes derived from lookup codes.
- SHIP_TO_LOCATION_ID, SHIP_TO_LOCATION_CODE, SHIP_TO_ADDRESS_LINE_1..3, SHIP_TO_CITY, SHIP_TO_POSTAL_CODE, SHIP_TO_COUNTRY, SHIP_TO_COUNTRY and region columns, plus SHIP_TO_CONTACT_FIRST_NAME and SHIP_TO_CONTACT_LAST_NAME.
- SHIPMENT_ATTRIBUTE_CATEGORY and SHIPMENT_ATTRIBUTE1 through SHIPMENT_ATTRIBUTE15 — the shipment-level descriptive flexfield columns.
Common Use Cases and Queries
Typical uses include diagnosing 860/ORDCHG extract content, reconciling need-by dates reported to trading partners against Purchasing, and building validation queries for e-Commerce Gateway interface troubleshooting.
To inspect need-by dates for a purchase order's shipments:
SELECT shipment_number, shipment_need_by_date, shipment_promised_date, quantity_original, cancelled_flag FROM apps.ece_poco_shipments_v WHERE shipment_need_by_date >= :from_date ORDER BY shipment_need_by_date;
To locate shipments with a missing need-by date before an outbound run:
SELECT shipment_number, shipment_need_by_date, ship_to_location_code FROM apps.ece_poco_shipments_v WHERE shipment_need_by_date IS NULL;
To compare need-by against promised dates for supplier performance analysis:
SELECT shipment_number, shipment_need_by_date, shipment_promised_date, shipment_promised_date - shipment_need_by_date date_variance FROM apps.ece_poco_shipments_v WHERE shipment_promised_date IS NOT NULL;
Because the view is private and specifically shaped for the 860 outbound transaction, it should be queried read-only and not modified. Custom reporting should preferably join PO_LINE_LOCATIONS directly when full flexibility is required.
-
View: ECE_POCO_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_SHIPMENTS_V, object_name:ECE_POCO_SHIPMENTS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts shipment informationfor the outbound Purchase Order Change (860/ORDCHG) transaction.@rep:scope private@rep:product PO@rep:lifecycle active@rep:displayname Purchase Order Change Shipment View@rep:category BUSINESS_ENTITY P , implementation_dba_data: APPS.ECE_POCO_SHIPMENTS_V ,
-
View: ECE_POCO_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_SHIPMENTS_V, object_name:ECE_POCO_SHIPMENTS_V, status:VALID, product: EC - e-Commerce Gateway , description: This view extracts shipment informationfor the outbound Purchase Order Change (860/ORDCHG) transaction.@rep:scope private@rep:product PO@rep:lifecycle active@rep:displayname Purchase Order Change Shipment View@rep:category BUSINESS_ENTITY P , implementation_dba_data: APPS.ECE_POCO_SHIPMENTS_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.OE_DROP_SHIP_SOURCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_DROP_SHIP_SOURCES, status:VALID,
-
SYNONYM: APPS.OE_DROP_SHIP_SOURCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_DROP_SHIP_SOURCES, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL_TL, status:VALID,
-
VIEW: APPS.ECE_POCO_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_SHIPMENTS_V, object_name:ECE_POCO_SHIPMENTS_V, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL_TL, status:VALID,
-
VIEW: APPS.ECE_POCO_SHIPMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_POCO_SHIPMENTS_V, object_name:ECE_POCO_SHIPMENTS_V, status:VALID,
-
SYNONYM: APPS.HZ_ORG_CONTACTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_ORG_CONTACTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNT_ROLES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNT_ROLES, status:VALID,
-
SYNONYM: APPS.HZ_ORG_CONTACTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_ORG_CONTACTS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNT_ROLES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNT_ROLES, status:VALID,
-
SYNONYM: APPS.PO_LINE_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_LOCATIONS, status:VALID,
-
SYNONYM: APPS.PO_LINE_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_LINE_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES_ALL, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
SYNONYM: APPS.OE_ORDER_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.HZ_RELATIONSHIPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.OE_ORDER_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_ORDER_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HZ_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_LOCATIONS, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID,
-
eTRM - EC Tables and Views
12.1.1
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
eTRM - EC Tables and Views
12.2.2
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
SYNONYM: APPS.PER_ALL_ASSIGNMENTS_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_ASSIGNMENTS_F, status:VALID,
-
SYNONYM: APPS.PER_ALL_PEOPLE_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_PEOPLE_F, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
SYNONYM: APPS.PER_ALL_ASSIGNMENTS_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_ASSIGNMENTS_F, status:VALID,
-
SYNONYM: APPS.PER_ALL_PEOPLE_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_PEOPLE_F, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - EC Tables and Views
12.1.1
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,
-
eTRM - EC Tables and Views
12.2.2
description: Contains the information for code conversions which identify external values for a given Oracle internal value and vice versa. ,