Search Results task_manager_id
Overview
PA_TASKS_PUBLISHING_V is an APPS-owned, VALID view in the Oracle E-Business Suite Projects (PA) module. It presents a publishing-oriented projection of project task information, exposing task elements together with their version, scheduling, and manager attributes in a single flattened result set. In Oracle EBS 12.1.1 and 12.2.2 the view serves as a read-only reporting and integration surface over the task structures maintained by Oracle Projects, allowing downstream consumers — custom reports, OBIEE/XML Publisher extracts, interfaces, and third-party scheduling or publishing tools — to retrieve task data without directly joining the normalized Projects tables.
The view is defined over PA_PROJ_ELEMENTS, its versioned counterpart PA_PROJ_ELEMENT_VERSIONS, the schedule table PA_PROJ_ELEM_VER_SCHEDULE, and PER_ALL_PEOPLE_F for manager name resolution. Several columns are populated by calls to the PA_PROJ_ELEMENTS_UTILS package, which derives previous scheduled dates for comparison purposes. Because the view restricts rows to OBJECT_TYPE = 'PA_TASKS' and excludes records flagged as linked tasks (LINK_TASK_FLAG <> 'Y') and the system-level project (PROJECT_ID <> 0), it returns only the publishable task hierarchy.
Underlying Base Objects
The documented referenced base objects are:
- PA_PROJ_ELEMENTS (synonym) — the structural element table holding task identifiers, numbering, naming, priority, carrying-out organization, and manager person reference.
- PA_PROJ_ELEMENT_VERSIONS (synonym) — the versioned element records supplying ELEMENT_VERSION_ID, WBS level and number, parent structure version, and display sequence.
- PA_PROJ_ELEM_VER_SCHEDULE (synonym) — the schedule detail for each element version, providing milestone and critical flags, scheduled start and finish dates.
- PA_PROJ_ELEMENTS_UTILS (package) — invoked in the SELECT list to compute previous scheduled start and finish dates for variance calculation.
- PER_ALL_PEOPLE_F (synonym) — the effective-dated person table used to resolve the manager's full name for the current SYSDATE.
PA_PROJ_ELEM_VER_SCHEDULE and PER_ALL_PEOPLE_F are both outer-joined, so tasks lacking schedule records or an active manager still appear in the result set.
Key Columns
- ELEMENT_NUMBER, ELEMENT_NAME — task identifier and descriptive name.
- PROJ_ELEMENT_ID, PROJECT_ID, ELEMENT_VERSION_ID — primary keys linking the task to its project and specific version.
- PARENT_STRUCTURE_VERSION_ID, DISPLAY_SEQUENCE, WBS_LEVEL, WBS_NUMBER — hierarchy and ordering attributes for publishing structures.
- MILESTONE_FLAG, CRITICAL_FLAG — indicator flags for milestone and critical tasks, paired with translated meaning columns.
- SCHEDULED_START_DATE, SCHEDULED_FINISH_DATE — current scheduled dates from PPVSCH.
- NEW_SCHEDULED_START_DATE, NEW_SCHEDULED_FINISH — prior schedule values derived via PA_PROJ_ELEMENTS_UTILS, used to compute schedule variance.
- MANAGER_PERSON_ID, FULL_NAME — the task manager and resolved person name.
- PRIORITY_CODE, CARRYING_OUT_ORGANIZATION_ID — task priority and owning organization.
Note that several columns in the view text are emitted as TO_CHAR(NULL) or TO_NUMBER(NULL) placeholders, and the documentation does not include task_manager_id; manager identity is exposed through MANAGER_PERSON_ID. This distinction is significant when integrating against a "task_manager_id" requirement.
Common Use Cases and Queries
Typical scenarios include publishing task hierarchies to external systems, extracting milestone and critical-path schedules, and reporting task manager assignments. A representative query joins the view to project data and filters by project:
SELECT project_id, proj_element_id, element_number, element_name, wbs_number, scheduled_start_date, scheduled_finish_date, full_name
FROM apps.pa_tasks_publishing_v
WHERE project_id = :project_id
ORDER BY display_sequence;
To isolate milestones or critical tasks:
SELECT element_number, element_name, scheduled_start_date
FROM apps.pa_tasks_publishing_v
WHERE milestone_flag = 'Y'
AND project_id = :project_id;
Where a custom interface expects a "task_manager_id", the appropriate source column is MANAGER_PERSON_ID, which references PER_ALL_PEOPLE_F.PERSON_ID and may be joined to HR employee records for additional attributes. Because the view is read-only and APPS-owned, no DML should be issued against it, and customizations should wrap it in a separate view or query rather than modify the seeded definition.
-
View: PA_TASKS_PUBLISHING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_PUBLISHING_V, object_name:PA_TASKS_PUBLISHING_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASKS_PUBLISHING_V ,
-
View: PA_TASKS_PUBLISHING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TASKS_PUBLISHING_V, object_name:PA_TASKS_PUBLISHING_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TASKS_PUBLISHING_V ,
-
View: PA_XC_TASKS_BY_PROJECT_V
12.1.1
product: PA - Projects , description: View All Task Details , implementation_dba_data: Not implemented in this database ,
-
View: PA_XC_TASKS_BY_PROJECT_V
12.2.2
product: PA - Projects , description: View All Task Details , implementation_dba_data: Not implemented in this database ,
-
View: PA_FIN_PERCENT_COMPLETES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PERCENT_COMPLETES_V, object_name:PA_FIN_PERCENT_COMPLETES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_FIN_PERCENT_COMPLETES_V ,
-
View: PA_XC_TASKS_ALL_V
12.2.2
product: PA - Projects , description: View All Task Details , implementation_dba_data: Not implemented in this database ,
-
View: PA_FIN_PERCENT_COMPLETES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_PERCENT_COMPLETES_V, object_name:PA_FIN_PERCENT_COMPLETES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_FIN_PERCENT_COMPLETES_V ,
-
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_XC_TASKS_ALL_V
12.1.1
product: PA - Projects , description: View All Task Details , implementation_dba_data: Not implemented in this database ,
-
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_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_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_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_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_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_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_DEPENDENCIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DEPENDENCIES_V, object_name:PA_DEPENDENCIES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DEPENDENCIES_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 ,
-
View: PA_DEPENDENCIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DEPENDENCIES_V, object_name:PA_DEPENDENCIES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_DEPENDENCIES_V ,