Search Results resource_source_id
Overview
PA_PROJECT_PARTIES_ALL_V is a Projects (PA) module view that resolves the relationship between project-level resource assignments and their corresponding Trading Community Architecture (TCA) party records. Its principal role is to translate the internal resource identifier carried on a project assignment (RESOURCE_SOURCE_ID, typically a PERSON_ID from the HR/per-person source) into the HZ_PARTIES.PARTY_ID and PARTY_NAME values used throughout Oracle E-Business Suite for party-centric reporting and integration.
Because project staffing records in PA reference resources through the resource source identifier, downstream consumers — receivables, CRM, grants, and custom reporting layers — often need the TCA party identifier instead. This view performs that translation directly, joining the project parties data to HZ_PARTIES on a derived original-system reference. It is therefore a convenience view for reporting and integration rather than a transactional base object. Per the ETRM metadata, the view is not documented as implemented in this database, and no base objects are formally listed, so its column contract is best confirmed against the live data dictionary in the target instance.
Underlying Base Objects
The documented view text is:
- SELECT DISTINCT PARTY_ID, PARTY_NAME, PROJECT_ID, RESOURCE_SOURCE_ID FROM PA_PROJECT_PARTIES_V, HZ_PARTIES WHERE HZ_PARTIES.ORIG_SYSTEM_REFERENCE = 'PER:' || RESOURCE_SOURCE_ID
Accordingly, the view is defined over two documented sources: the base view PA_PROJECT_PARTIES_V and the TCA table HZ_PARTIES. The join is not a direct key relationship; it is constructed by concatenating the literal prefix 'PER:' with the RESOURCE_SOURCE_ID and matching that composite string against HZ_PARTIES.ORIG_SYSTEM_REFERENCE. In TCA, ORIG_SYSTEM_REFERENCE identifies the originating application record for a party — here, a person in the PER (Human Resources) source. This construction means the view only returns rows where the party was created from a matching person source, and the DISTINCT clause eliminates duplicate projections caused by the many-to-many potential of the join. The ETRM metadata lists no further base objects, so no additional PA tables such as PA_PROJECT_PARTIES or PA_RESOURCES are documented as participating.
Key Columns
- PARTY_ID — The unique TCA party identifier for the person associated with the project resource. This is the canonical party key used across HZ tables and downstream applications.
- PARTY_NAME — The party name as stored in HZ_PARTIES, typically the person's display name.
- PROJECT_ID — The project to which the resource/party assignment applies; the primary link back into the PA project hierarchy.
- RESOURCE_SOURCE_ID — The source-system identifier for the assigned resource, resolved as a person ID in this view. This is the column users most often search for when tracing staffing records.
Common Use Cases and Queries
Typical uses include listing project team members with their TCA party identity, reconciling PA resource assignments to party records, and feeding project-party data into integrations that require PARTY_ID rather than a resource identifier.
Example — project parties for a specific project:
- SELECT project_id, party_id, party_name, resource_source_id FROM pa_project_parties_all_v WHERE project_id = :project_id;
Example — resolve a known resource to its party:
- SELECT party_id, party_name, project_id FROM pa_project_parties_all_v WHERE resource_source_id = :resource_source_id;
Because the join depends on the 'PER:'||RESOURCE_SOURCE_ID format of ORIG_SYSTEM_REFERENCE, confirm that the instance uses this convention and that the target party records originated from the PER source before relying on the view for reconciliation.
-
View: PA_PROJECT_PARTIES_ALL_V
12.1.1
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_PROJECT_PARTIES_ALL_V
12.2.2
product: PA - Projects , implementation_dba_data: Not implemented in this database ,
-
View: PA_RESOURCE_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_DETAILS_V, object_name:PA_RESOURCE_DETAILS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RESOURCE_DETAILS_V ,
-
View: PA_RESOURCE_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_DETAILS_V, object_name:PA_RESOURCE_DETAILS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RESOURCE_DETAILS_V ,
-
View: PA_RES_ADDRESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_ADDRESSES_V, object_name:PA_RES_ADDRESSES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RES_ADDRESSES_V ,
-
View: PA_RES_ADDRESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_ADDRESSES_V, object_name:PA_RES_ADDRESSES_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_RES_ADDRESSES_V ,
-
View: PA_PROJECTS_SEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_SEC_V, object_name:PA_PROJECTS_SEC_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_SEC_V ,
-
View: PA_C_RES_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_RES_DETAILS_V, object_name:PA_C_RES_DETAILS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_C_RES_DETAILS_V ,
-
View: PA_SECURED_PROJECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_SECURED_PROJECTS_V, object_name:PA_SECURED_PROJECTS_V, status:VALID, product: PA - Projects , description: This view shows a list of secured projects. , implementation_dba_data: APPS.PA_SECURED_PROJECTS_V ,
-
View: PA_C_RES_ASGN_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_RES_ASGN_V, object_name:PA_C_RES_ASGN_V, status:VALID, product: PA - Projects , description: PA_C_RES_ASGN_V is a view that identifies all resources that are available for use at this time or in the future. , implementation_dba_data: APPS.PA_C_RES_ASGN_V ,
-
View: PA_NOMINATE_RESOURCE_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_NOMINATE_RESOURCE_LOV_V, object_name:PA_NOMINATE_RESOURCE_LOV_V, status:VALID, product: PA - Projects , description: This view is for Project Super User. It stores information of all candidates. , implementation_dba_data: APPS.PA_NOMINATE_RESOURCE_LOV_V ,
-
View: PA_PROJECTS_SEC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_SEC_V, object_name:PA_PROJECTS_SEC_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_SEC_V ,
-
View: PA_C_ELIG_RESOURCE_V_R
12.2.2
product: PA - Projects , description: PA_C_ELIG_RESOURCE_V is a view that identifies all resources that are available for use at this time or in the future. , implementation_dba_data: Not implemented in this database ,
-
View: PA_C_ELIG_RESOURCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_ELIG_RESOURCE_V, object_name:PA_C_ELIG_RESOURCE_V, status:VALID, product: PA - Projects , description: PA_C_ELIG_RESOURCE_V is a view that identifies all resources that are available for use at this time or in the future. , implementation_dba_data: APPS.PA_C_ELIG_RESOURCE_V ,
-
View: PA_C_RES_DENORM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_RES_DENORM_V, object_name:PA_C_RES_DENORM_V, status:VALID, product: PA - Projects , description: PA_C_RES_DENORM_V is a view that identifies all resources that are available for use at this time or in the future based on resources available in Projects , implementation_dba_data: APPS.PA_C_RES_DENORM_V ,
-
View: PA_SECURED_PROJECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_SECURED_PROJECTS_V, object_name:PA_SECURED_PROJECTS_V, status:VALID, product: PA - Projects , description: This view shows a list of secured projects. , implementation_dba_data: APPS.PA_SECURED_PROJECTS_V ,
-
View: PA_C_RES_ASGN_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_RES_ASGN_V, object_name:PA_C_RES_ASGN_V, status:VALID, product: PA - Projects , description: PA_C_RES_ASGN_V is a view that identifies all resources that are available for use at this time or in the future. , implementation_dba_data: APPS.PA_C_RES_ASGN_V ,
-
View: PA_NOMINATE_RESOURCE_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_NOMINATE_RESOURCE_LOV_V, object_name:PA_NOMINATE_RESOURCE_LOV_V, status:VALID, product: PA - Projects , description: This view is for Project Super User. It stores information of all candidates. , implementation_dba_data: APPS.PA_NOMINATE_RESOURCE_LOV_V ,
-
View: PA_NOMINATE_RES_LOV_STAFF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_NOMINATE_RES_LOV_STAFF_V, object_name:PA_NOMINATE_RES_LOV_STAFF_V, status:VALID, product: PA - Projects , description: This view is for Staffing Manager. It stores information of all candidates that can be nominated by each staffing manager. , implementation_dba_data: APPS.PA_NOMINATE_RES_LOV_STAFF_V ,
-
View: PA_C_ELIG_RESOURCE_V_R
12.1.1
product: PA - Projects , description: PA_C_ELIG_RESOURCE_V is a view that identifies all resources that are available for use at this time or in the future. , implementation_dba_data: Not implemented in this database ,
-
View: PA_C_RES_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_RES_DETAILS_V, object_name:PA_C_RES_DETAILS_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_C_RES_DETAILS_V ,
-
View: PA_C_ELIG_RESOURCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_ELIG_RESOURCE_V, object_name:PA_C_ELIG_RESOURCE_V, status:VALID, product: PA - Projects , description: PA_C_ELIG_RESOURCE_V is a view that identifies all resources that are available for use at this time or in the future. , implementation_dba_data: APPS.PA_C_ELIG_RESOURCE_V ,
-
View: PA_C_RESOURCE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_RESOURCE_V, object_name:PA_C_RESOURCE_V, status:VALID, product: PA - Projects , description: PA_C_RESOURCE_V is a view that identifies all resources that are av available for use at this time or in the future. , implementation_dba_data: APPS.PA_C_RESOURCE_V ,
-
View: PA_NOMINATE_RES_LOV_STAFF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_NOMINATE_RES_LOV_STAFF_V, object_name:PA_NOMINATE_RES_LOV_STAFF_V, status:VALID, product: PA - Projects , description: This view is for Staffing Manager. It stores information of all candidates that can be nominated by each staffing manager. , implementation_dba_data: APPS.PA_NOMINATE_RES_LOV_STAFF_V ,
-
View: PA_C_RESOURCE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_RESOURCE_V, object_name:PA_C_RESOURCE_V, status:VALID, product: PA - Projects , description: PA_C_RESOURCE_V is a view that identifies all resources that are av available for use at this time or in the future. , implementation_dba_data: APPS.PA_C_RESOURCE_V ,
-
View: PA_PROJECTS_CUST_360_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_CUST_360_V, object_name:PA_PROJECTS_CUST_360_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_CUST_360_V ,
-
View: PA_C_JOBLEVEL_RES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_JOBLEVEL_RES_V, object_name:PA_C_JOBLEVEL_RES_V, status:VALID, product: PA - Projects , description: PA_C_JOBLEVEL_RES_V shows the job level and historical, current and future primary assignment information for all resources. , implementation_dba_data: APPS.PA_C_JOBLEVEL_RES_V ,
-
View: PA_ORG_PARTIES_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ORG_PARTIES_LOV_V, object_name:PA_ORG_PARTIES_LOV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ORG_PARTIES_LOV_V ,
-
View: PA_ORG_PARTIES_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ORG_PARTIES_LOV_V, object_name:PA_ORG_PARTIES_LOV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_ORG_PARTIES_LOV_V ,
-
View: PA_C_JOBLEVEL_RES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_C_JOBLEVEL_RES_V, object_name:PA_C_JOBLEVEL_RES_V, status:VALID, product: PA - Projects , description: PA_C_JOBLEVEL_RES_V shows the job level and historical, current and future primary assignment information for all resources. , implementation_dba_data: APPS.PA_C_JOBLEVEL_RES_V ,
-
View: PA_PROJECTS_CUST_360_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECTS_CUST_360_V, object_name:PA_PROJECTS_CUST_360_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECTS_CUST_360_V ,
-
View: PA_RBS_ELEMENT_NAMES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_ELEMENT_NAMES_VL, object_name:PA_RBS_ELEMENT_NAMES_VL, status:VALID, product: PA - Projects , description: This view shows the resource names for resources in resource breakdown structures. , implementation_dba_data: APPS.PA_RBS_ELEMENT_NAMES_VL ,
-
View: PA_RBS_ELEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_ELEMENTS_V, object_name:PA_RBS_ELEMENTS_V, status:VALID, product: PA - Projects , description: This view shows the element information and the parent-child relationship for all elements in a resource breakdown structure. , implementation_dba_data: APPS.PA_RBS_ELEMENTS_V ,
-
View: PA_RBS_ELEMENTS_AMG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_ELEMENTS_AMG_V, object_name:PA_RBS_ELEMENTS_AMG_V, status:VALID, product: PA - Projects , description: This view shows the element information and the parent-child relationship for all elements in a resource breakdown structure. , implementation_dba_data: APPS.PA_RBS_ELEMENTS_AMG_V ,
-
View: PA_RBS_ELEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_ELEMENTS_V, object_name:PA_RBS_ELEMENTS_V, status:VALID, product: PA - Projects , description: This view shows the element information and the parent-child relationship for all elements in a resource breakdown structure. , implementation_dba_data: APPS.PA_RBS_ELEMENTS_V ,
-
View: PA_RBS_ELEMENT_NAMES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_ELEMENT_NAMES_VL, object_name:PA_RBS_ELEMENT_NAMES_VL, status:VALID, product: PA - Projects , description: This view shows the resource names for resources in resource breakdown structures. , implementation_dba_data: APPS.PA_RBS_ELEMENT_NAMES_VL ,
-
View: PA_RBS_ELEMENTS_AMG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RBS_ELEMENTS_AMG_V, object_name:PA_RBS_ELEMENTS_AMG_V, status:VALID, product: PA - Projects , description: This view shows the element information and the parent-child relationship for all elements in a resource breakdown structure. , implementation_dba_data: APPS.PA_RBS_ELEMENTS_AMG_V ,
-
View: PA_PARTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PARTIES_V, object_name:PA_PARTIES_V, status:VALID, product: PA - Projects , description: PA_PARTIES_V shows all the users in the system including HR and TCA people , implementation_dba_data: APPS.PA_PARTIES_V ,
-
View: PA_PARTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PARTIES_V, object_name:PA_PARTIES_V, status:VALID, product: PA - Projects , description: PA_PARTIES_V shows all the users in the system including HR and TCA people , implementation_dba_data: APPS.PA_PARTIES_V ,
-
View: PA_PROJ_PARTIES_PROG_EDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PARTIES_PROG_EDIT_V, object_name:PA_PROJ_PARTIES_PROG_EDIT_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_PARTIES_PROG_EDIT_V ,
-
View: PA_PROJ_PARTIES_PROG_EDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PARTIES_PROG_EDIT_V, object_name:PA_PROJ_PARTIES_PROG_EDIT_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_PARTIES_PROG_EDIT_V ,
-
View: PA_PROJ_PARTIES_PROG_EV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PARTIES_PROG_EV_V, object_name:PA_PROJ_PARTIES_PROG_EV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_PARTIES_PROG_EV_V ,
-
View: PA_PROJECT_LISTS_USER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_LISTS_USER_V, object_name:PA_PROJECT_LISTS_USER_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_LISTS_USER_V ,
-
View: PA_RESOURCE_AVAILABILITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_AVAILABILITY_V, object_name:PA_RESOURCE_AVAILABILITY_V, status:VALID, product: PA - Projects , description: PA_RESOURCE_AVAILABILITY_V is a view that shows all resources with their resource manager AND availability. , implementation_dba_data: APPS.PA_RESOURCE_AVAILABILITY_V ,
-
View: PA_RES_SCH_TIMELINE_ROWLBL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIMELINE_ROWLBL_V, object_name:PA_RES_SCH_TIMELINE_ROWLBL_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide row label data for the resource schedule timeline , implementation_dba_data: APPS.PA_RES_SCH_TIMELINE_ROWLBL_V ,
-
View: PA_RES_SCH_TIMELINE_ROWLBL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RES_SCH_TIMELINE_ROWLBL_V, object_name:PA_RES_SCH_TIMELINE_ROWLBL_V, status:VALID, product: PA - Projects , description: The purpose of this view is to provide row label data for the resource schedule timeline , implementation_dba_data: APPS.PA_RES_SCH_TIMELINE_ROWLBL_V ,
-
View: PA_PROJECT_LISTS_USER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJECT_LISTS_USER_V, object_name:PA_PROJECT_LISTS_USER_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJECT_LISTS_USER_V ,
-
View: PA_RESOURCE_AVAILABILITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_AVAILABILITY_V, object_name:PA_RESOURCE_AVAILABILITY_V, status:VALID, product: PA - Projects , description: PA_RESOURCE_AVAILABILITY_V is a view that shows all resources with their resource manager AND availability. , implementation_dba_data: APPS.PA_RESOURCE_AVAILABILITY_V ,
-
View: PA_PROJ_PARTIES_PROG_EV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_PROJ_PARTIES_PROG_EV_V, object_name:PA_PROJ_PARTIES_PROG_EV_V, status:VALID, product: PA - Projects , implementation_dba_data: APPS.PA_PROJ_PARTIES_PROG_EV_V ,
-
View: PA_RESOURCE_AVAIL_STAFF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_AVAIL_STAFF_V, object_name:PA_RESOURCE_AVAIL_STAFF_V, status:VALID, product: PA - Projects , description: PA_RESOURCE_AVAIL_STAFF_V is a view that shows all resources with their resource manager AND availability. , implementation_dba_data: APPS.PA_RESOURCE_AVAIL_STAFF_V ,