Search Results quantity_overbilled
Overview
PA_PROJ_APPR_PO_DISTRIBUTIONS is a read-only view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Projects (PA) application family. Its documented purpose in both the 12.1.1 and 12.2.2 releases is to present all approved and uninvoiced purchase order distributions that are project related. In practice, the view answers the question: which committed, approved purchase order commitments still carry an open (uninvoiced) balance against a project or task? This makes it a foundational object for commitment reporting, project funds checking, and downstream integration with purchasing and payables data.
The view derives its rows from PA_PROJ_PO_DISTRIBUTIONS and filters on EVER_APPROVED_FLAG = 'Y', guaranteeing that only distributions that reached an approved purchasing state are exposed. Because the parent view already resolves PO distributions to project, task, and expenditure attributes, this view is essentially a curated, project-facing projection of purchasing commitment data.
Underlying Base Objects
The view's FROM clause references a single base object, PA_PROJ_PO_DISTRIBUTIONS, aliased POD. All column references are prefixed POD., confirming a direct projection (no joins, unions, or aggregations in the view text). The 12.2.2 ETRM metadata nonetheless lists several referenced objects, which reflects dependencies exposed through the underlying view and the package logic that populates PO-derived columns:
- PA_PROJ_PO_DISTRIBUTIONS (VIEW) — the direct source of every column in PA_PROJ_APPR_PO_DISTRIBUTIONS.
- PA_UTILS4, PA_CMT_UTILS, PA_PJC_CWK_UTILS, PA_TASK_UTILS, PA_FUNDS_CONTROL_UTILS — Projects utility packages that resolve project/task validation, expenditure categorization, and commitment/funds-control rules.
- PA_CURRENCY, PA_MULTI_CURRENCY — packages supporting the dual-currency (denominated vs. accounted) amounts exposed by the view.
- HR_GENERAL, HR_SECURITY — HR packages used to resolve person names (requestor, buyer) and to apply security profiles for person data.
- FND_PROFILE — the EBS profile-option package, used to obtain user/application context such as currency and security settings.
Because every column is inherited unchanged, the view provides no additional transformation beyond the approval filter.
Key Columns
The view exposes a wide column set covering document identity, financial quantities, and project attribution. The user search term "printed_date" maps to the PRINTED_DATE column, which records the date the purchase order document was printed. This is a standard column on PO documents and, in this view, allows reporting on committed project spend by the point at which the PO was physically or electronically printed, rather than merely approved.
- Document identifiers: PO_NUMBER, PO_REVISION, RELEASE_NUMBER, RELEASE_REVISION, DOCUMENT_TYPE.
- Lifecycle dates: CREATION_DATE, APPROVED_DATE, PRINTED_DATE.
- Parties: REQUESTOR_PERSON_ID, REQUESTOR_NAME, BUYER_PERSON_ID, BUYER_NAME, VENDOR_ID, VENDOR_NAME.
- Ordered amounts: UNIT, UNIT_PRICE, QUANTITY_ORDERED, AMOUNT_ORDERED, plus ORIGINAL_QUANTITY_ORDERED and ORIGINAL_AMOUNT_ORDERED.
- Commitment movement: QUANTITY_CANCELLED, AMOUNT_CANCELLED, QUANTITY_DELIVERED, AMOUNT_DELIVERED, QUANTITY_INVOICED, AMOUNT_INVOICED.
- Open balances: QUANTITY_OUTSTANDING_DELIVERY, AMOUNT_OUTSTANDING_DELIVERY, QUANTITY_OUTSTANDING_INVOICE, DENOM_AMT_OUTSTANDING_INVOICE, AMOUNT_OUTSTANDING_INVOICE.
- Currency context: DENOM_CURRENCY_CODE, ACCT_CURRENCY_CODE, ACCT_RATE_DATE, ACCT_RATE_TYPE, ACCT_EXCHANGE_RATE.
- Project attribution: PROJECT_NUMBER, PROJECT_NAME, TASK_NUMBER, TASK_NAME, EXPENDITURE_TYPE, EXPENDITURE_CATEGORY, REVENUE_CATEGORY, EXPENDITURE_ITEM_DATE, EXPENDITURE_ORGANIZATION.
- Primary keys/IDs: PO_HEADER_ID, PO_RELEASE_ID, PO_LINE_ID, PO_LINE_LOCATION_ID, PO_DISTRIBUTION_ID, PROJECT_ID, TASK_ID, EXPENDITURE_ORGANIZATION_ID.
Common Use Cases and Queries
Typical scenarios include commitment reconciliations, "uninvoiced PO" reports, buyer/requestor activity analysis, and currency exposure reviews. Because the view is filter-ready, queries can be narrowed by project, date, or currency without touching base purchasing tables.
- Outstanding project commitments by project:
SELECT project_number, po_number, printed_date, amount_outstanding_invoice FROM pa_proj_appr_po_distributions WHERE amount_outstanding_invoice > 0; - Printed but uninvoiced POs within a period (uses printed_date):
SELECT po_number, vendor_name, printed_date, acct_currency_code, amount_outstanding_invoice FROM pa_proj_appr_po_distributions WHERE printed_date BETWEEN :from_date AND :to_date; - Buyer/requestor activity on a project or task:
SELECT buyer_name, requestor_name, SUM(amount_ordered) FROM pa_proj_appr_po_distributions WHERE project_number = :project GROUP BY buyer_name, requestor_name; - Currency exposure analysis:
SELECT denom_currency_code, acct_currency_code, SUM(denom_amt_outstanding_invoice), SUM(amount_outstanding_invoice) FROM pa_proj_appr_po_distributions GROUP BY denom_currency_code, acct_currency_code;
These queries leverage the view's dual-currency columns and the PRINTED_DATE field, making it suitable for both functional reporting and integration extracts.
-
View: PA_PROJ_APPR_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_APPR_PO_DISTRIBUTIONS, object_name:PA_PROJ_APPR_PO_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: Shows all approved and uninvoiced purchase order distributions, which are project related. , implementation_dba_data: APPS.PA_PROJ_APPR_PO_DISTRIBUTIONS ,
-
View: PA_PROJ_PEND_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PEND_PO_DISTRIBUTIONS, object_name:PA_PROJ_PEND_PO_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: Shows project related unapproved, uninvoiced purchase order distributions , implementation_dba_data: APPS.PA_PROJ_PEND_PO_DISTRIBUTIONS ,
-
View: PA_PROJ_PEND_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PEND_PO_DISTRIBUTIONS, object_name:PA_PROJ_PEND_PO_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: Shows project related unapproved, uninvoiced purchase order distributions , implementation_dba_data: APPS.PA_PROJ_PEND_PO_DISTRIBUTIONS ,
-
View: PA_PROJ_APPR_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_APPR_PO_DISTRIBUTIONS, object_name:PA_PROJ_APPR_PO_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: Shows all approved and uninvoiced purchase order distributions, which are project related. , implementation_dba_data: APPS.PA_PROJ_APPR_PO_DISTRIBUTIONS ,
-
View: PA_COMMITMENT_TXNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.PA_COMMITMENT_TXNS_V PA.PA_COMMITMENT_TXNS_V, object_name:PA_COMMITMENT_TXNS_V, status:VALID, product: PA - Projects , description: A view of all oustanding project-related commitment costs. , implementation_dba_data: APPS.PA_COMMITMENT_TXNS_V ,
-
View: PA_COMMITMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.PA_COMMITMENTS_V PA.PA_COMMITMENTS_V, object_name:PA_COMMITMENTS_V, status:VALID, product: PA - Projects , description: A view of all oustanding project-related commitment costs , implementation_dba_data: APPS.PA_COMMITMENTS_V ,
-
View: PA_COMMITMENT_TXNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.PA_COMMITMENT_TXNS_V PA.PA_COMMITMENT_TXNS_V, object_name:PA_COMMITMENT_TXNS_V, status:VALID, product: PA - Projects , description: A view of all oustanding project-related commitment costs. , implementation_dba_data: APPS.PA_COMMITMENT_TXNS_V ,
-
View: PA_PROJ_PO_DISTRIBUTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PO_DISTRIBUTIONS_V, object_name:PA_PROJ_PO_DISTRIBUTIONS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_PO_DISTRIBUTIONS_V ,
-
View: PA_PROJ_PO_DISTRIBUTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PO_DISTRIBUTIONS, object_name:PA_PROJ_PO_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: View for project-related uninvoiced purchase order distributions. The non-recoverable tax is added to the amount outstanding invoice values. , implementation_dba_data: APPS.PA_PROJ_PO_DISTRIBUTIONS ,
-
View: PA_PROJ_PO_DISTRIBUTIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PO_DISTRIBUTIONS, object_name:PA_PROJ_PO_DISTRIBUTIONS, status:VALID, product: PA - Projects , description: View for project-related uninvoiced purchase order distributions. The non-recoverable tax is added to the amount outstanding invoice values. , implementation_dba_data: APPS.PA_PROJ_PO_DISTRIBUTIONS ,