Search Results requisition_document_number
Overview
POBV_REQUISITION_DISTRIBUTIONS is an APPS-owned read-only database view in the Oracle E-Business Suite Purchasing (PO) module, documented in ETRM as "Retrofitted" and current through release 12.2.2. It presents requisition distribution information by joining the distribution-level records of PO_REQ_DISTRIBUTIONS_ALL to their parent requisition lines and headers, and resolves the inventory organization identifier to a descriptive organization unit name. The view therefore functions as a denormalized reporting and integration surface for purchase requisition accounting distributions.
Its role is chiefly analytical and interface-oriented: it consolidates the distribution rows that carry accounting, encumbrance, budgetary control, project, and tax attributes into a single queryable object, eliminating the need for report developers to reconstruct the header-line-distribution hierarchy themselves. Because the definition is declared WITH READ ONLY and includes operating-unit security through the '_SEC:RD.ORG_ID' predicate, it is intended for inquiry and extraction rather than transactional update. The _LA: pseudo-column expressions embedded in the definition signal that the view is exposed through Oracle's application framework with attribute-level value translation, for example mapping YES/NO lookup codes and GL lookup meanings for fields such as the encumbrance and funds-check flags.
Underlying Base Objects
The documented base objects are PO_REQ_DISTRIBUTIONS_ALL, PO_REQUISITION_LINES_ALL, PO_REQUISITION_HEADERS_ALL, and HR_ALL_ORGANIZATION_UNITS (all referenced through APPS synonyms). The join path is hierarchical:
PO_REQ_DISTRIBUTIONS_ALLtoPO_REQUISITION_LINES_ALLonREQUISITION_LINE_ID.PO_REQUISITION_LINES_ALLtoPO_REQUISITION_HEADERS_ALLonREQUISITION_HEADER_ID.PO_REQ_DISTRIBUTIONS_ALLtoHR_ALL_ORGANIZATION_UNITSonORG_ID = ORGANIZATION_ID.
The distribution table is the driving table; line and header tables supply lineage and document identity, while the organization table supplies the operating unit name. The view is bound by operating-unit security on the distribution's ORG_ID, meaning only distributions for the session's authorized operating units are returned.
Key Columns
- DISTRIBUTION_ID / DISTRIBUTION_NUM — unique identifier and sequence number of the distribution.
- REQUISITION_LINE_ID / LINE_NUM / REQUISITION_HEADER_ID / SEGMENT1 — parent line and header references;
SEGMENT1is the requisition document number. - ORG_ID / NAME — operating unit identifier and its organization unit name.
- REQ_LINE_QUANTITY, REQ_LINE_AMOUNT, REQ_LINE_CURRENCY_AMOUNT — quantity and monetary amounts at line level.
- ALLOCATION_TYPE / ALLOCATION_VALUE — the allocation basis and value used to apportion a distribution across charge accounts; the searched term allocation_value is central to this view's apportionment reporting.
- CODE_COMBINATION_ID, BUDGET_ACCOUNT_ID, ACCRUAL_ACCOUNT_ID, VARIANCE_ACCOUNT_ID — accounting flexfield references used for encumbrance, budgetary, and accrual postings.
- ENCUMBERED_FLAG, ENCUMBERED_AMOUNT, GL_ENCUMBERED_DATE, GL_ENCUMBERED_PERIOD_NAME, PREVENT_ENCUMBRANCE_FLAG — encumbrance status and financials posting detail.
- FAILED_FUNDS_LOOKUP_CODE, GL_CANCELLED_DATE, GL_CLOSED_DATE — funds-check outcome and GL lifecycle dates.
- PROJECT_ID, TASK_ID, EXPENDITURE_TYPE, EXPENDITURE_ITEM_DATE, PROJECT_RELATED_FLAG — Oracle Projects integration attributes.
- RECOVERABLE_TAX, NONRECOVERABLE_TAX, RECOVERY_RATE, TAX_RECOVERY_OVERRIDE_FLAG — tax recovery values.
- SET_OF_BOOKS_ID, USSGL_TRANSACTION_CODE, END_ITEM_UNIT_NUMBER, OKE_CONTRACT_LINE_ID, OKE_CONTRACT_DELIVERABLE_ID, DROP_SHIP_FLAG — ledger context, federal USSGL code, end-item tracking, and contract/drop-ship references.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard audit columns.
Common Use Cases and Queries
Typical uses include reconciling encumbered versus unencumbered distribution amounts, auditing allocation apportionment, monitoring failed funds checks, extracting project-related requisition distributions, and feeding downstream reporting on tax recovery and GL close status. A representative query returning allocation detail for a requisition document is:
SELECT DISTRIBUTION_NUMBER, LINE_NUMBER, REQUISITION_DOCUMENT_NUMBER, OPERATING_UNIT_NAME, ALLOCATION_TYPE, ALLOCATION_VALUE, REQ_LINE_AMOUNT, ENCUMBERED_AMOUNT FROM APPS.POBV_REQUISITION_DISTRIBUTIONS WHERE REQUISITION_DOCUMENT_NUMBER = :segment1 AND ALLOCATION_VALUE IS NOT NULL;SELECT OPERATING_UNIT_NAME, SUM(REQ_LINE_AMOUNT), SUM(ENCUMBERED_AMOUNT) FROM APPS.POBV_REQUISITION_DISTRIBUTIONS WHERE TRUNC(CREATION_DATE) BETWEEN :start_date AND :end_date GROUP BY OPERATING_UNIT_NAME;SELECT DISTRIBUTION_ID, REQUISITION_DOCUMENT_NUMBER, FAILED_FUNDS_LOOKUP_CODE FROM APPS.POBV_REQUISITION_DISTRIBUTIONS WHERE ENCUMBERED_FLAG = 'N' AND FAILED_FUNDS_LOOKUP_CODE IS NOT NULL;
Because the view is read-only and secured by operating unit, it is safe for ad hoc inquiry, BI Publisher data sources, and interface extracts, but it must not be used as a target for DML.
-
View: POBV_REQUISITION_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_DISTRIBUTIONS, object_name:POBV_REQUISITION_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_REQUISITION_DISTRIBUTIONS ,
-
View: POBV_REQUISITION_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_DISTRIBUTIONS, object_name:POBV_REQUISITION_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_REQUISITION_DISTRIBUTIONS ,
-
View: POFV_REQUISITION_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_DISTRIBUTIONS, object_name:POFV_REQUISITION_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_DISTRIBUTIONS ,
-
View: POFV_REQUISITION_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_DISTRIBUTIONS, object_name:POFV_REQUISITION_DISTRIBUTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_DISTRIBUTIONS ,
-
View: POBV_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_LINES, object_name:POBV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_REQUISITION_LINES ,
-
View: POFV_INBOUND_SHIPMENT_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_INBOUND_SHIPMENT_LINES, object_name:POFV_INBOUND_SHIPMENT_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_INBOUND_SHIPMENT_LINES ,
-
View: POBV_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POBV_REQUISITION_LINES, object_name:POBV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POBV_REQUISITION_LINES ,
-
View: POFV_INBOUND_SHIPMENT_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_INBOUND_SHIPMENT_LINES, object_name:POFV_INBOUND_SHIPMENT_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_INBOUND_SHIPMENT_LINES ,
-
View: POFV_RECEIVING_TRANSACTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_RECEIVING_TRANSACTIONS, object_name:POFV_RECEIVING_TRANSACTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_RECEIVING_TRANSACTIONS ,
-
View: POFV_RECEIVING_TRANSACTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_RECEIVING_TRANSACTIONS, object_name:POFV_RECEIVING_TRANSACTIONS, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_RECEIVING_TRANSACTIONS ,
-
View: POFV_REQUISITION_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_LINES ,
-
View: POFV_REQUISITION_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.POFV_REQUISITION_LINES, object_name:POFV_REQUISITION_LINES, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.POFV_REQUISITION_LINES ,