Search Results allocation_value
Overview
POR_DISTRIBUTIONS_ALL_V is an Oracle E-Business Suite (EBS) database view owned by the APPS schema in the ICX – Oracle iProcurement product module. Its documented description is simply "Distribution View," reflecting its purpose of presenting requisition distribution information in a form suited to iProcurement and downstream reporting requirements. The view joins distribution records to their parent requisition lines, thereby exposing a consolidated, denormalized picture of how a requisition line has been allocated across accounting, project, and budgetary dimensions. The user search term "allocation_value" corresponds directly to one of the view's derived columns: ALLOCATION_VALUE is produced via an NVL expression that substitutes the requisition line quantity when the stored allocation value is null. This makes the view particularly relevant to iProcurement allocation logic, shopping cart requisition processing, and encumbrance tracking. In EBS 12.1.1 and 12.2.2 the object remains a standard, valid view available to reporting and integration scenarios.
Underlying Base Objects
Per the documented ETRM metadata, the view is defined over two referenced base objects, both accessed through synonyms: PO_REQUISITION_LINES_ALL and PO_REQ_DISTRIBUTIONS_ALL. The view text selects from PO_REQ_DISTRIBUTIONS_ALL (aliased DIST) and PO_REQUISITION_LINES_ALL (aliased LINE), joining them on REQUISITION_LINE_ID. This join is the structural foundation of the view: it takes each distribution row from PO_REQ_DISTRIBUTIONS_ALL and enriches it with attributes from the parent requisition line. Because the distributor table is the driving table, the view returns one row per requisition distribution, with the parent line quantity and unit price available for derived computations such as PERCENTAGE, AMOUNT, and quantity-based allocation values.
Key Columns
The view exposes the full set of distribution columns plus several computed values. Notable columns include:
- DISTRIBUTION_ID – Primary identifier of the requisition distribution.
- REQUISITION_LINE_ID – Foreign key linking the distribution to its requisition line.
- CODE_COMBINATION_ID – The accounting flexfield combination charged by the distribution.
- ALLOCATION_TYPE – Derived via NVL(DIST.ALLOCATION_TYPE, 'QUANTITY'), defaulting to QUANTITY when null.
- ALLOCATION_VALUE – Derived via NVL(DIST.ALLOCATION_VALUE, REQ_LINE_QUANTITY); this is the column matched by the user search and represents the allocated quantity or value.
- PERCENTAGE – Computed as (REQ_LINE_QUANTITY / LINE.QUANTITY * 100).
- QUANTITY – The requisition line quantity on the distribution.
- AMOUNT – Computed as REQ_LINE_QUANTITY * LINE.UNIT_PRICE.
- ENCUMBERED_FLAG, ENCUMBERED_AMOUNT, GL_ENCUMBERED_DATE, GL_ENCUMBERED_PERIOD_NAME – Encumbrance and GL posting attributes.
- FAILED_FUNDS_LOOKUP_CODE – Indicates funds-check status.
- PROJECT_ID, TASK_ID, EXPENDITURE_TYPE, EXPENDITURE_ITEM_DATE, PROJECT_RELATED_FLAG – Project accounting dimensions.
- ORG_ID – Multi-org operating unit identifier; SET_OF_BOOKS_ID – Ledger identifier.
- ATTRIBUTE1..ATTRIBUTE15 – Descriptive flexfield context columns.
Common Use Cases and Queries
The view is commonly used in iProcurement reporting to analyze how requisition lines are distributed across accounts, and to inspect allocation values, percentages, and amounts. A typical query filters by a specific requisition line or distribution to examine allocation_value:
SELECT distribution_id, requisition_line_id, allocation_type,
allocation_value, percentage, quantity, amount, code_combination_id
FROM apps.por_distributions_all_v
WHERE requisition_line_id = :p_requisition_line_id;
Other common scenarios include validating encumbrance state (ENCUMBERED_FLAG, ENCUMBERED_AMOUNT), auditing failed funds checks (FAILED_FUNDS_LOOKUP_CODE), and reconciling project-related distributions. Because ALLOCATION_VALUE defaults to the line quantity when no explicit value exists, the view provides a reliable basis for allocation reporting without requiring outer joins or null-handling logic in consuming queries.
-
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: 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 ,
-
View: ICX_CART_LINE_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CART_LINE_DISTRIBUTIONS_V, object_name:ICX_CART_LINE_DISTRIBUTIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Web Requisitions Line Distributions View , implementation_dba_data: APPS.ICX_CART_LINE_DISTRIBUTIONS_V ,
-
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: ICX_CART_LINE_DISTRIBUTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_CART_LINE_DISTRIBUTIONS_V, object_name:ICX_CART_LINE_DISTRIBUTIONS_V, status:VALID, product: ICX - Oracle iProcurement , description: Web Requisitions Line Distributions View , implementation_dba_data: APPS.ICX_CART_LINE_DISTRIBUTIONS_V ,
-
View: ICX_REQ_DIST_UPDATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_REQ_DIST_UPDATE_V, object_name:ICX_REQ_DIST_UPDATE_V, status:VALID, product: ICX - Oracle iProcurement , description: Account Distribution Lines View , implementation_dba_data: APPS.ICX_REQ_DIST_UPDATE_V ,
-
View: ICX_REQ_DIST_UPDATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ICX.ICX_REQ_DIST_UPDATE_V, object_name:ICX_REQ_DIST_UPDATE_V, status:VALID, product: ICX - Oracle iProcurement , description: Account Distribution Lines View , implementation_dba_data: APPS.ICX_REQ_DIST_UPDATE_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: 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_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: 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 ,