Search Results po_amount_delivered
Overview
The APPS.PA_PROJ_COMMITMENT_STATUS view is a public Oracle E-Business Suite database object that consolidates project commitment cost information for reporting and integration purposes. Its FND Design Data identifier is PA.PA_PROJ_COMMITMENT_STATUS, and it resides in the APPS schema with a VALID status. The view is classified as public, meaning it may be used for custom reporting or other data requirements without restriction. It presents project commitment costs spanning the full procurement and payables lifecycle, including requisitions, purchase orders, and pending vendor invoices. The view is owned by APPS and is defined over project accounting base objects, so it reflects the commitment accounting model maintained by Oracle Project Costing rather than raw transactional tables.
Underlying Base Objects
The view is defined primarily over APPS.PA_PROJ_COMMITMENT_BASE_VIEW, a view object that supplies the underlying commitment aggregation. The ETRM metadata documents the following referenced base objects: AP_INVOICES_PKG (PACKAGE), FND_PROFILE (PACKAGE), HR_GENERAL (PACKAGE), HR_SECURITY (PACKAGE), PA_CMT_UTILS (PACKAGE), PA_CURRENCY (PACKAGE), PA_FUNDS_CONTROL_UTILS (PACKAGE), PA_MULTI_CURRENCY (PACKAGE), PA_PJC_CWK_UTILS (PACKAGE), PA_PROJ_COMMITMENT_BASE_VIEW (VIEW), PA_TASK_UTILS (PACKAGE), and PA_UTILS4 (PACKAGE). Several of these packages supply helper logic for currency conversion, security, and commitment calculation. Notably, HR_SECURITY and HR_GENERAL indicate that the view applies organizational security, so rows returned are filtered according to the user's access. PA_PROJ_COMMITMENT_STATUS is not referenced by any other database object, confirming it serves strictly as a reporting endpoint rather than an intermediate dependency.
Key Columns
- PROJECT_NUMBER (VARCHAR2, 25) — Number of the project charged.
- PROJECT_NAME (VARCHAR2, 30) — Name of the project charged.
- PROJECT_ID (NUMBER, 15) — Identifier of the project charged.
- REQ_AMOUNT_OPEN — Open requisition amount, defined as approved, unpurchased requisitions.
- PO_AMOUNT_ORDERED — PO amount ordered, defined as the amount originally ordered less the amount cancelled.
- PO_AMOUNT_DELIVERED — PO amount delivered.
- PO_AMOUNT_OPEN — PO amount open, defined as the approved, uninvoiced PO amount.
- AP_AMOUNT_PENDING — Pending invoice amount.
The user specifically searched for PO_AMOUNT_ORDERED, which represents the net ordered commitment on a purchase order after cancellations are applied. It is the figure most commonly used to compare original buying intent against delivery and invoicing progress.
Common Use Cases and Queries
Typical applications include commitment reporting, budget-versus-commitment analysis, and feeds into external data warehouses. Because the view aggregates requisition, PO, and pending invoice amounts, it supports rapid identification of open commitments without joining multiple transactional tables. A simple query returns all columns for each project:
SELECT PROJECT_NUMBER, PROJECT_NAME, PROJECT_ID, REQ_AMOUNT_OPEN, PO_AMOUNT_ORDERED, PO_AMOUNT_DELIVERED, PO_AMOUNT_OPEN, AP_AMOUNT_PENDING FROM APPS.PA_PROJ_COMMITMENT_STATUS;
A focused query isolates ordering activity for a specific project:
SELECT PROJECT_NUMBER, PO_AMOUNT_ORDERED, PO_AMOUNT_DELIVERED, PO_AMOUNT_OPEN FROM APPS.PA_PROJ_COMMITMENT_STATUS WHERE PROJECT_NUMBER = :project_number;
Because HR security is applied through the referenced packages, results are automatically restricted to the projects accessible to the querying user. This makes the view appropriate for self-service reporting as well as scheduled extraction programs.
-
VIEW: APPS.PA_PROJ_COMMITMENT_STATUS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COMMITMENT_STATUS, object_name:PA_PROJ_COMMITMENT_STATUS, status:VALID,
-
View: PA_PROJ_COMMITMENT_STATUS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COMMITMENT_STATUS, object_name:PA_PROJ_COMMITMENT_STATUS, status:VALID, product: PA - Projects , description: View of project commitment costs, including requisitions, purchase orders, and pending vendor invoices , implementation_dba_data: APPS.PA_PROJ_COMMITMENT_STATUS ,
-
VIEW: APPS.PA_PROJ_COMMITMENT_BASE_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COMMITMENT_BASE_VIEW, object_name:PA_PROJ_COMMITMENT_BASE_VIEW, status:VALID,
-
VIEW: APPS.PA_PROJ_COMMITMENT_STATUS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COMMITMENT_STATUS, object_name:PA_PROJ_COMMITMENT_STATUS, status:VALID,
-
VIEW: APPS.PA_PROJ_COMMITMENT_BASE_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COMMITMENT_BASE_VIEW, object_name:PA_PROJ_COMMITMENT_BASE_VIEW, status:VALID,
-
View: PA_PROJ_COMMITMENT_STATUS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COMMITMENT_STATUS, object_name:PA_PROJ_COMMITMENT_STATUS, status:VALID, product: PA - Projects , description: View of project commitment costs, including requisitions, purchase orders, and pending vendor invoices , implementation_dba_data: APPS.PA_PROJ_COMMITMENT_STATUS ,
-
View: PA_PROJ_COMMITMENT_BASE_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COMMITMENT_BASE_VIEW, object_name:PA_PROJ_COMMITMENT_BASE_VIEW, status:VALID, product: PA - Projects , description: Base view of project commitment reporting view PA_PROJ_COMMITMENT_STATUS , implementation_dba_data: APPS.PA_PROJ_COMMITMENT_BASE_VIEW ,
-
View: PA_PROJ_COMMITMENT_BASE_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_COMMITMENT_BASE_VIEW, object_name:PA_PROJ_COMMITMENT_BASE_VIEW, status:VALID, product: PA - Projects , description: Base view of project commitment reporting view PA_PROJ_COMMITMENT_STATUS , implementation_dba_data: APPS.PA_PROJ_COMMITMENT_BASE_VIEW ,
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2