Search Results ece_po_distributions_v
Overview
APPS.ECE_PO_DISTRIBUTIONS_V is a private, active e-Commerce Gateway (EC) view that extracts purchase order distribution information for outbound Electronic Data Interchange transactions. Its definition is scoped to the Purchasing (PO) product and supports the outbound Purchase Order (850/ORDERS) and Purchase Order Change (860/ORDCHG) transaction sets. The view supplies the distribution-level detail that the e-Commerce Gateway uses when translating Oracle Purchasing documents into outbound EDI messages delivered to trading partners.
Because distribution records carry quantities, billed amounts, delivery addresses, and descriptive flexfield attributes, this view is the primary source for the distribution segment of an 850 or 860 document. The AMOUNT_BILLED column is frequently queried by developers and analysts building reconciliation or reporting logic around Purchasing distributions, since it exposes the invoiced value associated with each distribution line.
Underlying Base Objects
The view is defined over the following documented base objects:
PO_DISTRIBUTIONS— the driving table, supplying distribution identifiers, quantities, billed amount, conversion rate and date, destination type, and attribute columns.PO_LINE_LOCATIONS— joined to provide shipment and line location context.PO_RELEASES— referenced for release-level information used in blanket and release transactions.HR_LOCATIONS_ALL— provides the deliver-to address components such as location code, address lines, city, postal code, country, region, and telephone numbers.PER_ALL_PEOPLE_F— supplies the deliver-to contact first and last names.
The view text selects from PO_DISTRIBUTIONS (aliased POD) and joins to HR_LOCATIONS_ALL (HRL) and PER_ALL_PEOPLE_F (PPF) to denormalize delivery address and contact data. Notably, PO_RELEASE_ID is returned as a literal 0, indicating that the view is oriented toward standard purchase orders rather than release-level extraction.
Key Columns
PO_HEADER_ID,PO_LINE_ID,LINE_LOCATION_ID,PO_DISTRIBUTION_ID— key identifiers linking the distribution to its header, line, shipment, and distribution record.PROJECT_ID,TASK_ID— project and task references for project-accounted distributions.DISTRIBUTION_NUM— the distribution sequence number within the shipment.QUANTITY_ORDERED,QUANTITY_DELIVERED,QUANTITY_BILLED,QUANTITY_CANCELLED— quantity metrics at distribution level.AMOUNT_BILLED— the invoiced amount recorded against the distribution, a common reconciliation target.CONVERSION_RATE,CONVERSION_DATE— populated fromPOD.RATEandPOD.RATE_DATEfor currency conversion.DESTINATION_TYPE_CODE— indicates the destination type for the distribution.DS_ATTRIBUTE_CATEGORYandDS_ATTRIBUTE1throughDS_ATTRIBUTE15— descriptive flexfield context and segment values.DELIVER_TO_LOCATION_CODE,DELIVER_TO_ADDRESS_LINE_1..3,DELIVER_TO_CITY,DELIVER_TO_POSTAL_CODE,DELIVER_TO_COUNTRY,DELIVER_TO_REGION_1..3,DELIVER_TO_PHONE1..2— the denormalized deliver-to address block.DELIVER_TO_CONTACT_FIRST_NAME,DELIVER_TO_CONTACT_LAST_NAME— the deliver-to contact name.
Common Use Cases and Queries
The view is typically consumed by e-Commerce Gateway extraction logic and by custom reporting that requires distribution detail with a deliver-to address. A representative query retrieving billed amounts and delivery data for a purchase order is:
SELECT po_header_id, po_line_id, distribution_num, quantity_ordered, quantity_billed, amount_billed, deliver_to_city, deliver_to_country FROM apps.ece_po_distributions_v WHERE po_header_id = :p_header_id ORDER BY po_line_id, distribution_num;
To analyze billed amounts across a set of distributions:
SELECT po_header_id, SUM(amount_billed) total_billed FROM apps.ece_po_distributions_v GROUP BY po_header_id HAVING SUM(amount_billed) > 0;
Because the view is marked private and is scoped to the EC product, it should be treated as an internal e-Commerce Gateway object rather than a general-purpose reporting view. Customizations should avoid modifying its definition; instead, replicate the join logic against PO_DISTRIBUTIONS, HR_LOCATIONS_ALL, and PER_ALL_PEOPLE_F when broader or differently filtered results are required.
-
View: ECE_PO_DISTRIBUTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PO_DISTRIBUTIONS_V, object_name:ECE_PO_DISTRIBUTIONS_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts distribution information* for the outbound Purchase Order (850/ORDERS) and* outbound Purchase Order Change (860/ORDCHG) transactions.* @rep:scope private* @rep:product PO* @rep:lifecycle active* @rep:displayname Purc , implementation_dba_data: APPS.ECE_PO_DISTRIBUTIONS_V ,
-
View: ECE_PO_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PO_DISTRIBUTIONS_V, object_name:ECE_PO_DISTRIBUTIONS_V, status:VALID, product: EC - e-Commerce Gateway , description: /*#* This view extracts distribution information* for the outbound Purchase Order (850/ORDERS) and* outbound Purchase Order Change (860/ORDCHG) transactions.* @rep:scope private* @rep:product PO* @rep:lifecycle active* @rep:displayname Purc , implementation_dba_data: APPS.ECE_PO_DISTRIBUTIONS_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.PO_RELEASES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_RELEASES, status:VALID,
-
SYNONYM: APPS.PO_RELEASES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_RELEASES, status:VALID,
-
VIEW: APPS.ECE_PO_DISTRIBUTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PO_DISTRIBUTIONS_V, object_name:ECE_PO_DISTRIBUTIONS_V, status:VALID,
-
VIEW: APPS.ECE_PO_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EC.ECE_PO_DISTRIBUTIONS_V, object_name:ECE_PO_DISTRIBUTIONS_V, status:VALID,
-
SYNONYM: APPS.PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_DISTRIBUTIONS, status:VALID,
-
SYNONYM: APPS.PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PO_DISTRIBUTIONS, 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.HR_LOCATIONS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
SYNONYM: APPS.HR_LOCATIONS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_LOCATIONS_ALL, status:VALID,
-
APPS.ECE_POO_TRANSACTION dependencies on ECE_PO_DISTRIBUTIONS
12.1.1
-
APPS.ECE_POO_TRANSACTION dependencies on ECE_PO_DISTRIBUTIONS
12.2.2
-
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_PEOPLE_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PER_ALL_PEOPLE_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,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.ECE_POO_TRANSACTION
12.2.2
-
PACKAGE BODY: APPS.ECE_POO_TRANSACTION
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.ECE_POO_TRANSACTION dependencies on ECE_FLATFILE_PVT
12.2.2
-
APPS.ECE_POO_TRANSACTION dependencies on ECE_FLATFILE_PVT
12.1.1
-
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. ,
-
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. ,