Search Results po_distributions_trx_v
Overview
PO_DISTRIBUTIONS_TRX_V is an Oracle E-Business Suite (EBS) view owned by the APPS schema within the Purchasing (PO) module. It is catalogued in ETRM with a status of VALID and is documented as a "Requisition Distribution View." Its primary purpose is to expose purchasing distribution transaction data in a form suitable for reporting, inquiry, and integration. Because the object is a view rather than a base table, it provides a read-only, denormalized projection of distribution-level purchasing activity, allowing reporting tools, concurrent programs, and external integrations to retrieve distribution, encumbrance, accounting, and receiving-related attributes without directly querying the underlying transactional tables. The view is relevant across both EBS 12.1.1 and 12.2.2 releases, where the Purchasing distributions model remains largely consistent.
Underlying Base Objects
According to the ETRM 12.2.2 metadata, PO_DISTRIBUTIONS_TRX_V references the following base objects: PO_CLM_INTG_GRP (a PACKAGE), PO_DISTRIBUTIONS (a SYNONYM), and PO_LINES_TRX_V (a VIEW). The central source of the columns is the PO_DISTRIBUTIONS synonym, which resolves to the core PO_DISTRIBUTIONS_ALL transactional table holding one row per purchase order distribution. The view text selects the full set of distribution attributes (prefixed POD.) directly from this object, anchoring the view to the distribution grain. PO_LINES_TRX_V is referenced as an additional view, typically to supply or join line-level context, while PO_CLM_INTG_GRP is a Purchasing package involved in the integration or lookup logic layered into the view. The relationship is therefore one of projection and enrichment: the view presents distribution rows from PO_DISTRIBUTIONS and augments them through references to the line view and package logic.
Key Columns
The view exposes the complete column set of PO_DISTRIBUTIONS. Key identifiers include PO_DISTRIBUTION_ID (primary key of the distribution), PO_HEADER_ID, PO_LINE_ID, LINE_LOCATION_ID, and PO_RELEASE_ID, which collectively locate the distribution within the purchasing document hierarchy. Quantity and amount tracking is provided by QUANTITY_ORDERED, QUANTITY_DELIVERED, QUANTITY_BILLED, QUANTITY_CANCELLED, AMOUNT_BILLED, and UNENCUMBERED_QUANTITY/AMOUNT. Accounting and budgeting columns include CODE_COMBINATION_ID (the charge account), SET_OF_BOOKS_ID, BUDGET_ACCOUNT_ID, ACCRUAL_ACCOUNT_ID, and VARIANCE_ACCOUNT_ID. Encumbrance-related fields such as ENCUMBERED_FLAG, ENCUMBERED_AMOUNT, GL_ENCUMBERED_DATE, and GL_ENCUMBERED_PERIOD_NAME support funds control reporting. Destination and project data are captured through DESTINATION_TYPE_CODE, DESTINATION_ORGANIZATION_ID, DESTINATION_SUBINVENTORY, PROJECT_ID, TASK_ID, and EXPENDITURE_TYPE. Requisition linkage is available via REQ_HEADER_REFERENCE_NUM, REQ_LINE_REFERENCE_NUM, and REQ_DISTRIBUTION_ID. Finally, the fifteen ATTRIBUTE columns and standard WHO/audit columns (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE) provide extensibility and traceability.
Common Use Cases and Queries
PO_DISTRIBUTIONS_TRX_V is commonly used for distribution-level spend analysis, encumbrance reconciliation, requisition-to-PO traceability, and project/cost reporting. A typical query joins the view to PO_HEADERS_ALL and PO_LINES_ALL through the exposed foreign keys:
- Distribution detail for a purchase order line:
SELECT po_distribution_id, quantity_ordered, quantity_billed, code_combination_id FROM po_distributions_trx_v WHERE po_line_id = :line_id; - Encumbrance reporting by period:
SELECT gl_encumbered_period_name, SUM(encumbered_amount) FROM po_distributions_trx_v WHERE encumbered_flag = 'Y' GROUP BY gl_encumbered_period_name; - Requisition traceability:
SELECT req_header_reference_num, req_line_reference_num, po_header_id FROM po_distributions_trx_v WHERE req_distribution_id IS NOT NULL; - Project and task expenditure analysis:
SELECT project_id, task_id, expenditure_type, SUM(amount_billed) FROM po_distributions_trx_v WHERE project_id IS NOT NULL GROUP BY project_id, task_id, expenditure_type;
These patterns support reporting views and extracts that require granular purchasing distribution data across the documented columns.
-
View: PO_DISTRIBUTIONS_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DISTRIBUTIONS_TRX_V, object_name:PO_DISTRIBUTIONS_TRX_V, status:VALID, product: PO - Purchasing , description: Requisition Distribution View. , implementation_dba_data: APPS.PO_DISTRIBUTIONS_TRX_V ,
-
VIEW: APPS.POR_RCV_HOME_RECEIPTS_V
12.2.2
-
VIEW: APPS.RCV_ENTER_RECEIPTS_PO_V
12.2.2
-
APPS.INV_RCV_TXN_INTERFACE SQL Statements
12.2.2
-
VIEW: APPS.POR_RCV_CONF_ITEMS_V
12.2.2
-
VIEW: APPS.POR_RCV_REQS_ALL_V
12.2.2
-
VIEW: APPS.POR_RCV_REQS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQS_ALL_V, object_name:POR_RCV_REQS_ALL_V, status:VALID,
-
VIEW: APPS.POR_RCV_HOME_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_HOME_RECEIPTS_V, object_name:POR_RCV_HOME_RECEIPTS_V, status:VALID,
-
VIEW: APPS.QA_SKIPLOT_RCV_RESULTS_V
12.2.2
-
PACKAGE BODY: APPS.INV_RCV_TXN_INTERFACE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INV_RCV_TXN_INTERFACE, status:VALID,
-
PACKAGE: APPS.PO_CLM_INTG_GRP
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PO_CLM_INTG_GRP, status:VALID,
-
VIEW: APPS.POR_RCV_HOME_REQS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_HOME_REQS_V, object_name:POR_RCV_HOME_REQS_V, status:VALID,
-
VIEW: APPS.POR_RCV_ALL_ITEMS_V1
12.2.2
-
VIEW: APPS.POR_RCV_PURCHASE_ITEMS_V
12.2.2
-
VIEW: APPS.POR_RCV_HOME_REQS_V
12.2.2
-
VIEW: APPS.POR_RCV_CONF_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_CONF_ITEMS_V, object_name:POR_RCV_CONF_ITEMS_V, status:VALID,
-
VIEW: APPS.POR_RCV_MY_PURCHASE_ITEMS_V
12.2.2
-
PACKAGE BODY: APPS.INV_UI_RCV_LOVS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:INV_UI_RCV_LOVS, status:VALID,
-
VIEW: APPS.POR_RCV_PURCHASE_RECEIPTS_V
12.2.2
-
VIEW: APPS.POR_RCV_REQ_PURCH_RECEIPTS_V
12.2.2
-
View: QA_SKIPLOT_RCV_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_RCV_RESULTS_V, object_name:QA_SKIPLOT_RCV_RESULTS_V, status:VALID, product: QA - Quality , description: Skip Lot results for Receiving , implementation_dba_data: APPS.QA_SKIPLOT_RCV_RESULTS_V ,
-
VIEW: APPS.POR_RCV_EXPRESS_ITEMS_V
12.2.2
-
VIEW: APPS.POR_RCV_SHIPMENTS_V
12.2.2
-
VIEW: APPS.POR_RCV_EXPRESS_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_EXPRESS_ITEMS_V, object_name:POR_RCV_EXPRESS_ITEMS_V, status:VALID,
-
VIEW: APPS.POR_RCV_ALL_ITEMS_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_ALL_ITEMS_V1, object_name:POR_RCV_ALL_ITEMS_V1, status:VALID,
-
VIEW: APPS.POR_RCV_RETURN_TO_VENDOR_V
12.2.2
-
VIEW: APPS.POR_RCV_MY_PURCHASE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:POR_RCV_MY_PURCHASE_ITEMS_V, status:VALID,
-
VIEW: APPS.POR_RCV_REQ_ITEMS_V
12.2.2
-
VIEW: APPS.QA_SKIPLOT_RCV_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_RCV_RESULTS_V, object_name:QA_SKIPLOT_RCV_RESULTS_V, status:VALID,
-
VIEW: APPS.RCV_VRC_TXS_VENDINT_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.POR_RCV_PURCHASE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_PURCHASE_ITEMS_V, object_name:POR_RCV_PURCHASE_ITEMS_V, status:VALID,
-
VIEW: APPS.POR_RCV_SHIPMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_SHIPMENTS_V, object_name:POR_RCV_SHIPMENTS_V, status:VALID,
-
VIEW: APPS.POR_RCV_REQ_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_ITEMS_V, object_name:POR_RCV_REQ_ITEMS_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.RCV_VRC_TXS_V
12.2.2
-
SYNONYM: APPS.PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PO_DISTRIBUTIONS, status:VALID,
-
VIEW: APPS.RCV_RETURNS_V
12.2.2
-
VIEW: APPS.RCV_ENTER_RECEIPTS_PO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_ENTER_RECEIPTS_PO_V, object_name:RCV_ENTER_RECEIPTS_PO_V, status:VALID,
-
VIEW: APPS.PO_DISTRIBUTIONS_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_DISTRIBUTIONS_TRX_V, object_name:PO_DISTRIBUTIONS_TRX_V, status:VALID,
-
VIEW: APPS.RCV_CORRECTIONS_V
12.2.2
-
VIEW: APPS.POR_RCV_REQ_PURCH_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_REQ_PURCH_RECEIPTS_V, object_name:POR_RCV_REQ_PURCH_RECEIPTS_V, status:VALID,
-
VIEW: APPS.RCV_VRC_TXS_VENDINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_VENDINT_V, object_name:RCV_VRC_TXS_VENDINT_V, status:VALID,
-
VIEW: APPS.RCV_CORRECTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_CORRECTIONS_V, object_name:RCV_CORRECTIONS_V, status:VALID,
-
PACKAGE BODY: APPS.INV_RCV_TXN_INTERFACE
12.2.2
-
VIEW: APPS.RCV_VRC_TXS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_VRC_TXS_V, object_name:RCV_VRC_TXS_V, status:VALID,
-
VIEW: APPS.POR_RCV_PURCHASE_RECEIPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_PURCHASE_RECEIPTS_V, object_name:POR_RCV_PURCHASE_RECEIPTS_V, status:VALID,
-
VIEW: APPS.POR_RCV_RETURN_TO_VENDOR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_RCV_RETURN_TO_VENDOR_V, object_name:POR_RCV_RETURN_TO_VENDOR_V, status:VALID,
-
VIEW: APPS.RCV_RETURNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.RCV_RETURNS_V, object_name:RCV_RETURNS_V, status:VALID,
-
VIEW: APPS.PO_LINES_TRX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_LINES_TRX_V, object_name:PO_LINES_TRX_V, status:VALID,