Search Results parent_project_id
Overview
APPS.PA_FIN_STRUCTURES_LINKS_V is a read-only view owned by the APPS schema that exposes the hierarchical relationships defined between financial structure elements in Oracle Projects. Its principal function is to resolve and flatten the parent-child linkages that exist between a parent project (and, optionally, a parent task) and a sub-project within the Project Financial Structures model. The view returns one row per object relationship, denormalising the identifiers and descriptive attributes of both sides of the link into a single, reportable record.
Within Oracle EBS 12.1.1 and 12.2.2 this view plays a supporting role in integrations and reporting, particularly in flows that need to trace the funding or deliverable lineage between lower-level sub-projects and the parent structures that own them. The dependency list shows that the view is referenced by several Oracle Service (OKE) private APIs, including OKE_ALLOCATION_PVT, OKE_CLE_PVT, OKE_DELIVERABLE_PVT, and OKE_FUNDSOURCE_PVT, confirming its use as a lookup source for cross-module relationship resolution. The metadata carries the standard Oracle Internal Use Only warning: direct access is unsupported outside standard Oracle Applications programs.
Underlying Base Objects
The view is defined over the following documented objects:
- PA_OBJECT_RELATIONSHIPS — the primary source of the relationship records, supplying RELATIONSHIP_TYPE, COMMENTS, and OBJECT_RELATIONSHIP_ID.
- PA_PROJECTS_ALL — supplies project-level attributes for both parent and sub-project, including names and numbers.
- PA_PROJ_ELEMENTS and PA_PROJ_ELEMENT_VERSIONS — supply structure element and version identifiers for both the sub and parent sides.
- PA_PROJECT_STRUCTURE_UTILS — a PL/SQL utility package referenced in the definition for structure resolution logic.
- PA_LATEST_FIN_STRUC_VER_ID_V — documented in the 12.2.2 metadata as a referenced view, used to resolve the current financial structure version.
The view therefore joins relationship metadata to the project and structure dimension tables, yielding a self-describing record of each parent/sub-project linkage.
Key Columns
- SUB_PROJECT_ID / SUB_PROJECT_NAME / SUB_PROJECT_NUMBER — identify the child project participating in the relationship.
- SUB_STRUCTURE_VER_ID — the financial structure version of the sub-project side of the link.
- PARENT_PROJECT_ID / PARENT_PROJECT_NAME / PARENT_PROJECT_NUMBER — identify the parent project; PARENT_PROJECT_ID is the column most commonly searched when tracing upward through the hierarchy.
- PARENT_STRUCTURE_VER_ID — the parent financial structure version.
- PARENT_TASK_VERSION_ID / PARENT_TASK_ID / PARENT_TASK_NUMBER / PARENT_TASK_NAME — identify the parent task against which the relationship is anchored, where applicable.
- RELATIONSHIP_TYPE / COMMENTS — classify and describe the linkage.
- OBJECT_RELATIONSHIP_ID — the surrogate key of the underlying relationship row in PA_OBJECT_RELATIONSHIPS.
Common Use Cases and Queries
Typical scenarios include identifying all sub-projects beneath a given parent, resolving the parent of a known sub-project, and feeding relationship data into allocation, deliverable, or funding-source processing.
SELECT sub_project_id,
sub_project_number,
relationship_type
FROM apps.pa_fin_structures_links_v
WHERE parent_project_id = :p_parent_project_id;
SELECT parent_project_id,
parent_project_number,
parent_task_number
FROM apps.pa_fin_structures_links_v
WHERE sub_project_id = :p_sub_project_id;
Because the object is unsupported for direct access, custom reporting should be limited to controlled read-only queries and reviewed against Oracle's support policy before deployment.
-
APPS.OKE_ALLOCATION_PVT SQL Statements
12.2.2
-
APPS.OKE_ALLOCATION_PVT SQL Statements
12.1.1
-
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_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_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_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_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 ,
-
TABLE: PA.PA_STRUCTURES_TASKS_TMP
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_STRUCTURES_TASKS_TMP, object_name:PA_STRUCTURES_TASKS_TMP, status:VALID,
-
APPS.OKE_CLE_PVT SQL Statements
12.2.2
-
APPS.PA_PROJ_STRUCTURE_UTILS SQL Statements
12.1.1
-
APPS.OKE_CLE_PVT SQL Statements
12.1.1
-
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 ,
-
TABLE: PA.PA_STRUCTURES_TASKS_TMP
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_STRUCTURES_TASKS_TMP, object_name:PA_STRUCTURES_TASKS_TMP, status:VALID,
-
APPS.PA_PROJ_STRUCTURE_UTILS SQL Statements
12.2.2
-
APPS.OKE_BILLING_EVENT_PUB SQL Statements
12.2.2
-
APPS.OKE_FUNDSOURCE_PVT SQL Statements
12.1.1
-
APPS.OKE_FUNDSOURCE_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OKE_ALLOCATION_PVT
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
-
PACKAGE BODY: APPS.PA_PROJ_STRUCTURE_UTILS
12.1.1
-
PACKAGE BODY: APPS.PA_PROJ_STRUCTURE_UTILS
12.2.2
-
APPS.PA_PROJ_STRUCTURE_PUB SQL Statements
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_DELIVERABLE_PVT dependencies on PA_PROJECTS_ALL
12.1.1
-
APPS.OKE_ALLOCATION_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
12.1.1
-
APPS.OKE_ALLOCATION_PVT dependencies on DUAL
12.2.2
-
APPS.PA_PROJ_STRUCTURE_PUB dependencies on PA_STRUCTURES_TASKS_TMP
12.1.1
-
APPS.OKE_CLE_PVT dependencies on PA_FIN_STRUCTURES_LINKS_V
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_BILLING_EVENT_PUB dependencies on PA_PROJECTS_ALL
12.2.2
-
APPS.PA_PROJ_STRUCTURE_PUB dependencies on PA_STRUCTURES_TASKS_TMP
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_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_DELIVERABLE_PVT dependencies on PA_TASKS
12.2.2
-
APPS.PA_PROJ_STRUCTURE_PUB SQL Statements
12.2.2
-
APPS.OKE_CLE_PVT dependencies on PA_TASKS
12.2.2
-
APPS.OKE_CLE_PVT dependencies on PA_TASKS
12.1.1