Search Results ahl_relationships_tl
Overview
The AHL_RELATIONSHIPS_TL table is a translation table within the Oracle E-Business Suite module for Complex Maintenance, Repair, and Overhaul (AHL). Its primary function was to store language-specific, translated descriptions for position hierarchy relationships defined in the master configuration of complex assets. This enabled the support of multilingual environments for maintenance operations. Critically, the official ETRM documentation explicitly states this table was obsoleted starting from application version 11.5.10. Therefore, in the contexts of releases 12.1.1 and 12.2.2, this table exists as a legacy artifact for backward compatibility and should not be used for new development or reporting. Its role has been superseded by other data structures within the AHL schema.
Key Information Stored
As a translation (TL) table, AHL_RELATIONSHIPS_TL holds the multilingual versions of descriptive text associated with a configuration relationship. Its structure is defined by a composite primary key and a column for the translated text. The key columns are RELATIONSHIP_ID, which is a foreign key to the base relationship data, and LANGUAGE, which identifies the translation language code (e.g., 'US' for American English). The primary data column would typically be named something like DESCRIPTION or RELATIONSHIP_NAME, although the specific column name is not detailed in the provided metadata. This column would contain the human-readable name or description of the positional relationship in the specified language.
Common Use Cases and Queries
Given its obsoleted status, direct operational use cases in EBS 12.x are non-existent. Historical or data migration queries might reference it. The primary historical query pattern involved joining this table to its base table to retrieve translated descriptions for a user's session language. A sample retrieval pattern, for reference only, would be:
- SELECT rel_tl.relationship_id, rel_tl.description, rel_tl.language
- FROM ahl_relationships_tl rel_tl
- WHERE rel_tl.language = USERENV('LANG');
All new reporting and application logic in releases 12.1.1 and 12.2.2 must utilize the successor objects that replaced this table's functionality.
Related Objects
The metadata defines a clear, singular relationship for this table. AHL_RELATIONSHIPS_TL is a child table that depends entirely on the base data table, AHL_RELATIONSHIPS_B. The relationship is enforced by a foreign key constraint where the RELATIONSHIP_ID column in AHL_RELATIONSHIPS_TL references the RELATIONSHIP_ID in AHL_RELATIONSHIPS_B. This is a standard design pattern for translation tables in Oracle EBS, where the "_B" table holds the base, non-translatable data, and the "_TL" table holds the language-specific translations. No other foreign key relationships from or to this table are documented in the provided metadata.
-
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_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 ,
-
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: 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 ,
-
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 ,
-
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 ,