Search Results cmt_line_number
Overview
APPS.PA_STATUS_CMT_BASE_V is a reporting and integration view within the Oracle E-Business Suite Projects (PA) module. It consolidates commitment (CMT) transaction information across project, task, and resource-level hierarchies into a single, uniformly structured result set. The view functions as the base consolidation layer for commitment status reporting, presenting purchasing commitments such as purchase orders and purchase requisitions in a form suitable for Project Status Inquiry, cost and commitment analysis, and downstream reporting or interface extraction.
The view is defined as a UNION ALL of three component views — PA_STATUS_PROJ_CMT_BASE_V, PA_STATUS_TASK_CMT_BASE_V, and PA_STATUS_RSRC_CMT_BASE_V — each of which exposes commitment data at a different level of project detail. Because the union preserves all rows without duplicate elimination, a commitment appears at the granularity supplied by whichever component view contributes it. The column list is identical across all branches, guaranteeing a stable projection for consumers. The identifier most frequently used to locate a specific commitment is CMT_NUMBER, which carries the source document number (for example, a purchase order or requisition number) and is typically paired with CMT_LINE_NUMBER to identify the exact commitment line.
Underlying Base Objects
The ETRM metadata documents the following referenced objects: HR_GENERAL (PACKAGE), HR_SECURITY (PACKAGE), PA_STATUS (PACKAGE), PA_STATUS_PROJ_CMT_BASE_V (VIEW), PA_STATUS_RSRC_CMT_BASE_V (VIEW), and PA_STATUS_TASK_CMT_BASE_V (VIEW). The three PA_STATUS_*_CMT_BASE_V views are the direct sources combined by UNION ALL. The remaining objects are referenced indirectly through those component views or through security and status resolution logic.
- PA_STATUS_PROJ_CMT_BASE_V — supplies project-level commitment rows.
- PA_STATUS_TASK_CMT_BASE_V — supplies task-level commitment rows.
- PA_STATUS_RSRC_CMT_BASE_V — supplies resource-list-member-level commitment rows.
- PA_STATUS (PACKAGE) — provides status derivation logic used to determine the state of a commitment or project.
- HR_SECURITY (PACKAGE) and HR_GENERAL (PACKAGE) — support organizational and person-level security and name resolution applied within the underlying views.
Because the view depends on these packages and views, its runtime behavior inherits any security filtering and status logic implemented in the component views.
Key Columns
The projection is consistent across all branches of the union. The columns most relevant to typical reporting are:
- CMT_NUMBER — the commitment document number; the primary lookup key for users searching commitment records.
- CMT_LINE_NUMBER — the line within the commitment document.
- PROJECT_ID, TASK_ID, RESOURCE_LIST_MEMBER_ID — the project, task, and resource keys that establish the reporting grain.
- TXN_ACCUM_ID — the transaction accumulator identifier linking the commitment to project cost accumulation.
- VENDOR_ID, VENDOR_NAME — the supplier associated with the commitment.
- CMT_TYPE_CODE, CMT_TYPE_CODE_M — commitment type code and its meaning.
- TOT_CMT_RAW_COST, TOT_CMT_BURDENED_COST — total raw and burdened commitment amounts.
- CMT_CREATION_DATE, CMT_APPROVED_DATE, CMT_PROMISED_DATE, CMT_NEED_BY_DATE — key dates in the commitment lifecycle.
- CMT_APPROVED_FLAG, QUANTITY_OUTSTANDING, UNIT_OF_MEASURE — approval status and outstanding quantity.
- Currency and rate columns — denom_currency_code, denom_raw_cost, denom_burdened_cost, acct_* columns, receipt_* columns, and project_* columns, including rate dates, rate types, and exchange rates for denomination, accounting, receipt, and project currencies.
- CMT_REJECTION_CODE — reason code when a commitment is rejected.
Common Use Cases and Queries
A frequent requirement is to retrieve all commitments for a given document number. The following query returns commitment details across all levels:
SELECT project_id, task_id, cmt_number, cmt_line_number, vendor_name, tot_cmt_raw_cost, tot_cmt_burdened_cost, cmt_approved_flag FROM apps.pa_status_cmt_base_v WHERE cmt_number = :p_cmt_number;
Reporting by project and task is equally common, aggregating burdened commitment amounts:
SELECT project_id, task_id, SUM(tot_cmt_burdened_cost) tot_burdened FROM apps.pa_status_cmt_base_v WHERE project_id = :p_project_id GROUP BY project_id, task_id;
Commitments pending approval or with outstanding quantities are typically isolated using the approval flag and quantity column:
SELECT cmt_number, cmt_line_number, vendor_name, quantity_outstanding, unit_of_measure FROM apps.pa_status_cmt_base_v WHERE cmt_approved_flag = 'N' AND quantity_outstanding > 0;
Because the view unions project-, task-, and resource-level rows, results should be filtered or aggregated according to the desired reporting grain to avoid double counting when the same commitment is represented at more than one level.
-
VIEW: APPS.PA_STATUS_CMT_BASE_V
12.2.2
-
VIEW: APPS.PA_ACCUM_CMT_TXNS_V
12.2.2
-
VIEW: APPS.PA_ACCUM_CMT_TXNS_V
12.1.1
-
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: APPS.PA_STATUS_CMT_BASE_V
12.1.1
-
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: GMS_COMMITMENT_TXNS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_TXNS_V, object_name:GMS_COMMITMENT_TXNS_V, status:VALID, product: GMS - Grants Accounting , description: A view of all oustanding project-related commitment costs. , implementation_dba_data: APPS.GMS_COMMITMENT_TXNS_V ,
-
View: GMS_COMMITMENT_TXNS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENT_TXNS_V, object_name:GMS_COMMITMENT_TXNS_V, status:VALID, product: GMS - Grants Accounting , description: A view of all oustanding project-related commitment costs. , implementation_dba_data: APPS.GMS_COMMITMENT_TXNS_V ,
-
VIEW: APPS.GMS_COMMITMENT_TXNS_V
12.2.2
-
VIEW: APPS.GMS_COMMITMENT_TXNS_V
12.1.1
-
VIEW: PA.PA_COMMITMENT_TXNS#
12.2.2
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.GMS_ENC_PSI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENC_PSI_V, object_name:GMS_ENC_PSI_V, status:VALID,
-
VIEW: APPS.GMS_ENC_PSI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_ENC_PSI_V, object_name:GMS_ENC_PSI_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
VIEW: APPS.CST_PROJMFG_CMT_STUB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PROJMFG_CMT_STUB_V, object_name:CST_PROJMFG_CMT_STUB_V, status:VALID,
-
VIEW: PA.PA_COMMITMENT_TXNS#
12.2.2
owner:PA, object_type:VIEW, object_name:PA_COMMITMENT_TXNS#, status:VALID,
-
VIEW: APPS.GMS_COMMITMENTS_OVERRIDE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENTS_OVERRIDE_V, object_name:GMS_COMMITMENTS_OVERRIDE_V, status:VALID,
-
VIEW: APPS.CST_PROJMFG_CMT_STUB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_PROJMFG_CMT_STUB_V, object_name:CST_PROJMFG_CMT_STUB_V, status:VALID,
-
VIEW: APPS.GMS_COMMITMENTS_OVERRIDE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_COMMITMENTS_OVERRIDE_V, object_name:GMS_COMMITMENTS_OVERRIDE_V, status:VALID,
-
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 ,
-
TABLE: PA.PA_COMMITMENT_TXNS_TMP
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_COMMITMENT_TXNS_TMP, object_name:PA_COMMITMENT_TXNS_TMP, status:VALID,
-
TABLE: PA.PA_COMMITMENT_TXNS_TMP
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_COMMITMENT_TXNS_TMP, object_name:PA_COMMITMENT_TXNS_TMP, status:VALID,
-
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: 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 ,