Search Results ahl_space_capabilities




Overview

The AHL_SPACE_CAPABILITIES table is a core data object within the Oracle E-Business Suite (EBS) module for Complex Maintenance, Repair, and Overhaul (AHL). It functions as a master table for defining and storing the specific capabilities or functions that can be performed within a defined physical space or location. In the context of service and maintenance operations, a "space" (such as a hangar bay, workshop station, or inspection pit) is not merely a location but a resource with defined attributes. This table establishes the link between a physical space and the types of work it is certified or equipped to handle, enabling precise scheduling, resource allocation, and compliance tracking for maintenance tasks.

Key Information Stored

While the provided metadata does not list all columns, the primary and foreign key structure reveals the essential data relationships. The central column is SPACE_CAPABILITY_ID, which serves as the unique primary key for each capability record. The critical foreign key column is SPACE_ID, which links each capability entry to a specific physical space defined in the AHL_SPACES_B table. The table's name and description imply it contains additional columns to describe the capability itself, which likely include a capability type or code, effective dates, status, and possibly attributes detailing capacity, certifications, or restrictions associated with performing that capability in the linked space.

Common Use Cases and Queries

This table is primarily used in resource scheduling and capacity planning within maintenance operations. A common business query is to identify all spaces qualified to perform a specific type of maintenance, such as "engine overhaul," to schedule a job. Conversely, planners may query all capabilities assigned to a particular space to understand its full utilization potential or constraints. Sample SQL to find capable spaces for a job would involve joining to AHL_SPACES_B for space details.

SELECT s.SPACE_NUMBER, s.DESCRIPTION
FROM AHL_SPACE_CAPABILITIES sc,
     AHL_SPACES_B s
WHERE sc.SPACE_ID = s.SPACE_ID
  AND sc.CAPABILITY_CODE = 'ENG_OVERHAUL'
  AND TRUNC(SYSDATE) BETWEEN sc.START_DATE_ACTIVE
                         AND NVL(sc.END_DATE_ACTIVE, TRUNC(SYSDATE));

Reporting use cases include generating capability matrices for facilities, auditing space certifications, and analyzing capacity bottlenecks for specific types of work.

Related Objects

  • AHL_SPACES_B: This is the primary parent table, as defined by the documented foreign key relationship. The column AHL_SPACE_CAPABILITIES.SPACE_ID references AHL_SPACES_B.SPACE_ID. This relationship ensures every capability is assigned to a valid, defined space.
  • AHL_SPACE_CAPABILITIES_PK: The primary key constraint on the SPACE_CAPABILITY_ID column, guaranteeing uniqueness for each record.
  • Other related objects not specified in the metadata but logically connected in the AHL schema would likely include tables for maintenance requirements (AHL_MR_HEADERS) and work orders (AHL_WORKORDERS), which would reference space capabilities indirectly through scheduling entities.