Search Results effort_enabled_flag
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 ,
-
View: PA_BACK_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BACK_PROJ_TASK_PROG_V, object_name:PA_BACK_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_BACK_PROJ_TASK_PROG_V ,
-
View: PA_BACK_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BACK_PROJ_TASK_PROG_V, object_name:PA_BACK_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_BACK_PROJ_TASK_PROG_V ,
-
View: PA_ASSIGNMENT_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ASSIGNMENT_PROGRESS_V, object_name:PA_ASSIGNMENT_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ASSIGNMENT_PROGRESS_V ,
-
View: PA_ASSIGNMENT_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ASSIGNMENT_PROGRESS_V, object_name:PA_ASSIGNMENT_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ASSIGNMENT_PROGRESS_V ,
-
View: PA_ASSIGNMENT_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ASSIGNMENT_PROG_HIST_V, object_name:PA_ASSIGNMENT_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ASSIGNMENT_PROG_HIST_V ,
-
View: PA_ASSIGNMENT_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ASSIGNMENT_PROG_HIST_V, object_name:PA_ASSIGNMENT_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ASSIGNMENT_PROG_HIST_V ,
-
View: PA_TASKS_ASSIGNS_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_ASSIGNS_PROGRESS_V, object_name:PA_TASKS_ASSIGNS_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASKS_ASSIGNS_PROGRESS_V ,
-
View: PA_TASKS_ASSIGNS_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_ASSIGNS_PROGRESS_V, object_name:PA_TASKS_ASSIGNS_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASKS_ASSIGNS_PROGRESS_V ,
-
View: PA_TASK_ASSIGNMENTS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_AMG_V, object_name:PA_TASK_ASSIGNMENTS_AMG_V, status:VALID, product: PA - Projects , description: This view provides progress data for task assignments. , implementation_dba_data: APPS.PA_TASK_ASSIGNMENTS_AMG_V ,
-
View: PA_TASK_ASSIGNMENTS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_ASSIGNMENTS_AMG_V, object_name:PA_TASK_ASSIGNMENTS_AMG_V, status:VALID, product: PA - Projects , description: This view provides progress data for task assignments. , implementation_dba_data: APPS.PA_TASK_ASSIGNMENTS_AMG_V ,
-
View: PA_PROGRESS_HIST_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRESS_HIST_DET_V, object_name:PA_PROGRESS_HIST_DET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROGRESS_HIST_DET_V ,
-
View: PA_PROGRESS_HIST_DET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRESS_HIST_DET_V, object_name:PA_PROGRESS_HIST_DET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROGRESS_HIST_DET_V ,
-
View: PA_LATEST_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LATEST_PROJ_TASK_PROG_V, object_name:PA_LATEST_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_LATEST_PROJ_TASK_PROG_V ,
-
View: PA_PROJ_TASK_PROG_DET_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_DET_V, object_name:PA_PROJ_TASK_PROG_DET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_DET_V ,
-
View: PA_PROJ_TASK_PROG_DET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_TASK_PROG_DET_V, object_name:PA_PROJ_TASK_PROG_DET_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_TASK_PROG_DET_V ,
-
View: PA_LATEST_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LATEST_PROJ_TASK_PROG_V, object_name:PA_LATEST_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_LATEST_PROJ_TASK_PROG_V ,