Search Results pa_object_relationships
Overview
The PA_OBJECT_RELATIONSHIPS table is a core data repository within the Oracle E-Business Suite Projects (PA) module, specifically for releases 12.1.1 and 12.2.2. As defined in the official ETRM documentation, its primary function is to store all relationships pertaining to projects, structures, and tasks. This table acts as a central relational hub, enabling the modeling of complex interdependencies and hierarchical linkages between various project entities. Its existence is critical for maintaining data integrity and supporting functionality that relies on understanding how different project objects are connected, such as task dependencies, project hierarchies, and associations with control items.
Key Information Stored
The table's structure is designed to capture the essence of a relationship between two objects. While the provided metadata does not list all columns, the primary key is identified as OBJECT_RELATIONSHIP_ID, which uniquely identifies each relationship record. Crucially, the foreign key constraints reveal two key columns: OBJECT_ID_FROM1 and OBJECT_ID_TO1. These columns store the identifiers for the source and target objects in the relationship. The foreign key references indicate these object IDs can link to either PA_PROJ_ELEMENT_VERSIONS (for project and task structures) or PA_CONTROL_ITEMS. This design allows the table to support relationships between tasks, between a task and a control item, or between other related project entities, with the relationship type likely defined by other columns such as OBJECT_TYPE_FROM and OBJECT_TYPE_TO.
Common Use Cases and Queries
A primary use case is analyzing task dependencies within a project plan. For example, to find all successor tasks for a given task, one would query relationships where the source OBJECT_ID_FROM1 is the task and the object types indicate a task-to-task link. Another critical scenario is reporting on all control items associated with a specific project task. A typical query pattern would join PA_OBJECT_RELATIONSHIPS with PA_PROJ_ELEMENT_VERSIONS and PA_CONTROL_ITEMS. For instance:
- Identifying relationships for a specific project:
SELECT * FROM pa_object_relationships por, pa_proj_element_versions ppev WHERE por.object_id_from1 = ppev.proj_element_version_id AND ppev.project_id = :p_project_id; - Listing control items linked to a task:
SELECT ci.* FROM pa_control_items ci, pa_object_relationships por WHERE por.object_id_to1 = ci.control_item_id AND por.object_id_from1 = :p_task_version_id;
Related Objects
As per the documented foreign keys, PA_OBJECT_RELATIONSHIPS has direct and integral dependencies on two key tables. It references PA_PROJ_ELEMENT_VERSIONS twice (via OBJECT_ID_FROM1 and OBJECT_ID_TO1), which is the master table for projects, tasks, and their versions. It also references PA_CONTROL_ITEMS twice, which stores issues, changes, and other action items. This table is likely referenced by various project analytics and reporting views. Furthermore, transactional and validation logic for creating or modifying project relationships would be managed through PL/SQL APIs in the Projects module, which would internally read from and write to this table to enforce business rules.
-
Table: PA_OBJECT_RELATIONSHIPS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_OBJECT_RELATIONSHIPS, object_name:PA_OBJECT_RELATIONSHIPS, status:VALID, product: PA - Projects , description: This table is used to store all relationships relating to projects, structures and tasks. , implementation_dba_data: PA.PA_OBJECT_RELATIONSHIPS ,
-
Table: PA_OBJECT_RELATIONSHIPS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_OBJECT_RELATIONSHIPS, object_name:PA_OBJECT_RELATIONSHIPS, status:VALID, product: PA - Projects , description: This table is used to store all relationships relating to projects, structures and tasks. , implementation_dba_data: PA.PA_OBJECT_RELATIONSHIPS ,
-
APPS.PA_PROJ_STRUCTURE_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_CONTROL_ITEMS_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROGRESS_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_DELIVERABLE_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_DELIVERABLE_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_TASK_APPROVAL_PKG dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_DELIVERABLE_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_PROJECT_REQUEST_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PJI_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_RELATIONSHIP_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJECT_REQUEST_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_TASK_PVT1 dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_PLANNING_ELEMENT_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_STATUS_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_STRUCT_TASK_ROLLUP_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_PLANNING_ELEMENT_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PJI_FM_XBS_ACCUM_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_COPY_CHANGE_DOC_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_PROJECT_DATES_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_PROGRESS_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_PROJ_STRUC_MAPPING_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_TASKS_MAINT_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJ_STRUCTURE_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJ_STRUC_MAPPING_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.OKE_PA_CHECKS_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_PPR_ROLLUP_PERIOD_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_DELIVERABLE_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_TRANSACTIONS_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_STATUS_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_TASKS_MAINT_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_TASKS_MAINT_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_ACTIONS_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJ_STRUC_MAPPING_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_STRUCT_TASK_ROLLUP_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_DELIVERABLE_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJ_STRUCTURE_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROGRESS_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJECT_STRUCTURE_PVT1 dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJECT_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJ_STRUC_MAPPING_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJ_STRUCTURE_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_PPR_ROLLUP_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.2.2
-
APPS.PA_XC_PROJECT_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROJECT_REQUEST_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_LIFECYCLES_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_PROGRESS_UTILS dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_ACTIONS_PUB dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1
-
APPS.PA_RELATIONSHIP_PVT dependencies on PA_OBJECT_RELATIONSHIPS
12.1.1