Search Results base_percent_complete
Overview
PA_PROGRESS_ROLLUP is a Projects (PA) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores rolled-up progress information for project tasks and reporting structures. It aggregates percent complete, effort, cost, and earned value data across the project hierarchy, supporting progress reporting, earned value management, and the Project Status Inquiry (PSI) functionality. Physical schema consists of 125 columns owned by the PA schema.
From a Data Vault modeling perspective, the metadata classifies this object as a link. This heuristic reflects the table's role as a transactional/associative structure connecting projects, tasks, and structures across periodic snapshots.
Key structural attributes include the surrogate primary key PROGRESS_ROLLUP_ID (indexed by PA_PROGRESS_ROLLUP_PK and unique index PA_PROGRESS_ROLLUP_U1), and a business-key candidate PA_PROGRESS_ROLLUP_U2 spanning PROJECT_ID, OBJECT_ID, OBJECT_TYPE, STRUCTURE_TYPE, AS_OF_DATE, PROJ_ELEMENT_ID, CURRENT_FLAG, STRUCTURE_VERSION_ID, and CBS_ELEMENT_ID.
Key Information Stored
PROGRESS_ROLLUP_ID— surrogate primary key.PROJECT_ID— foreign key toPA_PROJECTS_ALL.OBJECT_ID,PROJ_ELEMENT_ID— task/structure element identifiers linking toPA_PROJ_ELEMENTS.OBJECT_VERSION_ID,STRUCTURE_VERSION_ID— versions referencingPA_PROJ_ELEMENT_VERSIONS.OBJECT_TYPE,STRUCTURE_TYPE— identify the hierarchical level of rollup.AS_OF_DATE— snapshot date for the rolled-up metrics.CURRENT_FLAG— indicates the current vs. historical record.PERCENT_COMPLETE_ID,BASE_PERCENT_COMPLETE,EFF_ROLLUP_PERCENT_COMP,COMPLETED_PERCENTAGE— progress measurements.PROGRESS_STATUS_CODE— FK toPA_PROJECT_STATUSES.EARNED_VALUE,SUBPRJ_EARNED_VALUE— earned value figures.PPL_ACT_EFFORT_TO_DATE,EQPMT_ACT_EFFORT_TO_DATE,EQPMT_ETC_EFFORT— effort metrics.- Cost columns (
OTH_ACT_COST_TO_DATE_TC/FC/PC,PPL_ETC_COST_*, etc.) — amounts held in transaction, project functional, and project currency. TXN_CURRENCY_CODE,PROJFUNC_COST_RATE_TYPE,PROJ_COST_RATE_TYPE— currency and conversion rate attributes.PROG_PA_PERIOD_NAME,PROG_GL_PERIOD_NAME— PA and GL accounting period context.TASK_WT_BASIS_CODE— task weighting basis for rollup.
Common Use Cases and Queries
Progress reporting and earned value analysis are the principal use cases. The CURRENT_FLAG and AS_OF_DATE columns allow point-in-time retrieval of the latest rolled-up metrics.
Example — retrieve current rolled-up progress for a project:
SELECT pr.PROJECT_ID, pr.OBJECT_ID, pr.EFF_ROLLUP_PERCENT_COMP, pr.EARNED_VALUE, pr.AS_OF_DATE
FROM PA.PA_PROGRESS_ROLLUP pr
WHERE pr.PROJECT_ID = :project_id
AND pr.CURRENT_FLAG = 'Y';
Example — join to project master to enrich reporting:
SELECT p.SEGMENT1, pr.EFF_ROLLUP_PERCENT_COMP, pr.PPL_ACT_COST_TO_DATE_PC
FROM PA.PA_PROGRESS_ROLLUP pr, PA.PA_PROJECTS_ALL p
WHERE pr.PROJECT_ID = p.PROJECT_ID
AND pr.CURRENT_FLAG = 'Y'
AND pr.STRUCTURE_TYPE = 'TASK';
Related Objects
PA_PROJECTS_ALL— joined onPROJECT_ID; the master project record.PA_PROJ_ELEMENTS— joined onOBJECT_IDandPROJ_ELEMENT_ID.PA_PROJ_ELEMENT_VERSIONS— joined onOBJECT_VERSION_IDandSTRUCTURE_VERSION_ID.PA_PROJECT_STATUSES— joined onPROGRESS_STATUS_CODE.FND_CURRENCIES— joined onTXN_CURRENCY_CODE.GL_DAILY_CONVERSION_TYPES— referenced byPROJFUNC_COST_RATE_TYPEandPROJ_COST_RATE_TYPE.PA_STRUCTURES_TASKS_TMP— references this table viaPROGRESS_ROLLUP_ID, indicating use during structure rollup processing.
-
Table: PA_PROGRESS_ROLLUP
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROGRESS_ROLLUP, object_name:PA_PROGRESS_ROLLUP, status:VALID, product: PA - Projects , description: PA_PROGRESS_ROLLUP stores rolled up progress information for tasks and structures. , implementation_dba_data: PA.PA_PROGRESS_ROLLUP ,
-
Table: PA_PROGRESS_ROLLUP
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROGRESS_ROLLUP, object_name:PA_PROGRESS_ROLLUP, status:VALID, product: PA - Projects , description: PA_PROGRESS_ROLLUP stores rolled up progress information for tasks and structures. , implementation_dba_data: PA.PA_PROGRESS_ROLLUP ,
-
Table: PA_STRUCTURES_TASKS_TMP
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_STRUCTURES_TASKS_TMP, object_name:PA_STRUCTURES_TASKS_TMP, status:VALID, product: PA - Projects , implementation_dba_data: PA.PA_STRUCTURES_TASKS_TMP ,
-
Table: PA_STRUCTURES_TASKS_TMP
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_STRUCTURES_TASKS_TMP, object_name:PA_STRUCTURES_TASKS_TMP, status:VALID, product: PA - Projects , implementation_dba_data: PA.PA_STRUCTURES_TASKS_TMP ,
-
View: PA_CURR_PROJ_TASK_PROG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CURR_PROJ_TASK_PROG_V, object_name:PA_CURR_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CURR_PROJ_TASK_PROG_V ,
-
View: PA_CURR_PROJ_TASK_PROG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_CURR_PROJ_TASK_PROG_V, object_name:PA_CURR_PROJ_TASK_PROG_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_CURR_PROJ_TASK_PROG_V ,
-
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_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_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_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_DELIV_ONLY_PROG_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIV_ONLY_PROG_HIST_V, object_name:PA_DELIV_ONLY_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIV_ONLY_PROG_HIST_V ,
-
View: PA_DELIV_ONLY_PROG_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DELIV_ONLY_PROG_HIST_V, object_name:PA_DELIV_ONLY_PROG_HIST_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DELIV_ONLY_PROG_HIST_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.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_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_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_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_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 ,