Search Results new_scheduled_start_date
Overview
APPS.PA_TASKS_PUBLISHING_V is a publishing view owned by the APPS schema in Oracle E-Business Suite, delivered as part of the Projects (PA) product family. Its FND design data reference is PA.PA_TASKS_PUBLISHING_V. The view exposes a flattened, reporting-oriented representation of project tasks and work breakdown structure (WBS) elements, combining element identification, milestone and critical flags, progress status, scheduling dates, variance figures, task manager assignment, and completion percentage into a single result set. Because it consolidates attributes normally distributed across several Projects tables, it is intended for publishing task-level detail to downstream reporting, integration, and external presentation layers rather than for transactional processing.
The ETRM record marks the object with the standard Oracle restriction that it is for internal use only and that Oracle does not support direct access to applications data through it except from standard Oracle Applications programs. Query behavior should therefore be expected to be governed by the same naming and decoding conventions Oracle applies elsewhere in Projects, and any custom use should be validated as non-supported.
Underlying Base Objects
The view is documented as defined over the following base objects: PA_PROJ_ELEMENTS (SYNONYM), PA_PROJ_ELEMENT_VERSIONS (SYNONYM), PA_PROJ_ELEM_VER_SCHEDULE (SYNONYM), PER_ALL_PEOPLE_F (SYNONYM), and the package PA_PROJ_ELEMENTS_UTILS. In practice, PA_PROJ_ELEMENTS supplies the core element identity (element number, name, project association, parent structure), PA_PROJ_ELEMENT_VERSIONS provides versioned element attributes such as milestone and critical indicators and the version identifier, and PA_PROJ_ELEM_VER_SCHEDULE delivers scheduled and previous scheduled start and finish dates along with the derived variance values. PER_ALL_PEOPLE_F resolves the task manager to a person, while PA_PROJ_ELEMENTS_UTILS is referenced by the view logic for element-based utility operations, commonly including display sequencing and WBS numbering. The joins key primarily on PROJ_ELEMENT_ID and ELEMENT_VERSION_ID, with the versioned schedule and parent structure identifiers linking the hierarchy.
Key Columns
- ELEMENT_NUMBER / ELEMENT_NAME / PROJ_ELEMENT_ID / PROJECT_ID — element and owning project identity.
- ELEMENT_VERSION_ID / PARENT_STRUCTURE_VERSION_ID — version control for the element and its parent in the WBS.
- DISPLAY_SEQUENCE / WBS_LEVEL / WBS_NUMBER — ordering and hierarchy placement of the task.
- MILESTONE_FLAG(_MEANING) / CRITICAL_FLAG(_MEANING) — decoded indicators for milestone and critical tasks.
- PROGRESS_STATUS_CODE / PROGRESS_STATUS_MEANING — task progress state in code and decoded form.
- NEW_SCHEDULED_START_DATE / NEW_SCHEDULED_FINISH_DATE — the current scheduled dates; these are the columns most relevant to a search on "new_scheduled_start_date".
- PREVIOUS_SCH_START_DATE / PREVIOUS_SCH_FINISH_DATE — prior scheduled dates retained for comparison.
- START_DATE_VARIANCE / FINISH_DATE_VARIANCE — slippage between previous and new scheduled dates.
- TASK_MANAGER_ID / TASK_MANAGER — responsible person identifier and display name.
- ORGANIZATION_ID / ORGANIZATION_NAME — owning organization for the task.
- PERCENT_COMPLETE_ID / COMPLETED_PERCENTAGE / AS_OF_DATE — progress measurement and the as-of point for completion.
- STATUS_ICON_ACTIVE_IND / STATUS_ICON_IND / PRIORITY_CODE / PRIORITY_DESCRIPTION — presentation and prioritization attributes.
Common Use Cases and Queries
The view is typically used to publish task schedules and status to dashboards, to compare current and previous scheduled dates for variance reporting, and to feed milestone or critical-path extracts. The most direct response to the "new_scheduled_start_date" search is a filtered schedule report:
- Schedule lookup:
SELECT element_number, element_name, new_scheduled_start_date, new_scheduled_finish_date, start_date_variance FROM apps.pa_tasks_publishing_v WHERE project_id = :project_id ORDER BY wbs_level, display_sequence; - Slippage review:
SELECT element_number, previous_sch_start_date, new_scheduled_start_date, start_date_variance FROM apps.pa_tasks_publishing_v WHERE start_date_variance > 0; - By task manager:
SELECT task_manager, element_number, progress_status_meaning, completed_percentage FROM apps.pa_tasks_publishing_v WHERE task_manager_id = :person_id; - Milestone reporting:
SELECT element_number, new_scheduled_start_date, milestone_flag_meaning, critical_flag_meaning FROM apps.pa_tasks_publishing_v WHERE milestone_flag = 'Y';
Because of the internal-use restriction, these queries should be treated as read-only extracts and reconciled against supported Oracle reporting objects where auditability is required.
-
VIEW: APPS.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,
-
VIEW: JTF.JTF_TASK_AUDITS_B#
12.2.2
-
VIEW: APPS.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,
-
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: JTF.JTF_TASK_AUDITS_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_TASK_AUDITS_B#, status:VALID,
-
View: JTF_TASK_AUDITS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_AUDITS_VL, object_name:JTF_TASK_AUDITS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_AUDITS_B and JTF_TASK_AUDITS_TL. , implementation_dba_data: APPS.JTF_TASK_AUDITS_VL ,
-
APPS.JTF_TASK_WF_SUBSCRIBE_PVT SQL Statements
12.2.2
-
View: JTF_TASK_AUDITS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_AUDITS_VL, object_name:JTF_TASK_AUDITS_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View for JTF_TASK_AUDITS_B and JTF_TASK_AUDITS_TL. , implementation_dba_data: APPS.JTF_TASK_AUDITS_VL ,
-
APPS.JTF_TASK_WF_SUBSCRIBE_PVT SQL Statements
12.1.1
-
APPS.JTF_TASK_AUDITS_PKG SQL Statements
12.2.2
-
APPS.JTF_TASK_AUDITS_PKG SQL Statements
12.1.1
-
VIEW: APPS.JTF_TASK_AUDITS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_AUDITS_VL, object_name:JTF_TASK_AUDITS_VL, status:VALID,
-
TABLE: JTF.JTF_TASK_AUDITS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_AUDITS_B, object_name:JTF_TASK_AUDITS_B, status:VALID,
-
VIEW: APPS.JTF_TASK_AUDITS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_AUDITS_VL, object_name:JTF_TASK_AUDITS_VL, status:VALID,
-
TABLE: JTF.JTF_TASK_AUDITS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TASK_AUDITS_B, object_name:JTF_TASK_AUDITS_B, status:VALID,
-
PACKAGE BODY: APPS.JTF_TASK_AUDITS_PKG
12.1.1
-
PACKAGE BODY: APPS.JTF_TASK_AUDITS_PKG
12.2.2
-
APPS.JTF_TASK_AUDITS_PVT SQL Statements
12.2.2
-
APPS.JTF_TASK_AUDITS_PVT SQL Statements
12.1.1
-
APPS.CSF_ALERTS_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTF_TASK_WF_SUBSCRIBE_PVT
12.1.1
-
PACKAGE BODY: APPS.JTF_TASK_WF_SUBSCRIBE_PVT
12.2.2
-
APPS.CSF_ALERTS_PUB dependencies on JTF_TASK_AUDITS_B
12.1.1
-
PACKAGE BODY: APPS.JTF_TASK_AUDITS_PVT
12.1.1
-
PACKAGE BODY: APPS.JTF_TASK_AUDITS_PVT
12.2.2
-
PACKAGE BODY: APPS.CSF_ALERTS_PUB
12.1.1
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2