Results for “dest_charge_account_id”
50+ results
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
PO_DISTRIBUTIONS_V is an APPS-owned database view in the Oracle E-Business Suite Purchasing (PO) module. In the ETRM metadata for release 12.2.2 the object is flagged with the description "10SC ONLY", indicating that its use is restricted to a specific localization or operating scope rather than being a general-purpose, cross-module reporting entity. The view presents a denormalized projection of purchase order distribution records, combining distribution-level accounting, accrual, encumbrance, receiving, and destination attributes with selected requisition reference information. Because it exposes ROWID along with the primary distribution identifier, it behaves in the manner of an updatable-style view over the distribution base tables, but it is intended primarily for query and reporting access. The view is useful wherever a single flattened row per PO distribution is required, for example in encumbrance reconciliation, accrual analysis, project and expenditure linkage, and destination-based sourcing reporting.
Underlying Base Objects
The documented referenced base objects are HR_ALL_ORGANIZATION_UNITS_TL, PO_DISTRIBUTIONS, PO_DISTRIBUTIONS_ALL, PO_REQUISITION_HEADERS_ALL, PO_REQUISITION_LINES_ALL, and PO_REQ_DISTRIBUTIONS_ALL, all accessed through APPS synonyms. The principal source is POD1, which supplies the distribution columns such as PO_DISTRIBUTION_ID, REQ_DISTRIBUTION_ID, AMOUNT_BILLED, ENCUMBERED_AMOUNT, and the accounting flexfield reference CODE_COMBINATION_ID. Requisition context is joined from PO_REQUISITION_HEADERS_ALL (PORH) and PO_REQUISITION_LINES_ALL (PORL) to derive the requisition number and line number when a requisition distribution is present. HR_ALL_ORGANIZATION_UNITS_TL supports organizational descriptions for the destination or expenditure organization. The relationships follow the PO distribution hierarchy: header to line to distribution, with the optional requisition distribution link closing the loop back to the originating requisition.
Key Columns
- PO_DISTRIBUTION_ID, PO_HEADER_ID, PO_LINE_ID, PO_RELEASE_ID — primary distribution identity and its parent document keys.
- REQ_DISTRIBUTION_ID, REQ_HEADER_REFERENCE_NUM, REQ_LINE_REFERENCE_NUM — requisition linkage, resolved via DECODE against PORH.SEGMENT1 and PORL.LINE_NUM.
- CODE_COMBINATION_ID, SET_OF_BOOKS_ID — accounting flexfield and ledger context for the charge account.
- QUANTITY_ORDERED, QUANTITY_DELIVERED, QUANTITY_BILLED, QUANTITY_CANCELLED, UNENCUMBERED_QUANTITY — quantity lifecycle metrics.
- AMOUNT_BILLED, ENCUMBERED_AMOUNT, UNENCUMBERED_AMOUNT, ACCRUED_FLAG, ENCUMBERED_FLAG, ACCRUE_ON_RECEIPT_FLAG — monetary and accrual/encumbrance state.
- DESTINATION_TYPE_CODE, DESTINATION_ORGANIZATION_ID, DESTINATION_SUBINVENTORY, DELIVER_TO_LOCATION_ID, DELIVER_TO_PERSON_ID — destination and delivery attributes.
- PROJECT_ID, TASK_ID, EXPENDITURE_TYPE, EXPENDITURE_ITEM_DATE, EXPENDITURE_ORGANIZATION_ID — project accounting context.
- GL_ENCUMBERED_DATE, GL_CANCELLED_DATE, GL_CLOSED_DATE, GL_ENCUMBERED_PERIOD_NAME — period and GL closing information.
- ATTRIBUTE1 through ATTRIBUTE15, ATTRIBUTE_CATEGORY — descriptive flexfield values.
Note the DECODE expressions that derive a requisition-present indicator and substitute REQ_HEADER_REFERENCE_NUM or PORH.SEGMENT1 depending on whether REQ_DISTRIBUTION_ID is null, and the NVL wrapping on QUANTITY_DELIVERED and QUANTITY_BILLED to default these to zero. The searched column name "source_distribution_id" is not exposed by this view; the closest distribution identity columns are PO_DISTRIBUTION_ID and REQ_DISTRIBUTION_ID.
Common Use Cases and Queries
Typical scenarios include reconciling encumbered versus billed amounts on a purchase order, tracing distributions back to their originating requisition, and reporting delivery destinations by organization or subinventory. A representative query retrieving distribution counts per requisition follows:
- SELECT po_header_id, po_line_id, req_distribution_id, SUM(amount_billed) FROM apps.po_distributions_v GROUP BY po_header_id, po_line_id, req_distribution_id;
- SELECT po_distribution_id, po_header_id, code_combination_id, encumbered_amount, amount_billed FROM apps.po_distributions_v WHERE set_of_books_id = :ledger_id;
- SELECT req_header_reference_num, req_line_reference_num, destination_organization_id FROM apps.po_distributions_v WHERE req_distribution_id IS NOT NULL;
Given the restrictive "10SC ONLY" designation, consumers should confirm applicability to their operating unit and release before embedding this view in custom reporting or interfaces.
-
View: PO_DISTRIBUTIONS_V 12.2.2
10SC ONLY
APPS.PO_DISTRIBUTIONS_V·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ PO_DISTRIBUTIONS·↳ PO_DISTRIBUTIONS_ALL·Explore PO module →
-
View: PO_DISTRIBUTION_XML 12.2.2
APPS.PO_DISTRIBUTION_XML·↳ GL_CODE_COMBINATIONS_KFV·↳ HR_LOOKUPS·↳ PER_ALL_PEOPLE_F·Explore PO module →
-
The merged view using PO_DISTRIBUTIONS_ALL table and PO_DISTRIBUTIONS_DRAFT_ALL tables.
APPS.PO_DISTRIBUTIONS_MERGE_V·↳ PO_DISTRIBUTIONS_ALL·↳ PO_DISTRIBUTIONS_DRAFT_ALL·↳ PO_DRAFTS·Explore PO module →
-
- Retrofitted
APPS.POBV_SCHEDULED_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
- Retrofitted
APPS.POBV_STD_PO_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
View: POBV_PO_DISTRIBUTIONS 12.2.2
- Retrofitted
APPS.POBV_PO_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
View: PO_DISTRIBUTIONS_V 12.1.1
10SC ONLY
APPS.PO_DISTRIBUTIONS_V·↳ HR_ALL_ORGANIZATION_UNITS_TL·↳ PO_DISTRIBUTIONS·↳ PO_DISTRIBUTIONS_ALL·Explore PO module →
-
View: PO_DISTRIBUTION_XML 12.1.1
APPS.PO_DISTRIBUTION_XML·↳ GL_CODE_COMBINATIONS_KFV·↳ PER_ALL_PEOPLE_F·↳ PO_COMMUNICATION_GT·Explore PO module →
-
- Retrofitted
APPS.POBV_SCHEDULED_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
- Retrofitted
APPS.POBV_BKT_PO_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
- Retrofitted
APPS.POFV_PLAN_PO_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
- Retrofitted
APPS.POFV_BKT_PO_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
Interface table for purchase order distributions
-
- Retrofitted
APPS.POBV_STD_PO_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
APPS.PO_DISTRIBUTION_ARCHIVE_XML·↳ GL_CODE_COMBINATIONS_KFV·↳ PER_ALL_PEOPLE_F·↳ PO_COMMUNICATION_GT·Explore PO module →
-
- Retrofitted
APPS.POFV_BKT_PO_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
View: POFV_PO_DISTRIBUTIONS 12.1.1
- Retrofitted
APPS.POFV_PO_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
- Retrofitted
APPS.POBV_PLAN_PO_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
- Retrofitted
APPS.POBV_PLAN_PO_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
- Retrofitted
APPS.POBV_BKT_PO_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
APPS.PO_DISTRIBUTION_ARCHIVE_XML·↳ GL_CODE_COMBINATIONS_KFV·↳ HR_LOOKUPS·↳ PER_ALL_PEOPLE_F·Explore PO module →
-
View: POBV_PO_DISTRIBUTIONS 12.1.1
- Retrofitted
APPS.POBV_PO_DISTRIBUTIONS·↳ HR_ALL_ORGANIZATION_UNITS·↳ PO_DISTRIBUTIONS_ALL·↳ PO_HEADERS_ALL·Explore PO module →
-
- Retrofitted
APPS.POFV_STD_PO_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
- Retrofitted
APPS.POFV_SCHEDULED_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
View: POFV_PO_DISTRIBUTIONS 12.2.2
- Retrofitted
APPS.POFV_PO_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
- Retrofitted
APPS.POFV_SCHEDULED_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
View: PO_DISTRIBUTIONS_TRX_V 12.2.2
Requisition Distribution View.
APPS.PO_DISTRIBUTIONS_TRX_V·↳ PO_DISTRIBUTIONS·↳ PO_LINES_TRX_V·Explore PO module →
-
View: PO_DISTRIBUTIONS_INQ_V 12.2.2
- Retrofitted
APPS.PO_DISTRIBUTIONS_INQ_V·↳ PO_DISTRIBUTIONS_ALL·↳ PO_DOCUMENT_TYPES_ALL_B·↳ PO_DOCUMENT_TYPES_ALL_TL·Explore PO module →
-
- Retrofitted
APPS.POFV_STD_PO_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
The merged view using PO_DISTRIBUTIONS_ALL table and PO_DISTRIBUTIONS_DRAFT_ALL tables.
APPS.PO_DISTRIBUTIONS_MERGE_V·↳ PO_DISTRIBUTIONS_ALL·↳ PO_DISTRIBUTIONS_DRAFT_ALL·↳ PO_DRAFTS·Explore PO module →
-
- Retrofitted
APPS.POFV_PLAN_PO_DISTRIBUTIONS·↳ BOM_RESOURCES·↳ GL_CODE_COMBINATIONS·↳ GL_SETS_OF_BOOKS·Explore PO module →
-
Archived distributions
-
Archived distributions
-
Purchase order distributions draft
-
For Internal Use Only: This table is global temporary table based on po_distributions_all table. It is used for internal processing of data for PO Approval Submission Checks.
-
View: PO_DISTRIBUTIONS_INQ_V 12.1.1
- Retrofitted
APPS.PO_DISTRIBUTIONS_INQ_V·↳ PO_DISTRIBUTIONS_ALL·↳ PO_DOCUMENT_TYPES_ALL_B·↳ PO_DOCUMENT_TYPES_ALL_TL·Explore PO module →
-
Purchase order distributions
-
Purchase order distributions
-
Interface table for purchase order distributions
-
- Retrofitted
Not implemented in this database·Explore PO module →
-
View: PO_DISTRIBUTIONS_MRC_V 12.1.1
- Retrofitted
Not implemented in this database·Explore PO module →
-
- Retrofitted
Not implemented in this database·Explore PO module →
-
View: PO_DISTRIBUTIONS_MRC_V 12.2.2
- Retrofitted
Not implemented in this database·Explore PO module →