Search Results pa_resource_lists
Overview
PA_RESOURCE_LISTS is a PL/SQL view owned by the APPS schema in Oracle E-Business Suite, belonging to the Projects (PA) product family. It exposes resource lists defined for a business group, most notably those referenced in implementation options. A resource list is a reusable grouping of people, roles, or other resource definitions used by Oracle Projects for planning, budgeting, forecasting, and workplan assignment. The view presents a denormalized, language-aware, and business-group-filtered representation of these lists, making it suitable for reporting, concurrent programs, and integration extracts without requiring callers to handle the underlying multi-lingual and cross-business-group logic themselves.
The view has a status of VALID in ETRM releases 12.1.1 and 12.2.2, and is authorized for reporting consumption. Because it encapsulates profile-based filtering and translation joins, it is generally preferred over querying the base tables directly when the objective is to retrieve resource list names and descriptions for the current user's operating context.
Underlying Base Objects
The view text joins a synonym over the base table PA_RESOURCE_LISTS_ALL_BG (aliased R) to a synonym over the translation table PA_RESOURCE_LISTS_TL (aliased RTL) on RESOURCE_LIST_ID, constraining the translation to RTL.LANGUAGE = USERENV('LANG'). The base table stores all business-group-specific rows, while the TL table supplies the language-specific NAME and DESCRIPTION attributes.
Two packages participate in the filter logic. FND_PROFILE supplies the current value of PER_BUSINESS_GROUP_ID, and PA_CROSS_BUSINESS_GRP exposes the ISCROSSBGPROFILE result. The predicate returns rows where either the row's BUSINESS_GROUP_ID matches the profile business group and cross-business-group access is disabled, or cross-business-group access is enabled. This design enables multi-org-aware security without requiring each consumer to reimplement the rule.
Key Columns
- RESOURCE_LIST_ID — Primary key and join key to the translation table and dependent entities.
- NAME and DESCRIPTION — Translated, user-facing attributes sourced from PA_RESOURCE_LISTS_TL.
- PUBLIC_FLAG — Indicates whether the list is available to all users or restricted.
- GROUP_RESOURCE_TYPE_ID and JOB_GROUP_ID — Identify the resource type and job group associated with the list.
- START_DATE_ACTIVE and END_DATE_ACTIVE — Effective dating controlling when the list is usable.
- UNCATEGORIZED_FLAG — Marks lists intended for uncategorized resources.
- BUSINESS_GROUP_ID — Owning business group, central to the view's security predicate.
- ADW_NOTIFY_FLAG and USE_FOR_WP_FLAG — Control notification behavior and workplan usage.
- RESOURCE_LIST_TYPE and CONTROL_FLAG — Classify the list and govern control behavior.
- MIGRATION_CODE, RECORD_VERSION_NUMBER, and MIGRATED_RBS_VERSION_ID — Migration and versioning metadata, relevant to upgrades and Oracle Projects migration utilities.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical scenarios include validating which resource lists are visible to a business group, building LOV-style extracts, and auditing public versus private lists. A standard query retrieving active lists for the current context is:
SELECT resource_list_id, name, description, public_flag, start_date_active, end_date_active FROM pa_resource_lists WHERE NVL(public_flag,'N') = 'Y' AND SYSDATE BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE + 1) ORDER BY name;
To locate lists associated with a specific resource type or job group, filter on group_resource_type_id or job_group_id. For upgrades and migration reconciliation, join on migrated_rbs_version_id. Because the view already resolves business-group security and translation, reports built over it behave consistently across 12.1.1 and 12.2.2 and remain insulated from the underlying _ALL_BG and _TL table structure.
-
View: PA_RESOURCE_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_LISTS, object_name:PA_RESOURCE_LISTS, status:VALID, product: PA - Projects , description: Brief Description : View that displays resource lists for the business group in implementation options Comprehensive Description : View that displays resource lists for the business group in implementation options. , implementation_dba_data: APPS.PA_RESOURCE_LISTS ,
-
View: PA_RESOURCE_LISTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_RESOURCE_LISTS, object_name:PA_RESOURCE_LISTS, status:VALID, product: PA - Projects , description: Brief Description : View that displays resource lists for the business group in implementation options Comprehensive Description : View that displays resource lists for the business group in implementation options. , implementation_dba_data: APPS.PA_RESOURCE_LISTS ,
-
VIEW: APPS.PA_BUDGET_RESOURCE_LISTS_V
12.1.1
-
VIEW: APPS.PA_BUDGET_RESOURCE_LISTS_V
12.2.2
-
VIEW: APPS.PA_ADW_RES_LISTS_B_V
12.2.2
-
VIEW: APPS.PA_QRY_RESOURCE_LISTS_V
12.1.1
-
VIEW: APPS.PA_RESOURCE_LIST_V
12.2.2
-
VIEW: APPS.PA_QUERY_RES_LIST_MEMBERS_V
12.1.1
-
VIEW: APPS.PA_QUERY_RES_LIST_MEMBERS_V
12.2.2
-
View: PA_BUDGET_RESOURCE_LISTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_RESOURCE_LISTS_V, object_name:PA_BUDGET_RESOURCE_LISTS_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_BUDGET_RESOURCE_LISTS_V ,
-
VIEW: APPS.PA_LOWEST_LEVEL_RESOURCES_V
12.2.2
-
VIEW: APPS.GMS_BUDGETARY_CONTROL_PROJ_V
12.1.1
-
VIEW: APPS.PA_RESOURCE_LISTS_ACTIVE_V
12.2.2
-
VIEW: APPS.PA_ADW_RES_LISTS_B_V
12.1.1
-
VIEW: APPS.GMS_BUDGETARY_CONTROL_PROJ_V
12.2.2
-
VIEW: APPS.PA_BUDGETARY_CONTROL_PROJ_V
12.1.1
-
View: PA_QUERY_RES_LIST_MEMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUERY_RES_LIST_MEMBERS_V, object_name:PA_QUERY_RES_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: This view displays all the Resource List Members which have been defined for a Resource List , implementation_dba_data: APPS.PA_QUERY_RES_LIST_MEMBERS_V ,
-
VIEW: APPS.PA_RESOURCE_LIST_V
12.1.1
-
VIEW: APPS.PA_QRY_RESOURCE_LISTS_V
12.2.2
-
VIEW: APPS.PA_BUDG_CONTROL_RES_GRP_V
12.2.2
-
View: PA_BUDGET_RESOURCE_LISTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_BUDGET_RESOURCE_LISTS_V, object_name:PA_BUDGET_RESOURCE_LISTS_V, status:VALID, product: PA - Projects , description: 10Sc Only , implementation_dba_data: APPS.PA_BUDGET_RESOURCE_LISTS_V ,
-
VIEW: APPS.PA_RESOURCE_LIST_GROUPS_V
12.2.2
-
VIEW: APPS.PA_RESOURCE_LIST_GROUPS_V
12.1.1
-
VIEW: APPS.PA_CHILD_RESOURCES_V
12.2.2
-
VIEW: APPS.PA_RESOURCE_LIST_USES_V
12.1.1
-
VIEW: APPS.PA_RESOURCE_LIST_USES_V
12.2.2
-
VIEW: APPS.GMS_BUDG_CONTROL_RES_GRP_V
12.1.1
-
VIEW: APPS.PA_LOWEST_LEVEL_RESOURCES_V
12.1.1
-
VIEW: APPS.GMS_BUDG_CONTROL_RES_GRP_V
12.2.2
-
VIEW: APPS.PA_RESOURCE_LISTS_ACTIVE_V
12.1.1
-
VIEW: APPS.PA_CHILD_RESOURCES_V
12.1.1
-
View: PA_QUERY_RES_LIST_MEMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_QUERY_RES_LIST_MEMBERS_V, object_name:PA_QUERY_RES_LIST_MEMBERS_V, status:VALID, product: PA - Projects , description: This view displays all the Resource List Members which have been defined for a Resource List , implementation_dba_data: APPS.PA_QUERY_RES_LIST_MEMBERS_V ,
-
VIEW: APPS.PA_BUDGETARY_CONTROL_PROJ_V
12.2.2
-
VIEW: APPS.PA_BUDG_CONTROL_RES_GRP_V
12.1.1
-
VIEW: APPS.PA_BURDEN_COMPONENT_COST_V
12.1.1
-
VIEW: APPS.GMS_BUDGETARY_CONTROL_AWARD_V
12.1.1
-
VIEW: APPS.GMS_BUDGETARY_CONTROL_AWARD_V
12.2.2
-
VIEW: APPS.PA_BURDEN_COMPONENT_CMT_V
12.1.1
-
VIEW: APPS.PA_BURDEN_COMPONENT_COST_V
12.2.2
-
VIEW: APPS.PA_BURDEN_COMPONENT_CMT_V
12.2.2
-
APPS.PA_RESOURCE_PUB SQL Statements
12.2.2
-
VIEW: APPS.GMS_RES_V
12.2.2
-
VIEW: APPS.GMS_BUDGET_VERSIONS_BASELND_V
12.1.1
-
APPS.PA_RESOURCE_PUB SQL Statements
12.1.1
-
View: PA_ADW_RES_LISTS_B_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_ADW_RES_LISTS_B_V, object_name:PA_ADW_RES_LISTS_B_V, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PA_ADW_RES_LISTS_B_V ,
-
VIEW: APPS.PA_BUDGET_VERSIONS_BASELINED_V
12.1.1
-
VIEW: APPS.GMS_RESG_V
12.1.1
-
VIEW: APPS.GMS_RES_V
12.1.1
-
VIEW: APPS.GMS_BUDGET_VERSIONS_BASELND_V
12.2.2
-
VIEW: APPS.PA_BUDGET_VERSIONS_BASELINED_V
12.2.2