Search Results ahl_relationships_b
Overview
The AHL_RELATIONSHIPS_B 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 is designated as an obsolete table from the earlier 11.5.10 release, indicating its structure and data are retained for backward compatibility and potential data migration purposes. The table's primary historical function was to store the position hierarchy of a master configuration. This hierarchical data is fundamental to defining the physical or logical structure of a complex asset, such as an aircraft or industrial machine, by establishing parent-child relationships between its constituent positions or assemblies.
Key Information Stored
The table's structure centers on defining hierarchical relationships within a master configuration. The primary identifier is the RELATIONSHIP_ID column, which serves as the table's primary key. The NAME column is also a unique key, enforcing uniqueness for relationship names. A critical column is PARENT_RELATIONSHIP_ID, which creates a recursive foreign key relationship back to the table's own primary key, enabling the construction of multi-level hierarchies. The table also links to other master data entities via foreign keys, including ITEM_GROUP_ID (referencing AHL_ITEM_GROUPS_B) and COUNTER_GROUP_ID (referencing CS_COUNTER_GROUPS), allowing relationships to be associated with specific groups of items or measurement counters.
Common Use Cases and Queries
Given its obsolete status, direct transactional use in EBS 12.x is limited; however, the table remains critical for historical reporting, data validation, and understanding legacy configuration structures. Common queries involve traversing the hierarchy or joining to related transactional tables. For instance, to retrieve a full hierarchical tree for a specific master configuration, one would use a hierarchical SQL query (CONNECT BY). Analyzing which relationships were associated with Maintenance Requirements (MRs) or part changes would involve joining to AHL_MR_EFFECTIVITIES or AHL_PART_CHANGES, respectively. A typical pattern for fetching a relationship and its parent name would be:
- SELECT r.RELATIONSHIP_ID, r.NAME, pr.NAME PARENT_NAME
- FROM AHL_RELATIONSHIPS_B r, AHL_RELATIONSHIPS_B pr
- WHERE r.PARENT_RELATIONSHIP_ID = pr.RELATIONSHIP_ID(+);
Related Objects
The table maintains integral relationships with several other AHL objects, as documented by its foreign key constraints. It has a recursive relationship with itself via PARENT_RELATIONSHIP_ID. For multilingual support, it is the base table for the translated AHL_RELATIONSHIPS_TL, joined on RELATIONSHIP_ID. Key transactional tables reference it, including AHL_EVENT_ASSOCIATIONS (for linking events to positions), AHL_MR_EFFECTIVITIES (for defining where maintenance requirements apply), and AHL_PART_CHANGES (for tracking part modifications at specific positions). It also references master data tables AHL_ITEM_GROUPS_B and CS_COUNTER_GROUPS to associate the hierarchical position with relevant item and counter groupings.
-
Table: AHL_RELATIONSHIPS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RELATIONSHIPS_B, object_name:AHL_RELATIONSHIPS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table is obsoleted tabled from 11.5.10 .. This table stores the position hierarchy of the master configuration. , implementation_dba_data: AHL.AHL_RELATIONSHIPS_B ,
-
Table: AHL_RELATIONSHIPS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RELATIONSHIPS_B, object_name:AHL_RELATIONSHIPS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table is obsoleted tabled from 11.5.10 .. This table stores the position hierarchy of the master configuration. , implementation_dba_data: AHL.AHL_RELATIONSHIPS_B ,
-
SYNONYM: APPS.AHL_RELATIONSHIPS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AHL_RELATIONSHIPS_B, status:VALID,
-
VIEW: AHL.AHL_RELATIONSHIPS_B#
12.2.2
owner:AHL, object_type:VIEW, object_name:AHL_RELATIONSHIPS_B#, status:VALID,
-
SYNONYM: APPS.AHL_RELATIONSHIPS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_RELATIONSHIPS_B, status:VALID,
-
View: AHL_RELATIONSHIPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_RELATIONSHIPS_VL, object_name:AHL_RELATIONSHIPS_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_RELATIONSHIPS_B and the translated columns from the table AHL_RELATIONSHIPS_TL. , implementation_dba_data: APPS.AHL_RELATIONSHIPS_VL ,
-
VIEW: APPS.AHL_RELATIONSHIPS_VL
12.2.2
-
VIEW: APPS.AHL_RELATIONSHIPS_VL
12.1.1
-
View: AHL_RELATIONSHIPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_RELATIONSHIPS_VL, object_name:AHL_RELATIONSHIPS_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_RELATIONSHIPS_B and the translated columns from the table AHL_RELATIONSHIPS_TL. , implementation_dba_data: APPS.AHL_RELATIONSHIPS_VL ,
-
VIEW: AHL.AHL_RELATIONSHIPS_B#
12.2.2
-
Table: AHL_RELATIONSHIPS_TL
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RELATIONSHIPS_TL, object_name:AHL_RELATIONSHIPS_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table is obsoleted tabled from 11.5.10 .. This table stores the translated position hierarchy information of the master configuration. , implementation_dba_data: AHL.AHL_RELATIONSHIPS_TL ,
-
Table: AHL_EVENT_ASSOCIATIONS
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_EVENT_ASSOCIATIONS, object_name:AHL_EVENT_ASSOCIATIONS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table is an intersection table to store the association between events and positions. , implementation_dba_data: AHL.AHL_EVENT_ASSOCIATIONS ,
-
Table: AHL_ITEM_GROUPS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_ITEM_GROUPS_B, object_name:AHL_ITEM_GROUPS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about item groups. Items are grouped so that each group could be used in positions multiple times. , implementation_dba_data: AHL.AHL_ITEM_GROUPS_B ,
-
Table: AHL_ITEM_GROUPS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_ITEM_GROUPS_B, object_name:AHL_ITEM_GROUPS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about item groups. Items are grouped so that each group could be used in positions multiple times. , implementation_dba_data: AHL.AHL_ITEM_GROUPS_B ,
-
Table: AHL_MR_EFFECTIVITIES
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES, object_name:AHL_MR_EFFECTIVITIES, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the effectivity of maintenance requirement. , implementation_dba_data: AHL.AHL_MR_EFFECTIVITIES ,
-
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_EVENT_ASSOCIATIONS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_EVENT_ASSOCIATIONS, object_name:AHL_EVENT_ASSOCIATIONS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table is an intersection table to store the association between events and positions. , implementation_dba_data: AHL.AHL_EVENT_ASSOCIATIONS ,
-
Table: CS_COUNTER_GROUPS
12.1.1
product: CS - Service , description: Counter group templates and instances , implementation_dba_data: Not implemented in this database ,
-
Table: CS_COUNTER_GROUPS
12.2.2
product: CS - Service , description: Counter group templates and instances , implementation_dba_data: Not implemented in this database ,
-
Table: AHL_RELATIONSHIPS_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RELATIONSHIPS_TL, object_name:AHL_RELATIONSHIPS_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table is obsoleted tabled from 11.5.10 .. This table stores the translated position hierarchy information of the master configuration. , implementation_dba_data: AHL.AHL_RELATIONSHIPS_TL ,
-
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 ,
-
View: AHL_POSITION_ALTERNATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_POSITION_ALTERNATES_V, object_name:AHL_POSITION_ALTERNATES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the tables AHL_RELATIONSHIPS_B and AHL_ITEM_ASSOCIATIONS_B , implementation_dba_data: APPS.AHL_POSITION_ALTERNATES_V ,
-
12.1.1 DBA Data
12.1.1
-
View: AHL_POSITION_ALTERNATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_POSITION_ALTERNATES_V, object_name:AHL_POSITION_ALTERNATES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the tables AHL_RELATIONSHIPS_B and AHL_ITEM_ASSOCIATIONS_B , implementation_dba_data: APPS.AHL_POSITION_ALTERNATES_V ,
-
VIEW: APPS.AHL_POSITION_ALTERNATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_POSITION_ALTERNATES_V, object_name:AHL_POSITION_ALTERNATES_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.AHL_POSITION_ALTERNATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_POSITION_ALTERNATES_V, object_name:AHL_POSITION_ALTERNATES_V, status:VALID,
-
TABLE: AHL.AHL_RELATIONSHIPS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RELATIONSHIPS_B, object_name:AHL_RELATIONSHIPS_B, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
TABLE: AHL.AHL_RELATIONSHIPS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RELATIONSHIPS_B, object_name:AHL_RELATIONSHIPS_B, status:VALID,
-
TABLE: AHL.AHL_RELATIONSHIPS_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RELATIONSHIPS_TL, object_name:AHL_RELATIONSHIPS_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.AHL_MC_ITEMGROUP_PVT dependencies on AHL_ITEM_ASSOCIATIONS_B
12.1.1
-
TABLE: AHL.AHL_RELATIONSHIPS_TL
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_RELATIONSHIPS_TL, object_name:AHL_RELATIONSHIPS_TL, status:VALID,
-
VIEW: APPS.AHL_RELATIONSHIPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_RELATIONSHIPS_VL, object_name:AHL_RELATIONSHIPS_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.AHL_RELATIONSHIPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_RELATIONSHIPS_VL, object_name:AHL_RELATIONSHIPS_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.AHL_MC_ITEMGROUP_PVT dependencies on AHL_ITEM_ASSOCIATIONS_B
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: AHL.AHL_EVENT_ASSOCIATIONS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_EVENT_ASSOCIATIONS, object_name:AHL_EVENT_ASSOCIATIONS, status:VALID,
-
TABLE: AHL.AHL_EVENT_ASSOCIATIONS
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_EVENT_ASSOCIATIONS, object_name:AHL_EVENT_ASSOCIATIONS, status:VALID,
-
VIEW: APPS.AHL_PART_CHANGES_V
12.1.1
owner:APPS, object_type:VIEW, object_name:AHL_PART_CHANGES_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.AHL_PART_CHANGES_V
12.2.2
owner:APPS, object_type:VIEW, object_name:AHL_PART_CHANGES_V, status:VALID,
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_V, object_name:AHL_MR_EFFECTIVITIES_V, status:VALID,
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_V, object_name:AHL_MR_EFFECTIVITIES_V, status:VALID,
-
TABLE: AHL.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,