Search Results pa_proj_task_prog_hist_v
Overview
PA_PROJ_TASK_PROG_HIST_V is a Projects (PA) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes project and task progress history by combining project definitions, workplan element versions, percent-complete records, and rolled-up progress attributes into a single reporting structure. The view is primarily used for progress reporting, project status dashboards, and integration extracts where historical and current progress values for tasks and structures must be presented together.
Because it draws from versioned project elements and progress rollup tables, the view is well suited to queries that require the latest computed percentage complete, scheduled and actual dates, and the effective rolled-up percent complete across the work breakdown structure. It also surfaces lookup meanings for work quantity items and units, making it useful for out-of-the-box reporting without additional joins to lookup tables.
Underlying Base Objects
The view is defined over the following documented objects:
- PA_PROJECTS_ALL — project header attributes such as name, segment, and long name.
- PA_PROJ_ELEMENTS — the project/task element definitions, including name, number, status, and work quantity item codes.
- PA_PROJ_ELEMENT_VERSIONS — versioned elements providing WBS number, WBS level, and display sequence.
- PA_PROJ_ELEM_VER_SCHEDULE — schedule details, milestone and critical flags, planned effort, and scheduled start/finish dates.
- PA_PROJ_ELEM_VER_STRUCTURE — structure version data used to resolve structure names and version numbers.
- PA_PERCENT_COMPLETES — percent complete records, published flags, comments, and record version numbers.
- PA_PROGRESS_ROLLUP — rolled-up progress values such as effective rollup percent complete, actual and estimated dates, and remaining effort.
- PA_OBJECT_RELATIONSHIPS — relationships linking progress records to their owning objects.
- PA_PROJECT_STATUSES, PA_PROJ_STRUCTURE_TYPES, PA_TASK_TYPES — reference and classification data.
- PA_PROJ_ELEMENTS_UTILS — package supplying helper functions for summary-task checks and lookup meanings.
The view joins these objects to produce a denormalized projection of element-level progress, keyed primarily by PROJECT_ID, PROJ_ELEMENT_ID, and ELEMENT_VERSION_ID.
Key Columns
- PROJECT_ID, NAME, SEGMENT1, LONG_NAME — project identification attributes.
- PROJ_ELEMENT_ID, ELEMENT_VERSION_ID — identifiers for the task or structure and its version.
- OBJECT_TYPE — indicates whether the row represents a PA_TASKS or PA_STRUCTURES element; this drives conditional columns such as task name versus structure name.
- WBS_NUMBER, WBS_LEVEL, DISPLAY_SEQUENCE — hierarchical placement within the workplan.
- SUMMARY_ELEMENT_FLAG — derived using PA_PROJ_ELEMENTS_UTILS.IS_SUMMARY_TASK_OR_STRUCTURE to identify summary elements.
- MILESTONE_FLAG, CRITICAL_FLAG, PLANNED_EFFORT, SCHEDULED_START_DATE, SCHEDULED_FINISH_DATE — schedule and effort attributes.
- COMPLETED_PERCENTAGE, EFF_ROLLUP_PERCENT_COMP, BASE_PERCENT_COMPLETE — progress measurement values.
- ACTUAL_START_DATE, ACTUAL_FINISH_DATE, ESTIMATED_START_DATE, ESTIMATED_FINISH_DATE — progress-derived dates.
- INCREMENTAL_WORK_QUANTITY, CUMULATIVE_WORK_QUANTITY — work quantity measures.
- PUBLISHED_FLAG, CURRENT_FLAG, RECORD_VERSION_NUMBER — control columns for published and current progress records.
- PROJECT_STATUS_NAME, PROJECT_SYSTEM_STATUS_CODE, STATUS_ICON_IND — status presentation attributes.
Regarding the searched term, effort_enabled_flag is not a column exposed by this view; effort-related information is instead represented through PLANNED_EFFORT and ESTIMATED_REMAINING_EFFORT.
Common Use Cases and Queries
Typical uses include project progress dashboards, task-level percent-complete reports, and extracts for status reporting. A basic query returns current progress for a project:
- SELECT PROJECT_ID, NAME, PROJ_ELEMENT_ID, WBS_NUMBER, WBS_LEVEL, COMPLETED_PERCENTAGE, EFF_ROLLUP_PERCENT_COMP FROM PA_PROJ_TASK_PROG_HIST_V WHERE PROJECT_ID = :project_id;
- SELECT WBS_NUMBER, PLANNED_EFFORT, SCHEDULED_START_DATE, SCHEDULED_FINISH_DATE, MILESTONE_FLAG FROM PA_PROJ_TASK_PROG_HIST_V WHERE PROJECT_ID = :project_id AND OBJECT_TYPE = 'PA_TASKS';
- SELECT PROJ_ELEMENT_ID, ACTUAL_START_DATE, ACTUAL_FINISH_DATE, ESTIMATED_REMAINING_EFFORT FROM PA_PROJ_TASK_PROG_HIST_V WHERE CURRENT_FLAG = 'Y';
Because the view consolidates versioned and rolled-up progress data, it is preferable to query it directly rather than reconstructing the underlying joins, provided the reporting requirement matches the columns exposed.
-
View: PA_PROJ_TASK_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_HIST_V ,
-
View: PA_PROJ_TASK_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_HIST_V ,
-
SYNONYM: APPS.PA_PROJ_PROGRESS_ATTR
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_PROGRESS_ATTR, status:VALID,
-
SYNONYM: APPS.PA_PROJ_PROGRESS_ATTR
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_PROGRESS_ATTR, status:VALID,
-
SYNONYM: APPS.PA_PROGRESS_ROLLUP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROGRESS_ROLLUP, status:VALID,
-
SYNONYM: APPS.PA_PERCENT_COMPLETES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PERCENT_COMPLETES, status:VALID,
-
SYNONYM: APPS.PA_PROGRESS_ROLLUP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROGRESS_ROLLUP, status:VALID,
-
SYNONYM: APPS.PA_PERCENT_COMPLETES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PERCENT_COMPLETES, status:VALID,
-
SYNONYM: APPS.PA_TASK_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_TASK_TYPES, status:VALID,
-
SYNONYM: APPS.PA_TASK_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_TASK_TYPES, status:VALID,
-
SYNONYM: APPS.PA_PROJ_ELEM_VER_SCHEDULE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_ELEM_VER_SCHEDULE, status:VALID,
-
SYNONYM: APPS.PA_PROJ_STRUCTURE_TYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_STRUCTURE_TYPES, status:VALID,
-
SYNONYM: APPS.PA_PROJ_STRUCTURE_TYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_STRUCTURE_TYPES, status:VALID,
-
PACKAGE: APPS.PA_PROJ_ELEMENTS_UTILS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PA_PROJ_ELEMENTS_UTILS, status:VALID,
-
SYNONYM: APPS.PA_PROJ_ELEM_VER_SCHEDULE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_ELEM_VER_SCHEDULE, status:VALID,
-
PACKAGE: APPS.PA_PROJ_ELEMENTS_UTILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PA_PROJ_ELEMENTS_UTILS, status:VALID,
-
SYNONYM: APPS.PA_OBJECT_RELATIONSHIPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_OBJECT_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.PA_OBJECT_RELATIONSHIPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_OBJECT_RELATIONSHIPS, status:VALID,
-
SYNONYM: APPS.PA_PROJ_ELEM_VER_STRUCTURE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_ELEM_VER_STRUCTURE, status:VALID,
-
SYNONYM: APPS.PA_PROJ_ELEM_VER_STRUCTURE
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_ELEM_VER_STRUCTURE, status:VALID,
-
SYNONYM: APPS.PA_PROJ_ELEMENT_VERSIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_ELEMENT_VERSIONS, status:VALID,
-
VIEW: APPS.PA_PROJ_TASK_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID,
-
SYNONYM: APPS.PA_PROJ_ELEMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_ELEMENTS, status:VALID,
-
SYNONYM: APPS.PA_PROJECT_STATUSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECT_STATUSES, status:VALID,
-
VIEW: APPS.PA_PROJ_TASK_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_HIST_V, object_name:PA_PROJ_TASK_PROG_HIST_V, status:VALID,
-
SYNONYM: APPS.PA_PROJECT_STATUSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJECT_STATUSES, status:VALID,
-
SYNONYM: APPS.PA_PROJ_ELEMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_ELEMENTS, status:VALID,
-
SYNONYM: APPS.PA_PROJ_ELEMENT_VERSIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PA_PROJ_ELEMENT_VERSIONS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
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,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PA Tables and Views
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2