Search Results pji_ac_pln_by_task_v
Overview
PJI_AC_PLN_BY_TASK_V is an APPS-owned database view in the Oracle E-Business Suite Project Intelligence (PJI) module. It exposes budgeted cost and revenue amounts at the task level, aggregated across both Oracle Projects (PA) and General Ledger (GL) accounting periods. The view is intended primarily for external project management or planning systems that import financial data from Oracle Projects, allowing those systems to reconcile plan-versus-actual figures without querying the underlying fact tables directly. Because it presents a single denormalized row per project/task/plan type/plan version combination, it simplifies downstream extraction and reporting for tools that require labor hours, cost, revenue, and commitment metrics in one query. The view is marked VALID in the ETRM metadata for release 12.2.2 and applies equally to 12.1.1 deployments where the PJI schema is present.
Underlying Base Objects
The documented referenced base objects are PA_PROJECTS_ALL (referenced through a synonym) and PJI_FP_XBS_ACCUM_F (also accessed through a synonym). PJI_FP_XBS_ACCUM_F is the Project Intelligence financial plan cross-business-structure accumulation fact table, which stores the pre-aggregated plan amounts (cost, revenue, quantities, commitments) that the view later rolls up. PA_PROJECTS_ALL supplies project header context, ensuring that only valid projects are represented. The view text groups the fact records by PROJECT_ID, PROJECT_ELEMENT_ID (task), PLAN_TYPE_ID, and PLAN_VERSION_ID, and applies SUM aggregation across the measure columns. This design means the view returns a consolidated plan-by-task dataset rather than the granular rows held in the fact table.
Key Columns
- PROJECT_ID – Identifier of the project, joined to PA_PROJECTS_ALL.
- TASK_ID – The project element (task) identifier (PROJECT_ELEMENT_ID in the base fact).
- PLAN_TYPE_ID / PLAN_VERSION_ID – Classify the plan and its version, enabling comparison of budget versions.
- REVENUE, RAW_COST, BURDENED_COST – Total planned revenue and raw/burdened cost amounts.
- CAPITAL_RAW_COST, CAPITAL_BURDENED_COST – Capitalizable cost components.
- LABOR_HRS / QUANTITY / CMT_QUANTITY – Planned labor hours (the value commonly surfaced when users search on "etc_labor_hrs"-type metrics).
- BILLABLE_QUANTITY / BILL_LABOR_HRS – Billable labor hours.
- LABOR_RAW_COST, LABOR_BRDN_COST, LABOR_REVENUE, BILL_LABOR_RAW_COST, BILL_LABOR_BRDN_COST – Labor-specific cost and revenue breakdowns.
- EQUIPMENT_HOURS, BILLABLE_EQUIPMENT_HOURS, EQUIPMENT_RAW_COST, EQUIPMENT_BRDN_COST – Equipment quantities and costs.
- SUP_INV_COMMITTED_COST, PO_COMMITTED_COST, PR_COMMITTED_COST, OTH_COMMITTED_COST, CMT_BURDENED_COST – Commitments by source and total burdened commitment.
- ACT_LABOR_HRS, ACT_EQUIP_HRS, ACT_LABOR_BRDN_COST, ACT_EQUIP_BRDN_COST, ACT_BRDN_COST, ACT_RAW_COST, ACT_REVENUE – Actual amounts for plan-versus-actual comparison.
- ETC_LABOR_HRS, ETC_EQUIP_HRS, ETC_LABOR_BRDN_COST – Estimate-to-complete metrics, where the ETC_ prefixed columns appear.
Common Use Cases and Queries
Typical usage centers on extracting budget/plan data for external systems, reporting labor hour consumption, and reconciling plan versus actual. A representative query retrieves planned and ETC labor hours per task:
SELECT project_id, task_id, plan_type_id, plan_version_id, labor_hrs, etc_labor_hrs, revenue, burdened_cost FROM apps.pji_ac_pln_by_task_v WHERE project_id = :project_id;
For plan-versus-actual analysis, consumers select both the plan columns and the ACT_ columns in the same row. For commitment reporting, the CMT_BURDENED_COST and the four committed-cost columns supply a pre-summed commitment figure. Because all measures are already aggregated by the view, external integrations can apply filters on project, task, or plan version and load results directly, avoiding joins to the underlying PJI_FP_XBS_ACCUM_F fact table.
-
View: PJI_AC_PLN_BY_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_AC_PLN_BY_TASK_V, object_name:PJI_AC_PLN_BY_TASK_V, status:VALID, product: PJI - Project Intelligence , description: This view displays budgeted cost and revenue for PA and GL periods by task. The view is used by external project management systems that import financial data from Oracle Projects. , implementation_dba_data: APPS.PJI_AC_PLN_BY_TASK_V ,
-
View: PJI_AC_PLN_BY_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_AC_PLN_BY_TASK_V, object_name:PJI_AC_PLN_BY_TASK_V, status:VALID, product: PJI - Project Intelligence(Obsolete) , description: This view displays budgeted cost and revenue for PA and GL periods by task. The view is used by external project management systems that import financial data from Oracle Projects. , implementation_dba_data: APPS.PJI_AC_PLN_BY_TASK_V ,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.PJI_FP_XBS_ACCUM_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PJI_FP_XBS_ACCUM_F, status:VALID,
-
SYNONYM: APPS.PJI_FP_XBS_ACCUM_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PJI_FP_XBS_ACCUM_F, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.PJI_AC_PLN_BY_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_AC_PLN_BY_TASK_V, object_name:PJI_AC_PLN_BY_TASK_V, status:VALID,
-
VIEW: APPS.PJI_AC_PLN_BY_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJI.PJI_AC_PLN_BY_TASK_V, object_name:PJI_AC_PLN_BY_TASK_V, status:VALID,
-
SYNONYM: APPS.PA_PROJECTS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS_ALL, status:VALID,
-
SYNONYM: APPS.PA_PROJECTS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECTS_ALL, status:VALID,
-
eTRM - PJI Tables and Views
12.2.2
description: This is an temporary table that is used to store XBS denorm data by the Refresh/Update Project Performance Data. This is a global temporary table. ,
-
eTRM - PJI Tables and Views
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PJI Tables and Views
12.2.2
description: This is an temporary table that is used to store XBS denorm data by the Refresh/Update Project Performance Data. This is a global temporary table. ,
-
eTRM - PJI Tables and Views
12.1.1