Search Results default_as_of_date
Overview
The PA_ASSIGNMENT_PROGRESS_V view in the Oracle E-Business Suite Projects (PA) module provides a consolidated, reporting-ready representation of assignment-level progress information. It is owned by the APPS schema and is documented as a valid view in both EBS 12.1.1 and 12.2.2. The view sits atop the Projects progress-management infrastructure and exposes derived metrics such as schedule variances, actual and estimated effort, and cycle-related date computations for individual task assignments. Its primary role is to support progress reporting, effort tracking, and integration of assignment-level data into dashboards, concurrent programs, and custom reports without requiring consumers to reconstruct the underlying business logic.
Because the view encapsulates calls to PA_PROGRESS_UTILS and other progress utilities, it delivers calculated values that would otherwise demand complex procedural logic. This makes it particularly valuable in reporting layers where standard progress rollup figures must be reconciled against assignment baselines.
Underlying Base Objects
The documented base objects underlying PA_ASSIGNMENT_PROGRESS_V span progress, project structure, and utility components. These include the package PA_CURRENCY, the synonym-backed tables PA_PERCENT_COMPLETES, PA_PROGRESS_ROLLUP, PA_PROJECTS_ALL, PA_PROJ_ELEMENTS, PA_PROJ_ELEMENT_VERSIONS, PA_PROJ_ELEM_VER_STRUCTURE, and PA_PROJ_PROGRESS_ATTR. The view also references the utility package PA_PROGRESS_UTILS and PA_TASK_ASSIGNMENT_UTILS, along with the PA_TASK_ASGMTS_LPV_V view (aliased internally as PTAV) and the PA_TASK_TYPES synonym.
In practical terms, PA_TASK_ASGMTS_LPV_V supplies baseline and planned assignment attributes such as ASSIGNMENT_START_DATE, ASSIGNMENT_END_DATE, and BASELINED_PLANNED_QTY. Progress attribute and rollup objects contribute actual and estimated effort figures, while PA_PROJECTS_ALL and the project element structures provide the project and task hierarchy context. The packages supply dynamic computations invoked directly within the view text.
Key Columns
ACT_SCH_START_VAR/ACT_SCH_FINISH_VAR— Actual-to-schedule variance for start and finish dates.ACTUAL_EFFORT— Resource-class-aware actual effort to date, adjusted viaGET_ASSGN_ACT_EFFORT_PERIOD.ACTUAL_START_DATE,ACTUAL_FINISH_DATE,AS_OF_DATE— Actual and reporting dates.BASELINED_EFFORT,BASELINED_ASGMT_START_DATE,BASELINED_ASGMT_END_DATE— Baseline assignment values.DAYS_UNTIL_PROGRESS_DUE— Derived fromGET_NEXT_PROGRESS_CYCLEandSYSDATE.DAYS_UNTIL_START— Days between assignment start and current date.EST_AT_COMPLETION_EFFORT— Total actual plus estimated-to-complete effort.EST_BAS_START_VAR/EST_BAS_FINISH_VAR— Estimate-to-baseline date variances.ESTIMATED_START_DATE,ESTIMATED_FINISH_DATE,ESTIMATED_REMAINING_EFFORT— Forecast metrics.
Common Use Cases and Queries
Typical uses include assignment progress monitoring, effort-at-completion analysis, and variance reporting against baselines. A representative query follows:
SELECT project_id, object_id, actual_effort, estimated_remaining_effort, est_at_completion_effort, days_until_progress_due FROM pa_assignment_progress_v WHERE days_until_progress_due <= 7;— identifies assignments with imminent progress cycles.SELECT object_id, act_sch_start_var, act_sch_finish_var, est_bas_finish_var FROM pa_assignment_progress_v ORDER BY est_bas_finish_var DESC;— ranks assignments by schedule slippage.
Because the view invokes PL/SQL utility functions, queries should be scoped with predicates where possible to limit execution cost on large project portfolios.
-
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_DELIVERABLE_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLE_PROGRESS_V, object_name:PA_DELIVERABLE_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIVERABLE_PROGRESS_V ,
-
View: PA_DELIVERABLE_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLE_PROGRESS_V, object_name:PA_DELIVERABLE_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIVERABLE_PROGRESS_V ,
-
View: PA_TASK_DELVRS_PROGRESS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_DELVRS_PROGRESS_V, object_name:PA_TASK_DELVRS_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_DELVRS_PROGRESS_V ,
-
View: PA_TASK_DELVRS_PROGRESS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASK_DELVRS_PROGRESS_V, object_name:PA_TASK_DELVRS_PROGRESS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASK_DELVRS_PROGRESS_V ,
-
View: PA_DELIVERABLE_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLE_PROG_HIST_V, object_name:PA_DELIVERABLE_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIVERABLE_PROG_HIST_V ,
-
View: PA_DELIVERABLE_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIVERABLE_PROG_HIST_V, object_name:PA_DELIVERABLE_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIVERABLE_PROG_HIST_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.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_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 ,