Search Results team_template_id




Overview

The PA_TEAM_TEMPLATES table is a core repository within Oracle E-Business Suite Projects (PA) module, specifically designed to store the master definitions of team templates. These templates serve as standardized, reusable blueprints for project team structures, enabling the rapid and consistent assignment of roles and personnel across multiple projects. As indicated by the metadata, these templates are system-wide entities, meaning they are not owned by a single project but are accessible across the entire instance for any user with the appropriate application privileges. This centralization promotes governance and standardization in project team planning and resource management.

Key Information Stored

The table's primary key, TEAM_TEMPLATE_ID, uniquely identifies each template record. While the provided metadata does not list all columns, the foreign key relationships reveal other critical data points. The ROLE_LIST_ID column links to the PA_ROLE_LISTS table, defining the set of project roles (e.g., Project Manager, Consultant, Analyst) that constitute the template's structure. Additional columns, not explicitly listed but typical for such configuration tables, would include fields for the template name (e.g., TEMPLATE_NAME), a description, effective dates, and creation/update audit information (CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE). The TEAM_TEMPLATE_ID is the central reference point for all downstream usage of the template.

Common Use Cases and Queries

The primary use case is the application of a team template to a specific project, which populates assignment records for planning or execution. Common reporting and validation queries involve listing available templates or examining their composition. For instance, to retrieve all active team templates with their associated role lists, a query might join PA_TEAM_TEMPLATES to PA_ROLE_LISTS. Troubleshooting often involves identifying which projects are using a specific template by joining PA_TEAM_TEMPLATES to PA_PROJECT_ASSIGNMENTS via the ASSIGNMENT_TEMPLATE_ID foreign key. A fundamental query to audit template usage is:

  • SELECT pt.TEAM_TEMPLATE_ID, pt.TEMPLATE_NAME, COUNT(pa.PROJECT_ID) AS PROJECT_COUNT FROM PA_TEAM_TEMPLATES pt LEFT JOIN PA_PROJECT_ASSIGNMENTS pa ON pt.TEAM_TEMPLATE_ID = pa.ASSIGNMENT_TEMPLATE_ID GROUP BY pt.TEAM_TEMPLATE_ID, pt.TEMPLATE_NAME;

Related Objects

As per the documented foreign keys, PA_TEAM_TEMPLATES has integral relationships with several key project tables. PA_ROLE_LISTS is referenced via ROLE_LIST_ID, defining the role structure for the template. PA_PROJECT_ASSIGNMENTS references the template via ASSIGNMENT_TEMPLATE_ID, indicating where the template has been applied to create specific project assignments. PA_PROJECT_SUBTEAMS references the table via OBJECT_ID, linking templates to subteam definitions for complex project hierarchies. These relationships underscore the table's role as a master source: a single template definition in PA_TEAM_TEMPLATES can govern the team structure for numerous project assignments and subteams across the system.

  • Table: PA_TEAM_TEMPLATES 12.2.2

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_TEAM_TEMPLATES,  object_name:PA_TEAM_TEMPLATES,  status:VALID,  product: PA - Projectsdescription: PA_TEAM_TEMPLATES stored details of the team templates. The templates are system-wide and accessible to all with appropriate privileges within the system. ,  implementation_dba_data: PA.PA_TEAM_TEMPLATES

  • Table: PA_TEAM_TEMPLATES 12.1.1

    owner:PA,  object_type:TABLE,  fnd_design_data:PA.PA_TEAM_TEMPLATES,  object_name:PA_TEAM_TEMPLATES,  status:VALID,  product: PA - Projectsdescription: PA_TEAM_TEMPLATES stored details of the team templates. The templates are system-wide and accessible to all with appropriate privileges within the system. ,  implementation_dba_data: PA.PA_TEAM_TEMPLATES

  • View: PA_TEAM_TEMPLATES_V 12.1.1

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_TEAM_TEMPLATES_V,  object_name:PA_TEAM_TEMPLATES_V,  status:VALID,  product: PA - Projectsimplementation_dba_data: APPS.PA_TEAM_TEMPLATES_V

  • View: PA_TEAM_TEMPLATES_V 12.2.2

    owner:APPS,  object_type:VIEW,  fnd_design_data:PA.PA_TEAM_TEMPLATES_V,  object_name:PA_TEAM_TEMPLATES_V,  status:VALID,  product: PA - Projectsimplementation_dba_data: APPS.PA_TEAM_TEMPLATES_V