Search Results ahl_unit_config_headers
Overview
The AHL_UNIT_CONFIG_HEADERS table is a core data object within the Oracle E-Business Suite Complex Maintenance, Repair, and Overhaul (CMRO) application. It serves as the primary repository for defining and managing unit configurations, which represent complex, configurable equipment or assets within the maintenance framework. A unit configuration is instantiated from a master configuration template, which defines the allowable structure and components. This table stores the header-level information for these live, operational instances, forming the structural backbone for managing the hierarchical relationships and lifecycles of complex assets throughout their service period.
Key Information Stored
The table's primary identifier is the UNIT_CONFIG_HEADER_ID, a system-generated unique key. The NAME column is also a unique key, enforcing business-level uniqueness for the unit configuration. The table's structure establishes critical relationships: the MASTER_CONFIG_ID foreign key links the unit to its source template in AHL_MC_HEADERS_B. The CSI_ITEM_INSTANCE_ID links the configuration to a specific physical item instance in the Installed Base (CSI). Perhaps most importantly, the PARENT_UC_HEADER_ID column enables the representation of hierarchical equipment structures by creating a recursive relationship within the same table, allowing a unit configuration to be a child of another. Additional columns typically track lifecycle status, effective dates, and audit information.
Common Use Cases and Queries
This table is central to CMRO processes. Common use cases include generating asset hierarchies for maintenance planning, tracing the configuration history of a unit, and identifying all components within a parent asset. A frequent reporting need is to retrieve the complete hierarchical tree for a top-level unit. This can be achieved using hierarchical SQL queries (CONNECT BY or recursive WITH clauses in Oracle). For example, to find all child configurations for a given unit:
- SELECT LEVEL, ucht.NAME, ucht.UNIT_CONFIG_HEADER_ID FROM AHL_UNIT_CONFIG_HEADERS ucht START WITH ucht.NAME = '<Top_Unit_Name>' CONNECT BY PRIOR ucht.UNIT_CONFIG_HEADER_ID = ucht.PARENT_UC_HEADER_ID;
Another common pattern joins to the Installed Base to fetch item details: SELECT uch.NAME, csi.INSTANCE_NUMBER, csi.SERIAL_NUMBER FROM AHL_UNIT_CONFIG_HEADERS uch, CSI_ITEM_INSTANCES csi WHERE uch.CSI_ITEM_INSTANCE_ID = csi.INSTANCE_ID;
Related Objects
The table maintains extensive relationships within the AHL schema, as documented by its foreign keys. Key related objects include:
- AHL_MC_HEADERS_B: Joined via MASTER_CONFIG_ID to reference the source master configuration template.
- CSI_ITEM_INSTANCES: Joined via CSI_ITEM_INSTANCE_ID to link the logical configuration to a physical asset in Installed Base.
- AHL_UNIT_CONFIG_HEADERS (Self-Referential): Joined via PARENT_UC_HEADER_ID to build equipment hierarchies.
- AHL_UC_HEADERS_H: A history table that tracks changes to records in this header table, joined on UNIT_CONFIG_HEADER_ID and PARENT_UC_HEADER_ID.
- AHL_PART_CHANGES, AHL_PC_ASSOCIATIONS, AHL_UF_HEADERS: Key transactional tables that reference the unit configuration header to track part changes, associations, and unit effectivities, respectively.
-
Table: AHL_UNIT_CONFIG_HEADERS
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UNIT_CONFIG_HEADERS, object_name:AHL_UNIT_CONFIG_HEADERS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Unit Configuration represents a complex equipment. A unit configuration is constructed from a master configuration template. This table stores information about the unit configuration name and the master configuration it was constructed fro , implementation_dba_data: AHL.AHL_UNIT_CONFIG_HEADERS ,
-
Table: AHL_UNIT_CONFIG_HEADERS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UNIT_CONFIG_HEADERS, object_name:AHL_UNIT_CONFIG_HEADERS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Unit Configuration represents a complex equipment. A unit configuration is constructed from a master configuration template. This table stores information about the unit configuration name and the master configuration it was constructed fro , implementation_dba_data: AHL.AHL_UNIT_CONFIG_HEADERS ,
-
Table: AHL_UC_HEADERS_H
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UC_HEADERS_H, object_name:AHL_UC_HEADERS_H, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: History table of ahl_unit_config_headers. To keep the changes of each unit configuration. , implementation_dba_data: AHL.AHL_UC_HEADERS_H ,
-
Table: AHL_UC_HEADERS_H
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UC_HEADERS_H, object_name:AHL_UC_HEADERS_H, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: History table of ahl_unit_config_headers. To keep the changes of each unit configuration. , implementation_dba_data: AHL.AHL_UC_HEADERS_H ,
-
View: AHL_UC_HEADER_PATHS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UC_HEADER_PATHS_V, object_name:AHL_UC_HEADER_PATHS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the unit/subunit position/header/instance information. , implementation_dba_data: APPS.AHL_UC_HEADER_PATHS_V ,
-
View: AHL_UC_HEADER_PATHS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UC_HEADER_PATHS_V, object_name:AHL_UC_HEADER_PATHS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the unit/subunit position/header/instance information. , implementation_dba_data: APPS.AHL_UC_HEADER_PATHS_V ,
-
View: AHL_UNIT_CONFIG_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_CONFIG_HEADERS_V, object_name:AHL_UNIT_CONFIG_HEADERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view includes all the information related to unit configuration headers, master configuration headers, and the hierarchy of uc and its parent UC, root UC and parent instance. , implementation_dba_data: APPS.AHL_UNIT_CONFIG_HEADERS_V ,
-
View: AHL_UNIT_CONFIG_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_CONFIG_HEADERS_V, object_name:AHL_UNIT_CONFIG_HEADERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view includes all the information related to unit configuration headers, master configuration headers, and the hierarchy of uc and its parent UC, root UC and parent instance. , implementation_dba_data: APPS.AHL_UNIT_CONFIG_HEADERS_V ,
-
Table: AHL_PC_ASSOCIATIONS
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_PC_ASSOCIATIONS, object_name:AHL_PC_ASSOCIATIONS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about Product Classification Node Association with Unit or Part. , implementation_dba_data: AHL.AHL_PC_ASSOCIATIONS ,
-
Table: AHL_UF_HEADERS
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UF_HEADERS, object_name:AHL_UF_HEADERS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about utilization forecast header. , implementation_dba_data: AHL.AHL_UF_HEADERS ,
-
Table: AHL_PART_CHANGES
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_PART_CHANGES, object_name:AHL_PART_CHANGES, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Table to store part change transaction details. , implementation_dba_data: AHL.AHL_PART_CHANGES ,
-
Table: AHL_UNIT_SCHEDULES
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UNIT_SCHEDULES, object_name:AHL_UNIT_SCHEDULES, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Event describing usage of a configured unit for a specific time period, such as an airplane flight. , implementation_dba_data: AHL.AHL_UNIT_SCHEDULES ,
-
Table: AHL_PC_ASSOCIATIONS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_PC_ASSOCIATIONS, object_name:AHL_PC_ASSOCIATIONS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about Product Classification Node Association with Unit or Part. , implementation_dba_data: AHL.AHL_PC_ASSOCIATIONS ,
-
Table: AHL_UF_HEADERS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UF_HEADERS, object_name:AHL_UF_HEADERS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about utilization forecast header. , implementation_dba_data: AHL.AHL_UF_HEADERS ,
-
Table: AHL_MC_HEADERS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MC_HEADERS_B, object_name:AHL_MC_HEADERS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Stores Master Configuration Header details , implementation_dba_data: AHL.AHL_MC_HEADERS_B ,
-
Table: AHL_MC_HEADERS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MC_HEADERS_B, object_name:AHL_MC_HEADERS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: AHL.AHL_MC_HEADERS_B ,
-
Table: AHL_PART_CHANGES
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_PART_CHANGES, object_name:AHL_PART_CHANGES, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Table to store part change transaction details. , implementation_dba_data: AHL.AHL_PART_CHANGES ,
-
Table: AHL_UNIT_EFFECTIVITIES_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UNIT_EFFECTIVITIES_B, object_name:AHL_UNIT_EFFECTIVITIES_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the applicable maintenance requirements for all units and their components. , implementation_dba_data: AHL.AHL_UNIT_EFFECTIVITIES_B ,
-
View: AHL_UNIT_HEADER_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_HEADER_DETAILS_V, object_name:AHL_UNIT_HEADER_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve valid Unit Configuration header details. , implementation_dba_data: APPS.AHL_UNIT_HEADER_DETAILS_V ,
-
View: AHL_UNIT_HEADER_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_HEADER_DETAILS_V, object_name:AHL_UNIT_HEADER_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve valid Unit Configuration header details. , implementation_dba_data: APPS.AHL_UNIT_HEADER_DETAILS_V ,
-
View: AHL_PC_ASSOCIATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_PC_ASSOCIATIONS_V, object_name:AHL_PC_ASSOCIATIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view contains info of Item/Unit associated to PC Node , implementation_dba_data: APPS.AHL_PC_ASSOCIATIONS_V ,
-
View: AHL_PC_ASSOCIATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_PC_ASSOCIATIONS_V, object_name:AHL_PC_ASSOCIATIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view contains info of Item/Unit associated to PC Node , implementation_dba_data: APPS.AHL_PC_ASSOCIATIONS_V ,
-
View: AHL_SIMULATION_FORECAST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_SIMULATION_FORECAST_V, object_name:AHL_SIMULATION_FORECAST_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_SIMULATION_FORECAST_V ,
-
View: AHL_UNIT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_DETAILS_V, object_name:AHL_UNIT_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Unit Configuration node details ( item and position information ). , implementation_dba_data: APPS.AHL_UNIT_DETAILS_V ,
-
View: AHL_UNIT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_DETAILS_V, object_name:AHL_UNIT_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Unit Configuration node details ( item and position information ). , implementation_dba_data: APPS.AHL_UNIT_DETAILS_V ,