Search Results jtf_calendars_b
Overview
The PA_PROJ_ELEM_VER_SCHEDULE table is a core data structure within the Oracle E-Business Suite Projects (PA) module, specifically in versions 12.1.1 and 12.2.2. It is designed to store versioned workplan schedule attributes. A workplan defines the tasks, resources, and timelines for a project, and versioning allows project managers to create and maintain multiple iterations or baselines of a project's schedule. The table's primary role is to associate specific scheduling details, such as the calendar to be used, with a particular version of a project workplan element. Notably, the official ETRM documentation explicitly states its status as "For future use," indicating that while the table structure exists in the schema, its full functional integration may have been reserved for subsequent releases or enhancements.
Key Information Stored
While the provided metadata does not list specific columns beyond foreign keys, the table's purpose and relationships define its critical data elements. It acts as a junction table linking a project workplan element version to its associated scheduling attributes. The key foreign key columns, which constitute the table's core references, are: ELEMENT_VERSION_ID (linking to PA_PROJ_ELEMENT_VERSIONS), PROJECT_ID (linking to PA_PROJECTS_ALL), PROJ_ELEMENT_ID (linking to PA_PROJ_ELEMENTS), and CALENDAR_ID (linking to JTF_CALENDARS_B). These relationships ensure that schedule data is correctly scoped to a specific project, a specific work breakdown structure (WBS) element within that project, and a precise version of that element's plan, utilizing a defined working calendar for date calculations.
Common Use Cases and Queries
Given its "for future use" designation, direct operational use in standard processes may be limited. However, it is foundational for any functionality involving versioned schedule baselines. Potential use cases include auditing historical schedule plans, comparing baseline schedules against current working versions, or supporting advanced scheduling analytics. A typical query would join this table to retrieve a complete versioned schedule context. For example:
- Retrieving the calendar used for a specific element version:
SELECT p.calendar_id, c.name FROM pa_proj_elem_ver_schedule p, jtf_calendars_b c WHERE p.calendar_id = c.calendar_id AND p.element_version_id = :1; - Listing all schedule records for a project:
SELECT * FROM pa_proj_elem_ver_schedule WHERE project_id = :p_project_id;
Related Objects
PA_PROJ_ELEM_VER_SCHEDULE is centrally connected to several key Projects tables, as defined by its foreign key constraints.
- PA_PROJ_ELEMENT_VERSIONS: The primary parent table, linking to a specific version instance of a project element.
- PA_PROJECTS_ALL: Provides the master project definition and context.
- PA_PROJ_ELEMENTS: Defines the work breakdown structure (WBS) element or task itself.
- JTF_CALENDARS_B: Supplies the working calendar (defining working days, holidays, etc.) applied to the schedule for this element version.
This table is part of the underlying schema supporting the project workplan and versioning functionality, and it would be referenced by any APIs or views that manage versioned schedule data.
-
Table: PA_PROJ_ELEM_VER_SCHEDULE
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJ_ELEM_VER_SCHEDULE, object_name:PA_PROJ_ELEM_VER_SCHEDULE, status:VALID, product: PA - Projects , description: PA_PROJ_ELEM_VER_SCHEDULE stores workplan attributes, which are versioned. - For future use , implementation_dba_data: PA.PA_PROJ_ELEM_VER_SCHEDULE ,
-
Table: PA_SCHEDULES
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_SCHEDULES, object_name:PA_SCHEDULES, status:VALID, product: PA - Projects , description: PA_SCHEDULES displays the schedule details for requirements and assignments. It also displays calendar schedules , implementation_dba_data: PA.PA_SCHEDULES ,
-
Table: PA_PROJ_ELEM_VER_SCHEDULE
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJ_ELEM_VER_SCHEDULE, object_name:PA_PROJ_ELEM_VER_SCHEDULE, status:VALID, product: PA - Projects , description: PA_PROJ_ELEM_VER_SCHEDULE stores workplan attributes, which are versioned. - For future use , implementation_dba_data: PA.PA_PROJ_ELEM_VER_SCHEDULE ,
-
Table: PA_SCHEDULES
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_SCHEDULES, object_name:PA_SCHEDULES, status:VALID, product: PA - Projects , description: PA_SCHEDULES displays the schedule details for requirements and assignments. It also displays calendar schedules , implementation_dba_data: PA.PA_SCHEDULES ,
-
View: PA_TEAM_TEMPLATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TEAM_TEMPLATES_V, object_name:PA_TEAM_TEMPLATES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TEAM_TEMPLATES_V ,
-
View: PA_TEAM_TEMPLATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_TEAM_TEMPLATES_V, object_name:PA_TEAM_TEMPLATES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_TEAM_TEMPLATES_V ,
-
Table: PA_PROJECT_ASSIGNMENTS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSIGNMENTS, object_name:PA_PROJECT_ASSIGNMENTS, status:VALID, product: PA - Projects , description: PA_PROJECT_ASSIGNMENTS stores details of all Assignments for a project. , implementation_dba_data: PA.PA_PROJECT_ASSIGNMENTS ,
-
Table: PA_PROJECT_ASSIGNMENTS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PROJECT_ASSIGNMENTS, object_name:PA_PROJECT_ASSIGNMENTS, status:VALID, product: PA - Projects , description: PA_PROJECT_ASSIGNMENTS stores details of all Assignments for a project. , implementation_dba_data: PA.PA_PROJECT_ASSIGNMENTS ,