Search Results pa_resource_lists_u2




Overview

PA.PA_RESOURCE_LISTS_ALL_BG is a foundational container table in the Oracle Projects (PA) schema of Oracle E-Business Suite, present in both 12.1.1 and 12.2.2. It stores the master definitions of resource lists, which provide an effective mechanism for grouping a set of similar resources that are typically used for specific kinds of project work. Oracle Projects supports resource lists with up to a two-level hierarchy of resource groups and resources. Because resources are owned by a business group, they can be shared across operating units that share the same business group; this table consequently holds all resource lists defined within the system, while the PA_RESOURCE_LISTS view exposes only those owned by the business group specified in the implementation options under which the user is logged on.

The table is physically stored in the APPS_TS_TX_DATA tablespace with a PCT Free of 10, and its indexes reside in APPS_TS_TX_IDX. It serves as a central hub referenced throughout budgeting, planning, allocation, and resource-formatting functionality. From a Data Vault modeling perspective, the metadata's heuristic classification identifies this object as a hub: RESOURCE_LIST_ID acts as the durable business key around which surrounding references cluster.

Key Information Stored

Common Use Cases and Queries

Typical scenarios include identifying the default resource lists assigned to a project type, validating the list behind a budget or forecast version, and reporting which lists drive allocation rules.

  • Retrieve active lists for the current business group:
    SELECT resource_list_id, name, description FROM pa.pa_resource_lists_all_bg WHERE business_group_id = :p_bg AND (end_date_active IS NULL OR end_date_active > SYSDATE);
  • Trace the default list configured on a project type:
    SELECT pt.project_type, prl.name FROM pa.pa_project_types_all pt JOIN pa.pa_resource_lists_all_bg prl ON prl.resource_list_id = pt.default_resource_list_id;
  • Find resource lists consumed by planning formats or budget versions via PA_PLAN_RL_FORMATS.RESOURCE_LIST_ID and PA_BUDGET_VERSIONS.RESOURCE_LIST_ID for downstream reporting.

Related Objects