Search Results shipto_org_name
Overview
PO_ECX_LINE_LOC_V is an APPS-owned database view in the Oracle E-Business Suite Purchasing (PO) module, classified as VALID in both release 12.1.1 and 12.2.2. It represents a denormalized, integration-oriented projection of purchase order shipment (line location) data, joining header, line, shipment, financial, and shipping location attributes into a single flattened result set. Its design pattern—with column aliases such as SHIPTO_ORG_NAME, SHIPTO_ORG_OTF, and SHIPTO_ORG_PARTNER_TYPE—indicates that it serves as a data source for outbound business events and external system integration, most notably the e-Commerce Gateway (ECX) purchasing extract. Rather than exposing raw transactional columns, the view resolves the ship-to location into human-readable organization, address, and telephone attributes suitable for transmission to suppliers or downstream systems. This makes PO_ECX_LINE_LOC_V a convenient reporting object for shipment-level detail without requiring callers to reconstruct the multi-table join chain manually.
Underlying Base Objects
The view is defined over five primary sources, each contributing distinct attributes:
- PO_LINE_LOCATIONS_ARCHIVE_ALL (synonym) — the driving table, supplying the shipment record, ordered quantity net of cancellations, need-by/promised dates, unit of measure, and the ship-to location identifier referenced through a foreign key.
- PO_LINES_ALL (synonym) — provides LINE_NUM and the fallback unit of measure when the shipment-level UOM is null.
- FINANCIALS_SYSTEM_PARAMS_ALL (synonym) — contributes the buying organization's functional currency (BUYING_ORG_CURRENCY), keyed on ORG_ID.
- HR_LOCATIONS_ALL (synonym) — supplies the ship-to address components (address lines, city, country, postal code, region, and telephone numbers) via SHIP_TO_LOCATION_ID.
- HR_ORGANIZATION_UNITS_V (view) — resolves the ship-to organization name (SHIPTO_ORG_NAME) via ORGANIZATION_ID.
The documented referenced objects also include the HR_API, HR_GENERAL, and HR_SECURITY packages, which are invoked by HR_ORGANIZATION_UNITS_V to enforce organization security and resolve flexible structures. Notably, the view filters to REVISION_NUM = 0 and to shipments where NET QUANTITY (QUANTITY minus QUANTITY_CANCELLED) exceeds zero, excluding fully cancelled shipments.
Key Columns
- PO_HEADER_ID, RELEASE_ID, PO_LINE_ID, LINE_LOCATION_ID — primary and foreign key identifiers for the header, release, line, and shipment levels.
- SHIPMENT_NUMBER, LINE_NUM — human-readable numbering for the shipment and its parent line.
- ORDERED_QUANTITY, UOM — net order quantity and resolved unit of measure.
- NEED_BY_DATE — coalesced from need-by and promised dates.
- SHIPTO_ORG_NAME — the organization name of the ship-to entity, joined from HR_ORGANIZATION_UNITS_V. This is the column most commonly searched when users seek a friendly name for the receiving organization.
- SHIPTO_ORG_ADDR_LINE1/2/3, SHIPTO_ORG_CITY, SHIPTO_ORG_COUNTRY, SHIPTO_ORG_ZIP, SHIPTO_ORG_STATE, SHIPTO_ORG_PHONE1/2/3 — structured address and contact attributes from HR_LOCATIONS_ALL.
- PARTNER_ID, PARTNER_ID_X, SHIPTO_ORG_OTF, SHIPTO_ORG_PARTNER_TYPE — integration metadata identifying the ship-to trading partner, with the OTF flag set to '0' and the partner type set to 'SHIPTO'.
Common Use Cases and Queries
Typical uses include generating shipment extracts for supplier communication, validating ship-to organization names against purchase orders, and building ad hoc purchasing reports. A sample retrieval of shipment detail by ship-to organization is shown below.
SELECT l.po_header_id, l.po_line_id, l.line_num, l.shipment_number,
l.ordered_quantity, l.uom, l.need_by_date, l.shipto_org_name,
l.shipto_org_city, l.shipto_org_country
FROM apps.po_ecx_line_loc_v l
WHERE l.shipto_org_name = :p_org_name
AND l.need_by_date >= TRUNC(SYSDATE)
ORDER BY l.po_header_id, l.line_num, l.shipment_number;
Because the view already filters cancelled and superseded shipments, callers can rely on the result set reflecting only active, orderable commitments. Analysts should note the dependency on organization security via HR_ORGANIZATION_UNITS_V, which may restrict visible rows based on the session's organization access.
-
View: PO_ECX_LINE_LOC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_V, object_name:PO_ECX_LINE_LOC_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ECX_LINE_LOC_V ,
-
View: PO_CXML_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_LINE_LOC_ARCH_V, object_name:PO_CXML_LINE_LOC_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_CXML_LINE_LOC_ARCH_V ,
-
View: PO_ECX_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_ARCH_V, object_name:PO_ECX_LINE_LOC_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ECX_LINE_LOC_ARCH_V ,
-
View: ITG_PO_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ITG.ITG_PO_LINE_LOC_ARCH_V, object_name:ITG_PO_LINE_LOC_ARCH_V, status:VALID, product: ITG - Internet Procurement Enterprise Connector , description: Used for XML mapping in the line locations level , implementation_dba_data: APPS.ITG_PO_LINE_LOC_ARCH_V ,
-
VIEW: APPS.PO_CXML_LINE_LOC_ARCH_V
12.1.1
-
View: PO_ECX_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_ARCH_V, object_name:PO_ECX_LINE_LOC_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ECX_LINE_LOC_ARCH_V ,
-
View: PO_ECX_LINE_LOC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_V, object_name:PO_ECX_LINE_LOC_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_ECX_LINE_LOC_V ,
-
VIEW: APPS.PO_ECX_LINE_LOC_ARCH_V
12.2.2
-
VIEW: APPS.PO_ECX_LINE_LOC_V
12.1.1
-
VIEW: APPS.PO_ECX_LINE_LOC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_V, object_name:PO_ECX_LINE_LOC_V, status:VALID,
-
VIEW: APPS.PO_ECX_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_ARCH_V, object_name:PO_ECX_LINE_LOC_ARCH_V, status:VALID,
-
View: ITG_PO_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ITG.ITG_PO_LINE_LOC_ARCH_V, object_name:ITG_PO_LINE_LOC_ARCH_V, status:VALID, product: ITG - Internet Procurement Enterprise Connector , description: Used for XML mapping in the line locations level , implementation_dba_data: APPS.ITG_PO_LINE_LOC_ARCH_V ,
-
View: PO_CXML_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_LINE_LOC_ARCH_V, object_name:PO_CXML_LINE_LOC_ARCH_V, status:VALID, product: PO - Purchasing , implementation_dba_data: APPS.PO_CXML_LINE_LOC_ARCH_V ,
-
VIEW: APPS.PO_ECX_LINE_LOC_ARCH_V
12.1.1
-
VIEW: APPS.PO_CXML_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_LINE_LOC_ARCH_V, object_name:PO_CXML_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.PO_CXML_LINE_LOC_ARCH_V
12.2.2
-
VIEW: APPS.ITG_PO_LINE_LOC_ARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ITG.ITG_PO_LINE_LOC_ARCH_V, object_name:ITG_PO_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.PO_ECX_LINE_LOC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_V, object_name:PO_ECX_LINE_LOC_V, status:VALID,
-
VIEW: APPS.PO_ECX_LINE_LOC_V
12.2.2
-
VIEW: APPS.PO_ECX_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_ECX_LINE_LOC_ARCH_V, object_name:PO_ECX_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.ITG_PO_LINE_LOC_ARCH_V
12.1.1
-
VIEW: APPS.ITG_PO_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ITG.ITG_PO_LINE_LOC_ARCH_V, object_name:ITG_PO_LINE_LOC_ARCH_V, status:VALID,
-
VIEW: APPS.ITG_PO_LINE_LOC_ARCH_V
12.2.2
-
VIEW: APPS.PO_CXML_LINE_LOC_ARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_CXML_LINE_LOC_ARCH_V, object_name:PO_CXML_LINE_LOC_ARCH_V, status:VALID,
-
eTRM - ITG Tables and Views
12.1.1
-
eTRM - ITG Tables and Views
12.2.2
-
eTRM - PO Tables and Views
12.1.1
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,
-
eTRM - PO Tables and Views
12.2.2
description: Temporary table for tracking a receiving upgrade from Release 9 to Release 10 ,