Search Results pa_plan_rl_formats_pk
Overview
The PA_PLAN_RL_FORMATS table is a core data structure within the Oracle E-Business Suite Projects (PA) module, specifically for releases 12.1.1 and 12.2.2. It functions as an intermediate junction or mapping table. Its primary role is to define and store the associations between Resource Lists and Resource Formats. This mapping is fundamental to the project planning and resource scheduling processes, enabling the system to determine which predefined format for displaying or grouping resources is applicable to a specific list of resources. The table's existence supports the flexible configuration of resource planning views and reports based on organizational needs.
Key Information Stored
The table's structure is designed to manage the many-to-many relationship between resource lists and formats. Its key columns are its primary key and the two foreign keys that establish the links. The PLAN_RL_FORMAT_ID column serves as the unique primary key identifier for each mapping record. The RESOURCE_LIST_ID column stores a foreign key reference to a specific resource list defined in the PA_RESOURCE_LISTS_ALL_BG table. The RES_FORMAT_ID column stores a foreign key reference to a specific resource format defined in the PA_RES_FORMATS_B table. Together, these two foreign key columns constitute the essential mapping data.
Common Use Cases and Queries
This table is primarily accessed by the application's internal logic during project planning activities, such as when a user applies a resource format to a team or resource list within the planning interface. Common reporting and diagnostic queries involve joining this table to its parent tables to audit configurations. A typical SQL pattern to retrieve all active mappings would be:
- SELECT prlf.plan_rl_format_id, prl.resource_list_name, prf.res_format_name
- FROM pa_plan_rl_formats prlf,
- pa_resource_lists_all_bg prl,
- pa_res_formats_b prf
- WHERE prlf.resource_list_id = prl.resource_list_id
- AND prlf.res_format_id = prf.res_format_id;
Administrators may query this table to troubleshoot missing format assignments or to understand the resource planning setup for a particular business group or project template.
Related Objects
PA_PLAN_RL_FORMATS has direct, documented relationships with two key master tables in the Projects module, as defined by its foreign key constraints:
- PA_RESOURCE_LISTS_ALL_BG: This table is referenced via the column PA_PLAN_RL_FORMATS.RESOURCE_LIST_ID. It stores the master definition of resource lists available for planning.
- PA_RES_FORMATS_B: This table is referenced via the column PA_PLAN_RL_FORMATS.RES_FORMAT_ID. It stores the master definition of resource formats, which control the display and grouping of resources in planning interfaces.
The table's primary key constraint, PA_PLAN_RL_FORMATS_PK, ensures the uniqueness of each mapping record based on the PLAN_RL_FORMAT_ID column.
-
Table: PA_PLAN_RL_FORMATS
12.1.1
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PLAN_RL_FORMATS, object_name:PA_PLAN_RL_FORMATS, status:VALID, product: PA - Projects , description: Intermediate table used to store the mappings between resource lists and resource formats. , implementation_dba_data: PA.PA_PLAN_RL_FORMATS ,
-
Table: PA_PLAN_RL_FORMATS
12.2.2
owner:PA, object_type:TABLE, fnd_design_data:PA.PA_PLAN_RL_FORMATS, object_name:PA_PLAN_RL_FORMATS, status:VALID, product: PA - Projects , description: Intermediate table used to store the mappings between resource lists and resource formats. , implementation_dba_data: PA.PA_PLAN_RL_FORMATS ,
-
eTRM - PA Tables and Views
12.2.2
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2