Search Results source_req_distribution_id
Overview
PO_REQ_DISTRIBUTIONS_V is an APPS-owned view in the Oracle E-Business Suite Purchasing (PO) module. In the ETRM metadata it is described as "10SC ONLY - Retrofitted," indicating that this object originated as a custom or localized database object associated with a specific 10SC implementation and was subsequently retrofitted into the standard APPS schema for support in EBS 12.1.1 and 12.2.2. The view exposes the distribution-level detail of purchase requisitions, providing a reporting and integration layer over the transactional distribution records maintained by the core application.
The object is published with a status of VALID in the APPS schema, meaning it is accessible to custom reports, concurrent programs, forms personalizations, and external integrations that connect with the APPS credentials. Because it is a view and not a table, it carries no independent storage and reflects the state of its underlying base object at query time. Its principal role is to consolidate the requisition distribution attributes—including accounting flexfield references, encumbrance information, project and task associations, and tax recovery data—into a single queryable interface.
Underlying Base Objects
According to the documented view metadata for 12.2.2, PO_REQ_DISTRIBUTIONS_V is defined over a single referenced base object: PO_REQ_DISTRIBUTIONS, accessed through a synonym. The view text confirms this relationship with a straightforward projection: SELECT ... FROM PO_REQ_DISTRIBUTIONS.
The view does not perform joins to lookup tables, nor does it aggregate or restrict rows. It is a column-selective wrapper, meaning every distribution row present in PO_REQ_DISTRIBUTIONS is returned. The only transformation applied in the view text is the expression NVL(ENCUMBERED_FLAG, 'N'), which guarantees that the ENCUMBERED_FLAG column is never returned as NULL. All other columns map directly to their base table counterparts. Because the view reads from the synonym rather than a fully qualified table name, the resolution depends on the APPS schema synonym pointing to the PO base table.
Key Columns
- DISTRIBUTION_ID — Primary identifier for the requisition distribution record.
- REQUISITION_LINE_ID — Foreign key linking the distribution to its parent requisition line.
- ENCUMBERED_FLAG — Indicates whether the distribution has been encumbered; the view defaults NULL values to 'N'. This is the column most often targeted by users searching for encumbrance status.
- ENCUMBERED_AMOUNT — The monetary amount encumbered against the distribution.
- GL_ENCUMBERED_DATE / GL_ENCUMBERED_PERIOD_NAME — The date and accounting period in which the encumbrance was created in General Ledger.
- GL_CANCELLED_DATE / GL_CLOSED_DATE — Dates on which the associated encumbrance was cancelled or the GL period was closed.
- PREVENT_ENCUMBERANCE_FLAG — Controls whether encumbrance creation is suppressed for the distribution.
- FAILED_FUNDS_LOOKUP_CODE — Result code from funds availability checking.
- SET_OF_BOOKS_ID, CODE_COMBINATION_ID, BUDGET_ACCOUNT_ID, ACCRUAL_ACCOUNT_ID, VARIANCE_ACCOUNT_ID — Accounting and set of books references.
- PROJECT_ID, TASK_ID, EXPENDITURE_TYPE, EXPENDITURE_ITEM_DATE, AWARD_ID — Project accounting and grants attributes.
- RECOVERABLE_TAX, NONRECOVERABLE_TAX, RECOVERY_RATE, TAX_RECOVERY_OVERRIDE_FLAG — Tax recovery detail.
- ORG_ID — Operating unit identifier, used for multi-org security.
- ATTRIBUTE_CATEGORY through ATTRIBUTE15 — Descriptive flexfield columns.
Common Use Cases and Queries
The view is typically used to report on requisition distributions and their encumbrance status, including integration scenarios that extract distribution data for external budgeting or project systems. A representative query retrieving encumbered distributions for an operating unit is shown below.
- Encumbrance reporting: SELECT distribution_id, requisition_line_id, encumbered_flag, encumbered_amount FROM po_req_distributions_v WHERE encumbered_flag = 'Y' AND org_id = :p_org_id;
- Funds check failures: SELECT distribution_id, failed_funds_lookup_code, encumbered_amount FROM po_req_distributions_v WHERE failed_funds_lookup_code IS NOT NULL;
- Project-related distributions: SELECT distribution_id, project_id, task_id, expenditure_type FROM po_req_distributions_v WHERE project_related_flag = 'Y';
- GL encumbrance period analysis: SELECT gl_encumbered_period_name, SUM(encumbered_amount) FROM po_req_distributions_v GROUP BY gl_encumbered_period_name;
Because the view applies no row filtering and no joins, consumers should apply their own multi-org and date predicates and be aware that performance mirrors that of querying the base table directly.
-
View: PO_REQ_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_V, object_name:PO_REQ_DISTRIBUTIONS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQ_DISTRIBUTIONS_V ,
-
VIEW: PO.PO_REQ_DISTRIBUTIONS_ALL#
12.2.2
-
VIEW: APPS.PO_REQ_DISTRIBUTIONS_V
12.1.1
-
View: PO_REQ_DISTRIBUTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_V, object_name:PO_REQ_DISTRIBUTIONS_V, status:VALID, product: PO - Purchasing , description: 10SC ONLY - Retrofitted , implementation_dba_data: APPS.PO_REQ_DISTRIBUTIONS_V ,
-
VIEW: APPS.PO_REQ_DISTRIBUTIONS_V
12.2.2
-
VIEW: PO.PO_REQ_DISTRIBUTIONS_ALL#
12.2.2
owner:PO, object_type:VIEW, object_name:PO_REQ_DISTRIBUTIONS_ALL#, status:VALID,
-
TABLE: PO.PO_REQ_DISTRIBUTIONS_GT
12.2.2
owner:PO, object_type:TABLE, object_name:PO_REQ_DISTRIBUTIONS_GT, status:VALID,
-
TABLE: PO.PO_REQ_DISTRIBUTIONS_GT
12.1.1
owner:PO, object_type:TABLE, object_name:PO_REQ_DISTRIBUTIONS_GT, status:VALID,
-
VIEW: APPS.ICX_PO_REQ_DIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_DIST_V, object_name:ICX_PO_REQ_DIST_V, status:VALID,
-
View: POR_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_DISTRIBUTIONS_V, object_name:POR_DISTRIBUTIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Distribution View , implementation_dba_data: APPS.POR_DISTRIBUTIONS_V ,
-
View: POR_DISTRIBUTIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_DISTRIBUTIONS_ALL_V, object_name:POR_DISTRIBUTIONS_ALL_V, status:VALID, product: ICX - Oracle iProcurement , description: Distribution View , implementation_dba_data: APPS.POR_DISTRIBUTIONS_ALL_V ,
-
View: POR_DISTRIBUTIONS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_DISTRIBUTIONS_ALL_V, object_name:POR_DISTRIBUTIONS_ALL_V, status:VALID, product: ICX - Oracle iProcurement , description: Distribution View , implementation_dba_data: APPS.POR_DISTRIBUTIONS_ALL_V ,
-
VIEW: APPS.ICX_PO_REQ_DIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_DIST_V, object_name:ICX_PO_REQ_DIST_V, status:VALID,
-
VIEW: APPS.POR_DISTRIBUTIONS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_DISTRIBUTIONS_ALL_V, object_name:POR_DISTRIBUTIONS_ALL_V, status:VALID,
-
View: POR_DISTRIBUTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_DISTRIBUTIONS_V, object_name:POR_DISTRIBUTIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Distribution View , implementation_dba_data: APPS.POR_DISTRIBUTIONS_V ,
-
TABLE: PO.PO_REQ_DISTRIBUTIONS_ALL
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_ALL, object_name:PO_REQ_DISTRIBUTIONS_ALL, status:VALID,
-
VIEW: APPS.POR_DISTRIBUTIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_DISTRIBUTIONS_ALL_V, object_name:POR_DISTRIBUTIONS_ALL_V, status:VALID,
-
VIEW: APPS.PO_REQ_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_V, object_name:PO_REQ_DISTRIBUTIONS_V, status:VALID,
-
VIEW: APPS.PO_REQ_DISTRIBUTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_V, object_name:PO_REQ_DISTRIBUTIONS_V, status:VALID,
-
VIEW: APPS.POR_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_DISTRIBUTIONS_V, object_name:POR_DISTRIBUTIONS_V, status:VALID,
-
View: ICX_PO_REQ_DIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_DIST_V, object_name:ICX_PO_REQ_DIST_V, status:VALID, product: ICX - Oracle iProcurement , description: Requisition Distribution Detail View , implementation_dba_data: APPS.ICX_PO_REQ_DIST_V ,
-
View: ICX_PO_REQ_DIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_DIST_V, object_name:ICX_PO_REQ_DIST_V, status:VALID, product: ICX - Oracle iProcurement , description: Requisition Distribution Detail View , implementation_dba_data: APPS.ICX_PO_REQ_DIST_V ,
-
VIEW: APPS.POR_DISTRIBUTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.POR_DISTRIBUTIONS_V, object_name:POR_DISTRIBUTIONS_V, status:VALID,
-
VIEW: APPS.ICX_PO_REQ_LINES_DIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_LINES_DIST_V, object_name:ICX_PO_REQ_LINES_DIST_V, status:VALID,
-
TABLE: PO.PO_REQ_DISTRIBUTIONS_ALL
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_ALL, object_name:PO_REQ_DISTRIBUTIONS_ALL, status:VALID,
-
APPS.PO_REQ_DISTRIBUTIONS_PKG1 SQL Statements
12.1.1
-
APPS.PO_REQ_DISTRIBUTIONS_PKG1 SQL Statements
12.2.2
-
VIEW: APPS.PO_REQ_DISTRIBUTIONS_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_INQ_V, object_name:PO_REQ_DISTRIBUTIONS_INQ_V, status:VALID,
-
VIEW: APPS.PO_REQ_DISTRIBUTIONS_INQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_INQ_V, object_name:PO_REQ_DISTRIBUTIONS_INQ_V, status:VALID,
-
VIEW: APPS.ICX_PO_REQ_LINES_DIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_LINES_DIST_V, object_name:ICX_PO_REQ_LINES_DIST_V, status:VALID,
-
APPS.PO_FUNDS_CHECKER SQL Statements
12.2.2
-
VIEW: APPS.PO_CLMREQ_DIST_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PO_CLMREQ_DIST_DETAILS_V, status:VALID,
-
APPS.PO_FUNDS_CHECKER SQL Statements
12.1.1
-
View: PO_REQ_DISTRIBUTIONS_INQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_INQ_V, object_name:PO_REQ_DISTRIBUTIONS_INQ_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_REQ_DISTRIBUTIONS_INQ_V ,
-
View: ICX_PO_REQ_LINES_DIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_LINES_DIST_V, object_name:ICX_PO_REQ_LINES_DIST_V, status:VALID, product: ICX - Oracle iProcurement , description: Requisition Distributions View , implementation_dba_data: APPS.ICX_PO_REQ_LINES_DIST_V ,
-
View: PO_REQ_DISTRIBUTIONS_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.PO_REQ_DISTRIBUTIONS_INQ_V, object_name:PO_REQ_DISTRIBUTIONS_INQ_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.PO_REQ_DISTRIBUTIONS_INQ_V ,
-
PACKAGE BODY: APPS.PO_REQ_DISTRIBUTIONS_PKG1
12.2.2
-
View: ICX_PO_REQ_LINES_DIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_PO_REQ_LINES_DIST_V, object_name:ICX_PO_REQ_LINES_DIST_V, status:VALID, product: ICX - Oracle iProcurement , description: Requisition Distributions View , implementation_dba_data: APPS.ICX_PO_REQ_LINES_DIST_V ,
-
PACKAGE BODY: APPS.PO_REQ_DISTRIBUTIONS_PKG1
12.1.1
-
PACKAGE: APPS.CSP_PARTS_ORDER
12.1.1
-
APPS.PO_PARTIAL_FUNDING_PKG SQL Statements
12.2.2
-
PACKAGE: APPS.CSP_PARTS_ORDER
12.2.2
-
PACKAGE BODY: APPS.PO_REQ_DISTRIBUTIONS_PKG2
12.2.2
-
PACKAGE: APPS.PO_CREATE_REQUISITION_SV
12.2.2
-
PACKAGE: APPS.PO_CREATE_REQUISITION_SV
12.1.1
-
APPS.PO_NEGOTIATIONS4_PVT SQL Statements
12.1.1
-
APPS.IGC_CBC_PO_GRP SQL Statements
12.2.2
-
APPS.PO_CREATE_REQUISITION_SV SQL Statements
12.1.1
-
APPS.PO_CREATE_REQUISITION_SV SQL Statements
12.2.2
-
APPS.IGC_CBC_PO_GRP SQL Statements
12.1.1