Search Results jtf_rs_resource_skills
Overview
The JTF_RS_RESOURCE_SKILLS table is a core data object within the Oracle E-Business Suite CRM Foundation (JTF) module. It functions as the central repository for associating specific skills with individual resources, enabling detailed competency and qualification management. This table is fundamental to resource management applications, supporting processes such as resource search and assignment based on skill profiles, workforce planning, and skills gap analysis. Its data is critical for ensuring that the right resources, possessing the required expertise, are matched to appropriate tasks, projects, or service requests across the EBS suite.
Key Information Stored
The table's primary purpose is to define the relationship between a resource and a skill. Its key columns, as indicated by the provided metadata, include the primary key RESOURCE_SKILL_ID, which uniquely identifies each skill assignment record. While the full column list is not detailed in the excerpt, standard implementation of such a table would typically store the RESOURCE_ID (linking to JTF_RS_RESOURCE_EXTNS or similar), the SKILL_ID (linking to a skills master table like JTF_RS_SKILLS_B), and attributes describing the proficiency level, rating source, or certification dates. Additional audit columns such as CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY are also standard.
Common Use Cases and Queries
A primary use case is querying for resources that possess a specific set of skills for project staffing or service assignment. For example, a report to find all resources with a 'Java Programming' skill at an 'Expert' level would join this table to the resource and skill master tables. Another common scenario is generating a comprehensive skills inventory for a department or team. Sample SQL often involves filtering and aggregation:
- Finding resources by skill name:
SELECT r.resource_name FROM jtf_rs_resource_extns r, jtf_rs_resource_skills rs, jtf_rs_skills_b s WHERE r.resource_id = rs.resource_id AND rs.skill_id = s.skill_id AND s.skill_name = 'Database Administration'; - Counting skills per resource:
SELECT resource_id, COUNT(resource_skill_id) AS skill_count FROM jtf_rs_resource_skills GROUP BY resource_id;
Related Objects
The table is integrated into the CRM Foundation's resource management schema through foreign key relationships. As documented, its primary key constraint is JTF_RS_RESOURCE_SKILLS_PK on the RESOURCE_SKILL_ID column. It is a child table to the resource master (likely JTF_RS_RESOURCE_EXTNS via RESOURCE_ID) and the skills definition table (likely JTF_RS_SKILLS_B via SKILL_ID). These relationships ensure referential integrity for all skill assignments. The table is also referenced by various resource management views and APIs, such as those within the JTF_RS_RESOURCE_UTL_PUB package, which provide programmatic access for creating, updating, and querying resource skill data.
-
Table: JTF_RS_RESOURCE_SKILLS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_SKILLS, object_name:JTF_RS_RESOURCE_SKILLS, status:VALID, product: JTF - CRM Foundation , description: This table stores the skills for individual resource , implementation_dba_data: JTF.JTF_RS_RESOURCE_SKILLS ,
-
Table: JTF_RS_RESOURCE_SKILLS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_SKILLS, object_name:JTF_RS_RESOURCE_SKILLS, status:VALID, product: JTF - CRM Foundation , description: This table stores the skills for individual resource , implementation_dba_data: JTF.JTF_RS_RESOURCE_SKILLS ,