Search Results resource_skill_id
Overview
The AHL_RESOURCE_SKILLS table is a core data object within the Complex Maintenance, Repair, and Overhaul (AHL) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It serves as a junction table, establishing and storing the formal relationships between maintenance resources defined within the AHL module and the detailed skill, competency, and certification data managed by the Human Resources (HR) system. Its primary role is to enable the qualification and matching of technical personnel or resources to specific maintenance tasks based on their verified proficiencies. Notably, the provided ETRM documentation explicitly states this table is flagged for obsolescence in a subsequent release, indicating its functionality is planned for migration or replacement.
Key Information Stored
The table's structure is designed to link an AHL resource to specific HR competency attributes. The primary identifier is the RESOURCE_SKILL_ID. The most critical foreign key columns define these relationships: AHL_RESOURCE_ID links to the AHL_RESOURCES table to identify the maintenance resource. The COMPETENCE_ID links to PER_COMPETENCES, defining the specific skill or knowledge area. To quantify proficiency, the RATING_LEVEL_ID links to PER_RATING_LEVELS, storing the assessed skill level. Finally, the QUALIFICATION_TYPE_ID links to PER_QUALIFICATION_TYPES, which can categorize the record as a certification, license, or other formal qualification type. This model allows a single resource to have multiple associated skill records with varying levels and types.
Common Use Cases and Queries
The primary use case is resource skill validation and assignment during work order planning and scheduling. Planners can query this table to find resources possessing the mandatory competencies for a job. A common reporting need is to list all certified resources for a specific skill. A sample SQL pattern for this would join the relevant HR tables to retrieve descriptive information:
- SELECT res.resource_name, comp.name competence, rl.name rating_level, qt.name qualification_type FROM ahl_resource_skills ars, ahl_resources res, per_competences comp, per_rating_levels rl, per_qualification_types qt WHERE ars.ahl_resource_id = res.resource_id AND ars.competence_id = comp.competence_id AND ars.rating_level_id = rl.rating_level_id AND ars.qualification_type_id = qt.qualification_type_id AND comp.name = 'Avionics Troubleshooting';
Another critical use case is ensuring data integrity during the decommissioning of this table, requiring scripts to analyze dependencies and migrate historical qualification data to any successor implementation.
Related Objects
AHL_RESOURCE_SKILLS is centrally connected to several key tables via foreign key constraints. Its main parent is AHL_RESOURCES (AHL_RESOURCE_ID), which defines the maintenance resource entity. The skill and competency definitions are sourced entirely from the HR schema: PER_COMPETENCES (COMPETENCE_ID), PER_RATING_LEVELS (RATING_LEVEL_ID), and PER_QUALIFICATION_TYPES (QUALIFICATION_TYPE_ID). Any custom reports, interfaces, or extensions that validate resource skills will likely reference this table. Its planned obsolescence suggests that future APIs or public views may be introduced to abstract this data, and developers should monitor official Oracle documentation for migration paths.
-
Table: AHL_RESOURCE_SKILLS
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RESOURCE_SKILLS, object_name:AHL_RESOURCE_SKILLS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the relationship between the ASO resource and HR's skill type, skill lvevl and certifiaction. It should be obsolete for next release. , implementation_dba_data: AHL.AHL_RESOURCE_SKILLS ,
-
Table: AHL_RESOURCE_SKILLS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RESOURCE_SKILLS, object_name:AHL_RESOURCE_SKILLS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the relationship between the ASO resource and HR's skill type, skill lvevl and certifiaction. It should be obsolete for next release. , implementation_dba_data: AHL.AHL_RESOURCE_SKILLS ,
-
View: AHL_RESOURCE_SKILLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_RESOURCE_SKILLS_V, object_name:AHL_RESOURCE_SKILLS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Obsolete , implementation_dba_data: APPS.AHL_RESOURCE_SKILLS_V ,
-
View: AHL_RESOURCE_SKILLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_RESOURCE_SKILLS_V, object_name:AHL_RESOURCE_SKILLS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Obsolete , implementation_dba_data: APPS.AHL_RESOURCE_SKILLS_V ,