Search Results summary_element_flag
Overview
The PA_TASK_PROG_HIST_V view is a Projects (PA) module reporting object owned by the APPS schema in Oracle E-Business Suite. It presents a consolidated, denormalized picture of task-level and workplan-level progress for projects, combining published percentage-complete records with rollup progress quantities, element structure attributes, and project status information. The view is defined with a "history" orientation: rather than showing only the current state of a task, it exposes the computed percentage-complete rows that have been published by a responsible party, together with the as-of date of the computation. This makes it suitable for progress trend reporting, status dashboards, and integration extracts that must reproduce the progression of a task over time.
Because the view joins published structures, percent-complete records, and progress rollup rows, it functions as a single-query source for task progress analytics without requiring consumers to reconstruct the PA progress data model themselves. All version-qualified element data flows from PA_LATEST_PUB_STRUC_TASKS_V, ensuring only the latest published structure versions are surfaced.
Underlying Base Objects
ETRM documents the following referenced objects for this view:
- PA_LATEST_PUB_STRUC_TASKS_V (view) — supplies published workplan task and element attributes; filtered to
STRUCTURE_TYPE_CLASS_CODE='WORKPLAN'. - PA_PERCENT_COMPLETES (synonym) — the published percentage-complete and progress comment records, including the publishing party and status code.
- PA_PROGRESS_ROLLUP (synonym) — rolled-up progress metrics such as actual, estimated, cumulative, and incremental work quantities and effective rollup percent complete.
- PA_PROJECT_STATUSES (synonym) — project status code, name, and status icon indicators, joined on the progress status code.
- HZ_PARTIES (synonym) — resolves the publishing party identifier to a party name.
- FND_GLOBAL (package) and PA_PROJ_ELEMENTS_UTILS (package) — referenced for session context and element utility logic within the view definition.
Joins to PA_PERCENT_COMPLETES, PA_PROGRESS_ROLLUP, HZ_PARTIES, and PA_PROJECT_STATUSES are predominantly outer joins, meaning workplan tasks without published progress are still represented with null progress attributes.
Key Columns
- PROJECT_ID / PROJECT_NAME / PROJECT_NUMBER — project identification and descriptive attributes.
- PROJ_ELEMENT_ID / TASK_ID, ELEMENT_VERSION_ID — the workplan element (task) identifier and its structure version.
- TASK_NAME / TASK_NUMBER / WBS_NUMBER / WBS_LEVEL — task naming and hierarchical work breakdown attributes.
- AS_OF_DATE — the computation date (
DATE_COMPUTED) of the percentage-complete record, central to historical analysis. - COMPLETED_PERCENTAGE / BASE_PERCENT_COMPLETE / EFF_ROLLUP_PERCENT_COMP — reported and rollup completion percentages.
- INCREMENTAL_WORK_QUANTITY / CUMULATIVE_WORK_QUANTITY — period and to-date work quantities from the rollup.
- ESTIMATED_REMAINING_EFFORT / PLANNED_EFFORT — effort measures supporting progress-versus-plan comparison.
- PROJECT_STATUS_CODE / PROJECT_STATUS_NAME / STATUS_ICON_IND — project status and its visual indicator.
- PUBLISHED_BY_PARTY_ID / PARTY_NAME — who published the progress record.
- PUBLISHED_FLAG / CURRENT_FLAG / RECORD_VERSION_NUMBER — publication and currency flags used for version control.
- PROGRESS_COMMENT / DESCRIPTION — free-text narrative recorded with the progress entry.
Common Use Cases and Queries
Typical uses include task progress dashboards, historical completion trending, and extract feeds for project reporting. A straightforward query retrieves published progress for a project:
SELECT project_number, task_number, task_name,
as_of_date, completed_percentage,
cumulative_work_quantity, party_name
FROM apps.pa_task_prog_hist_v
WHERE project_number = :p_project_number
ORDER BY task_number, as_of_date;
To trend completion over time for a single task, filter on the element identifier and order by the as-of date. To report only current published records, add AND current_flag = 'Y' and AND published_flag = 'Y'. Because the view already restricts to WORKPLAN structures and published rows, consumers need not re-apply those predicates, though restricting by project_id is recommended for performance.
-
View: PA_TASK_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROG_HIST_V, object_name:PA_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROG_HIST_V ,
-
View: PA_TASK_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROG_HIST_V, object_name:PA_TASK_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_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_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_STRUCTURES_TASKS_V
12.1.1
product: PA - Projects , description: PA_STRUCTURES_TASKS_V selects all the attributes of a structure version and a task version. - For future use , implementation_dba_data: Not implemented in this database ,
-
View: PA_STRUCTURES_TASKS_V
12.2.2
product: PA - Projects , description: PA_STRUCTURES_TASKS_V selects all the attributes of a structure version and a task version. - For future use , implementation_dba_data: Not implemented in this database ,
-
View: PA_FIN_STRUCTURES_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_STRUCTURES_TASKS_V, object_name:PA_FIN_STRUCTURES_TASKS_V, status:VALID, product: PA - Projects , description: PA_FIN_STRUCTURES_TASKS_V selects all the attributes of a structure version and a task version. , implementation_dba_data: APPS.PA_FIN_STRUCTURES_TASKS_V ,
-
View: PA_FIN_STRUCTURES_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_STRUCTURES_TASKS_V, object_name:PA_FIN_STRUCTURES_TASKS_V, status:VALID, product: PA - Projects , description: PA_FIN_STRUCTURES_TASKS_V selects all the attributes of a structure version and a task version. , implementation_dba_data: APPS.PA_FIN_STRUCTURES_TASKS_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_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_STRUCT_TASK_EDIT_V
12.1.1
product: PA - Projects , description: PA_STRUCT_TASK_EDIT_V selects all the attributes of a structure version and a task version. - For future use , implementation_dba_data: Not implemented in this database ,
-
View: PA_TASK_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROGRESS_V, object_name:PA_TASK_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROGRESS_V ,
-
View: PA_TASK_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_PROGRESS_V, object_name:PA_TASK_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_PROGRESS_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_STRUC_TASK_SEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUC_TASK_SEARCH_V, object_name:PA_STRUC_TASK_SEARCH_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STRUC_TASK_SEARCH_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_STRUCT_TASK_EDIT_V
12.2.2
product: PA - Projects , description: PA_STRUCT_TASK_EDIT_V selects all the attributes of a structure version and a task version. - For future use , implementation_dba_data: Not implemented in this database ,
-
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_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_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_STRUC_TASK_SEARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUC_TASK_SEARCH_V, object_name:PA_STRUC_TASK_SEARCH_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STRUC_TASK_SEARCH_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 ,
-
View: PA_LATEST_PUB_STRUC_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LATEST_PUB_STRUC_TASKS_V, object_name:PA_LATEST_PUB_STRUC_TASKS_V, status:VALID, product: PA - Projects , description: PA_LATEST_PUB_STRUC_TASKS_V selects the information of the latest published structure version. - For future use , implementation_dba_data: APPS.PA_LATEST_PUB_STRUC_TASKS_V ,
-
View: PA_LATEST_PUB_STRUC_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_LATEST_PUB_STRUC_TASKS_V, object_name:PA_LATEST_PUB_STRUC_TASKS_V, status:VALID, product: PA - Projects , description: PA_LATEST_PUB_STRUC_TASKS_V selects the information of the latest published structure version. - For future use , implementation_dba_data: APPS.PA_LATEST_PUB_STRUC_TASKS_V ,