Search Results sub_project_id
Overview
APPS.PA_STRUCTURES_LINKS_V is an Oracle E-Business Suite internal view owned by the APPS schema that exposes the structural and scheduling relationships between parent and sub-project elements in Oracle Projects. It is delivered as part of the PA (Projects) product family and carries FND Design Data reference PA.PA_STRUCTURES_LINKS_V. The view flattens the relationship records held in the Projects object-relationship model into a single denormalized result set, pairing each sub-project/task (the "from" side of a structure link) with its parent project, parent task, and the associated scheduling attributes.
Its primary role is to support the Structured Project / work-breakdown reporting in Oracle Projects, and in particular to resolve a parent element's identity — including PARENT_TASK_NUMBER — for any given child record. Because it exposes both descriptive identifiers (project and task numbers and names) and financial/scheduling measures (planned effort, baseline and scheduled dates, project manager), it is commonly encountered in project structure inquiries, integration extracts, and custom reports. Oracle marks the object "Internal — Oracle Internal Use Only", so supported access is expected only through standard Oracle Applications programs and not through direct customer SQL in a production, supported sense.
Underlying Base Objects
The view is defined over the following documented base objects, all resolved through synonyms in the APPS schema:
- PA_OBJECT_RELATIONSHIPS — the core table storing the relationship rows that link a sub-element to its parent (the OBJECT_RELATIONSHIP_ID and RELATIONSHIP_TYPE originate here).
- PA_PROJECTS_ALL — supplies project-level attributes, notably project name and project number for both parent and sub-project.
- PA_PROJ_ELEMENTS and PA_PROJ_ELEMENT_VERSIONS — provide the task/element identity (PARENT_TASK_ID, PARENT_TASK_VERSION_ID, PARENT_TASK_NUMBER, PARENT_TASK_NAME).
- PA_PROJ_ELEM_VER_SCHEDULE — supplies the scheduled and baseline start/finish dates for the linked element version.
- PA_PROJ_ELEM_VER_STRUCTURE — supports the structural version linkage used to resolve parent/child element versions.
- PA_PROJECT_PARTIES_UTILS — a package used to resolve party information such as the project manager.
- PJI_FM_XBS_ACCUM_TMP1 — a Projects accumulation/temporary synonym referenced in the dependency chain.
These objects are joined so that a single row represents one structure link, with sub-element columns drawn from the child side and parent columns resolved from the parent element version.
Key Columns
- SUB_PROJECT_ID / SUB_PROJECT_NAME / SUB_PROJECT_NUMBER — identity of the sub-project (child) side of the link.
- SUB_STRUCTURE_VER_ID — the structure version that owns the sub-element.
- RELATIONSHIP_TYPE and COMMENTS — the nature of the structural link and any user text.
- PARENT_PROJECT_ID / PARENT_PROJECT_NAME / PARENT_PROJECT_NUMBER — identity of the parent project.
- PARENT_STRUCTURE_VER_ID — structure version of the parent.
- PARENT_TASK_VERSION_ID / PARENT_TASK_ID — internal keys for the parent task element and its version.
- PARENT_TASK_NUMBER — the user-visible number of the parent task; this is the column most frequently queried when users search for "parent_task_number".
- PARENT_TASK_NAME — the descriptive name of the parent task.
- OBJECT_RELATIONSHIP_ID / RECORD_VERSION_NUMBER — the underlying relationship key and optimistic-locking version.
- PLANNED_EFFORT — planned effort for the linked element version.
- BASELINE_START_DATE / BASELINE_FINISH_DATE and SCHEDULED_START_DATE / SCHEDULED_FINISH_DATE — baseline and current scheduled dates.
- PROJECT_MANAGER_ID / PROJECT_MANAGER_NAME — resource-party identity of the project manager.
Common Use Cases and Queries
The view is typically used to resolve the parent task for a child element, to report project structure hierarchies, or to extract scheduling and effort data for integration. A representative query retrieves the parent task number for a given sub-project:
- SELECT sub_project_number, parent_project_number, parent_task_number, parent_task_name FROM apps.pa_structures_links_v WHERE parent_task_number IS NOT NULL;
- Filter to a specific child: ... WHERE sub_project_id = :p_sub_project_id;
- Report link type: ... WHERE relationship_type = :p_relationship_type;
- Extract scheduling: SELECT parent_task_number, scheduled_start_date, scheduled_finish_date, planned_effort FROM apps.pa_structures_links_v;
Consumers should treat the view as read-only and prefer standard Oracle Projects APIs where available, since direct querying of internal views is unsupported.
-
APPS.OKE_ALLOCATION_PVT SQL Statements
12.2.2
-
APPS.OKE_ALLOCATION_PVT SQL Statements
12.1.1
-
VIEW: APPS.PA_STRUCTURES_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUCTURES_LINKS_V, object_name:PA_STRUCTURES_LINKS_V, status:VALID,
-
VIEW: APPS.PA_FIN_STRUCTURES_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_STRUCTURES_LINKS_V, object_name:PA_FIN_STRUCTURES_LINKS_V, status:VALID,
-
VIEW: APPS.PA_FIN_STRUCTURES_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_STRUCTURES_LINKS_V, object_name:PA_FIN_STRUCTURES_LINKS_V, status:VALID,
-
VIEW: APPS.PA_STRUCTURES_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUCTURES_LINKS_V, object_name:PA_STRUCTURES_LINKS_V, status:VALID,
-
VIEW: APPS.PA_PROGRAM_LINKS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRAM_LINKS_AMG_V, object_name:PA_PROGRAM_LINKS_AMG_V, status:VALID,
-
VIEW: APPS.PA_PROGRAM_LINKS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRAM_LINKS_AMG_V, object_name:PA_PROGRAM_LINKS_AMG_V, status:VALID,
-
View: PA_PROGRAM_LINKS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRAM_LINKS_AMG_V, object_name:PA_PROGRAM_LINKS_AMG_V, status:VALID, product: PA - Projects , description: This view provides program links information , implementation_dba_data: APPS.PA_PROGRAM_LINKS_AMG_V ,
-
View: PA_PROGRAM_LINKS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROGRAM_LINKS_AMG_V, object_name:PA_PROGRAM_LINKS_AMG_V, status:VALID, product: PA - Projects , description: This view provides program links information , implementation_dba_data: APPS.PA_PROGRAM_LINKS_AMG_V ,
-
View: PA_FIN_STRUCTURES_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_STRUCTURES_LINKS_V, object_name:PA_FIN_STRUCTURES_LINKS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_FIN_STRUCTURES_LINKS_V ,
-
View: PA_FIN_STRUCTURES_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_FIN_STRUCTURES_LINKS_V, object_name:PA_FIN_STRUCTURES_LINKS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_FIN_STRUCTURES_LINKS_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_STRUCTURES_LINKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUCTURES_LINKS_V, object_name:PA_STRUCTURES_LINKS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STRUCTURES_LINKS_V ,
-
View: PA_STRUCTURES_LINKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_STRUCTURES_LINKS_V, object_name:PA_STRUCTURES_LINKS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_STRUCTURES_LINKS_V ,
-
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_XC_TASKS_ALL_V
12.2.2
product: PA - Projects , description: View All Task Details , implementation_dba_data: Not implemented in this database ,
-
APPS.OKE_CLE_PVT SQL Statements
12.2.2
-
APPS.OKE_CLE_PVT SQL Statements
12.1.1
-
APPS.OKE_BILLING_EVENT_PUB SQL Statements
12.2.2
-
APPS.OKE_FUNDSOURCE_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKE_ALLOCATION_PVT
12.2.2
-
APPS.OKE_FUNDSOURCE_PVT SQL Statements
12.2.2
-
APPS.OKE_DELIVERABLE_PVT SQL Statements
12.2.2
-
APPS.OKE_DELIVERABLE_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OKE_ALLOCATION_PVT
12.1.1
-
APPS.OKE_ALLOCATION_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
12.2.2
-
APPS.OKE_ALLOCATION_PVT dependencies on DUAL
12.1.1
-
APPS.OKE_ALLOCATION_PVT dependencies on DUAL
12.2.2
-
APPS.OKE_ALLOCATION_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
12.1.1
-
APPS.OKE_DELIVERABLE_PVT dependencies on PA_PROJECTS_ALL
12.1.1
-
APPS.OKE_FUNDSOURCE_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
12.1.1
-
APPS.OKE_DELIVERABLE_PVT dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.OKE_DELIVERABLE_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
12.2.2
-
APPS.OKE_BILLING_EVENT_PUB dependencies on PA_FIN_STRUCTURES_LINKS_V
12.2.2
-
APPS.OKE_BILLING_EVENT_PUB dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.OKE_FUNDSOURCE_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
12.2.2
-
APPS.OKE_CLE_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
12.1.1
-
APPS.OKE_DELIVERABLE_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
12.1.1
-
APPS.OKE_ALLOCATION_PVT dependencies on PA_TASKS
12.1.1
-
APPS.OKE_CLE_PVT dependencies on PA_TASKS
12.2.2
-
APPS.OKE_DELIVERABLE_PVT dependencies on PA_TASKS
12.1.1
-
APPS.OKE_BILLING_EVENT_PUB dependencies on PA_TASKS
12.2.2
-
APPS.OKE_CLE_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
12.2.2
-
APPS.OKE_CLE_PVT dependencies on PA_TASKS
12.1.1
-
APPS.OKE_DELIVERABLE_PVT dependencies on PA_TASKS
12.2.2
-
APPS.OKE_ALLOCATION_PVT dependencies on PA_TASKS
12.2.2
-
APPS.OKE_CLE_PVT dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.OKE_CLE_PVT dependencies on PA_PROJECTS_ALL
12.1.1