Search Results cmt_creation_date
Overview
PA_ACCUM_CMT_TXNS_V is an APPS-owned database view in the Oracle E-Business Suite Projects (PA) module. It presents project-, task-, and resource-level commitment transaction data in a single consolidated result set, including commitment-line attributes such as vendor, commitment type, amounts, dates, and outstanding quantities. The object is defined in both Oracle EBS 12.1.1 and 12.2.2 and carries a status of VALID, exposing it as a supported read-only interface for reporting and integration.
Commitments in Oracle Projects represent externally sourced obligations, typically purchase orders and requisitions originating in Oracle Purchasing, that are associated with a project, task, or resource. This view consolidates accumulated commitment transactions so that cost and financial reporting can retrieve commitment information without querying multiple base views individually. Its principal role is as a reporting and data-extraction layer; because the view is defined with a UNION of three underlying base views, it returns the union of project-level, task-level, and resource-level commitment records.
Underlying Base Objects
The documented definition of PA_ACCUM_CMT_TXNS_V is a UNION of three base views in the APPS schema, each expressed through an identical column list:
- PA_ACCUM_PROJ_CMT_TXNS_BASE_V — project-level accumulated commitment transactions.
- PA_ACCUM_TASK_CMT_TXNS_BASE_V — task-level accumulated commitment transactions.
- PA_ACCUM_RSRC_CMT_TXNS_BASE_V — resource-level accumulated commitment transactions.
The documented metadata also lists HR_GENERAL (PACKAGE) and HR_SECURITY (PACKAGE) among the referenced base objects. This indicates that the view's access path is subject to Oracle HR security, so row visibility is filtered according to the operating user's organization and responsibility security profile as resolved through the HR security packages. The view therefore inherits Projects commitment accumulation logic while enforcing organizational security at query time.
Key Columns
Because all three base views expose an identical column list, the columns returned by PA_ACCUM_CMT_TXNS_V are consistent regardless of the source level.
- PROJECT_ID, TASK_ID, RESOURCE_LIST_MEMBER_ID — the project, task, and resource identifiers to which the commitment is attributed.
- TXN_ACCUM_ID — the accumulated transaction identifier linking the record to the commitment accumulation.
- VENDOR_ID, VENDOR_NAME — the supplier associated with the commitment.
- CMT_TYPE_CODE, CMT_TYPE_CODE_M — the commitment type code and its meaning.
- CMT_NUMBER, CMT_LINE_NUMBER — the source commitment document number and line.
- TOT_CMT_RAW_COST, TOT_CMT_BURDENED_COST — total commitment amounts in raw and burdened cost terms.
- CMT_CREATION_DATE, CMT_APPROVED_DATE, CMT_PROMISED_DATE, CMT_NEED_BY_DATE — key commitment lifecycle dates.
- CMT_APPROVED_FLAG — indicates whether the commitment is approved.
- QUANTITY_OUTSTANDING, UNIT_OF_MEASURE, AMOUNT_DELIVERED — open quantity, its unit of measure, and the amount delivered.
- EXPENDITURE_TYPE, ORGANIZATION_ID, EXPENDITURE_ORG_NAME — expenditure classification and owning organization.
- TASK_NUMBER, TASK_NAME, DESCRIPTION — descriptive task and commitment attributes.
- CMT_REQUESTOR_NAME, CMT_BUYER_NAME — the requisition requestor and purchasing buyer.
- TRANSACTION_SOURCE, TRANSACTION_SOURCE_M — the originating source of the transaction and its meaning.
Common Use Cases and Queries
Typical scenarios include project commitment reporting, reconciliation of commitments against expenditures, and feeds into project cost or funds-availability reporting. Because row-level access is governed by HR security, queries should be executed under an appropriately privileged responsibility and, where required, with MO security context initialized.
A representative query listing outstanding commitments by project and task:
- SELECT project_id, task_id, vendor_name, cmt_number, cmt_line_number, tot_cmt_raw_cost, tot_cmt_burdened_cost, quantity_outstanding, cmt_approved_flag FROM pa_accum_cmt_txns_v WHERE project_id = :p_project_id ORDER BY cmt_creation_date;
- SELECT transaction_source, transaction_source_m, COUNT(*) FROM pa_accum_cmt_txns_v GROUP BY transaction_source, transaction_source_m;
- SELECT vendor_name, SUM(tot_cmt_burdened_cost) FROM pa_accum_cmt_txns_v WHERE cmt_approved_flag = 'Y' GROUP BY vendor_name;
The view should be treated as read-only; commitment data is maintained through Oracle Projects and Oracle Purchasing processes, not through this view.
-
View: PA_ACCUM_CMT_TXNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACCUM_CMT_TXNS_V, object_name:PA_ACCUM_CMT_TXNS_V, status:VALID, product: PA - Projects , description: This view retrieves project, task and resource related commitments, including commitment-line attribute , implementation_dba_data: APPS.PA_ACCUM_CMT_TXNS_V ,
-
View: PA_ACCUM_CMT_TXNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACCUM_CMT_TXNS_V, object_name:PA_ACCUM_CMT_TXNS_V, status:VALID, product: PA - Projects , description: This view retrieves project, task and resource related commitments, including commitment-line attribute , implementation_dba_data: APPS.PA_ACCUM_CMT_TXNS_V ,
-
View: PA_STATUS_CMT_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_CMT_BASE_V, object_name:PA_STATUS_CMT_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted - Retrofitted , implementation_dba_data: APPS.PA_STATUS_CMT_BASE_V ,
-
View: PA_STATUS_CMT_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_CMT_BASE_V, object_name:PA_STATUS_CMT_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted - Retrofitted , implementation_dba_data: APPS.PA_STATUS_CMT_BASE_V ,
-
View: PA_ACCUM_RSRC_CMT_TXNS_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACCUM_RSRC_CMT_TXNS_BASE_V, object_name:PA_ACCUM_RSRC_CMT_TXNS_BASE_V, status:VALID, product: PA - Projects , description: This view retrieves project-task-resource level commitments, including commitment-line attributes l - Retrofitted , implementation_dba_data: APPS.PA_ACCUM_RSRC_CMT_TXNS_BASE_V ,
-
View: PA_STATUS_COMMITMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_COMMITMENTS_V, object_name:PA_STATUS_COMMITMENTS_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_STATUS_COMMITMENTS_V ,
-
View: PA_STATUS_TASK_CMT_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_CMT_BASE_V, object_name:PA_STATUS_TASK_CMT_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_TASK_CMT_BASE_V ,
-
View: PA_ACCUM_TASK_CMT_TXNS_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACCUM_TASK_CMT_TXNS_BASE_V, object_name:PA_ACCUM_TASK_CMT_TXNS_BASE_V, status:VALID, product: PA - Projects , description: This view retrieves project-task level commitments, including commitment-line attributes like commi - Retrofitted , implementation_dba_data: APPS.PA_ACCUM_TASK_CMT_TXNS_BASE_V ,
-
View: PA_ACCUM_PROJ_CMT_TXNS_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACCUM_PROJ_CMT_TXNS_BASE_V, object_name:PA_ACCUM_PROJ_CMT_TXNS_BASE_V, status:VALID, product: PA - Projects , description: This view retrieves project level commitments, including commitment-line attributes like commitment - Retrofitted , implementation_dba_data: APPS.PA_ACCUM_PROJ_CMT_TXNS_BASE_V ,
-
View: PA_ACCUM_TASK_CMT_TXNS_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACCUM_TASK_CMT_TXNS_BASE_V, object_name:PA_ACCUM_TASK_CMT_TXNS_BASE_V, status:VALID, product: PA - Projects , description: This view retrieves project-task level commitments, including commitment-line attributes like commi - Retrofitted , implementation_dba_data: APPS.PA_ACCUM_TASK_CMT_TXNS_BASE_V ,
-
View: PA_STATUS_COMMITMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_COMMITMENTS_V, object_name:PA_STATUS_COMMITMENTS_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_STATUS_COMMITMENTS_V ,
-
View: PA_ACCUM_RSRC_CMT_TXNS_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACCUM_RSRC_CMT_TXNS_BASE_V, object_name:PA_ACCUM_RSRC_CMT_TXNS_BASE_V, status:VALID, product: PA - Projects , description: This view retrieves project-task-resource level commitments, including commitment-line attributes l - Retrofitted , implementation_dba_data: APPS.PA_ACCUM_RSRC_CMT_TXNS_BASE_V ,
-
View: PAFV_COMMITMENTS_OBSOLETE
12.1.1
product: PA - Projects , description: Business view to show commitments for a project. , implementation_dba_data: Not implemented in this database ,
-
View: PAFV_COMMITMENTS_OBSOLETE
12.2.2
product: PA - Projects , description: Business view to show commitments for a project. , implementation_dba_data: Not implemented in this database ,
-
View: PA_STATUS_PROJ_CMT_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_PROJ_CMT_BASE_V, object_name:PA_STATUS_PROJ_CMT_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted , implementation_dba_data: APPS.PA_STATUS_PROJ_CMT_BASE_V ,
-
View: PA_ACCUM_PROJ_CMT_TXNS_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ACCUM_PROJ_CMT_TXNS_BASE_V, object_name:PA_ACCUM_PROJ_CMT_TXNS_BASE_V, status:VALID, product: PA - Projects , description: This view retrieves project level commitments, including commitment-line attributes like commitment - Retrofitted , implementation_dba_data: APPS.PA_ACCUM_PROJ_CMT_TXNS_BASE_V ,
-
View: PA_STATUS_PROJ_CMT_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_PROJ_CMT_BASE_V, object_name:PA_STATUS_PROJ_CMT_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only - Retrofitted , implementation_dba_data: APPS.PA_STATUS_PROJ_CMT_BASE_V ,
-
View: PA_STATUS_TASK_CMT_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_TASK_CMT_BASE_V, object_name:PA_STATUS_TASK_CMT_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_TASK_CMT_BASE_V ,
-
View: PA_STATUS_RSRC_CMT_BASE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_CMT_BASE_V, object_name:PA_STATUS_RSRC_CMT_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_CMT_BASE_V ,
-
View: PAFV_COMMITMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_COMMITMENTS, object_name:PAFV_COMMITMENTS, status:VALID, product: PA - Projects , description: Business view to show commitments for a project. Business view to show commitments for a project. , implementation_dba_data: APPS.PAFV_COMMITMENTS ,
-
View: PA_STATUS_RSRC_CMT_BASE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STATUS_RSRC_CMT_BASE_V, object_name:PA_STATUS_RSRC_CMT_BASE_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_STATUS_RSRC_CMT_BASE_V ,
-
View: PAFV_COMMITMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_COMMITMENTS, object_name:PAFV_COMMITMENTS, status:VALID, product: PA - Projects , description: Business view to show commitments for a project. Business view to show commitments for a project. , implementation_dba_data: APPS.PAFV_COMMITMENTS ,
-
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_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_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 ,