Search Results ahl_doc_file_assoc_tl
Overview
The AHL_DOC_FILE_ASSOC_TL table is a translation table within the Oracle E-Business Suite (EBS) module for Complex Maintenance, Repair, and Overhaul (AHL). Its primary role is to store translated, language-specific versions of textual data associated with document-file associations. This table supports the multi-language capabilities of the application by enabling the storage of user-defined content in multiple installed base languages. It operates as a child table to the base table AHL_DOC_FILE_ASSOC_B, holding the translated records while the base table stores the seed data in the primary installation language. This structure is a standard Oracle EBS pattern for enabling internationalization.
Key Information Stored
As a translation table (denoted by the "_TL" suffix), AHL_DOC_FILE_ASSOC_TL typically contains a core set of columns. While the specific column list is not detailed in the provided metadata, the structure universally includes a foreign key column (likely DOC_FILE_ASSOC_ID) linking back to the primary key of the AHL_DOC_FILE_ASSOC_B table. It also includes a LANGUAGE column storing the language code (e.g., 'US' for American English) and a SOURCE_LANG column indicating the source language of the original record. The table will contain one or more columns holding the actual translatable text, such as a description or title for the document-file association. Standard audit columns like CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN are also present.
Common Use Cases and Queries
The primary use case is to retrieve user-facing textual information in a user's session language within the AHL module's document management features. For instance, when a user accesses a document attached to a service request or work order, the application queries this table to display the associated description in the correct language. A common query pattern involves joining the base and translation tables while filtering by the user's language setting.
SELECT b.primary_key_column, tl.description
FROM AHL_DOC_FILE_ASSOC_B b,
AHL_DOC_FILE_ASSOC_TL tl
WHERE b.DOC_FILE_ASSOC_ID = tl.DOC_FILE_ASSOC_ID
AND tl.LANGUAGE = USERENV('LANG')
AND [additional application filters];
Reporting on document attachments across different geographic regions with localized labels also relies on this table. Database administrators may query it to audit translation coverage for installed languages.
Related Objects
The table has a direct and fundamental relationship with its base table, as indicated in the description. The documented relationships are:
- Parent Table: AHL_DOC_FILE_ASSOC_B - The translation table AHL_DOC_FILE_ASSOC_TL is a child of this base table. They are joined via the primary key of the base table, which is stored as a foreign key column (typically DOC_FILE_ASSOC_ID) in the translation table.
Given its function, this table is also integral to the AHL module's document management APIs and user interfaces that present document association data. It may be referenced by standard Oracle Forms, OA Framework pages, and PL/SQL packages within the AHL product family that handle document attachments and translations.
-
Table: AHL_DOC_FILE_ASSOC_TL
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_TL, object_name:AHL_DOC_FILE_ASSOC_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the translated values for AHL_DOC_FILE_ASSOC_B , implementation_dba_data: AHL.AHL_DOC_FILE_ASSOC_TL ,
-
Table: AHL_DOC_FILE_ASSOC_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_TL, object_name:AHL_DOC_FILE_ASSOC_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the translated values for AHL_DOC_FILE_ASSOC_B , implementation_dba_data: AHL.AHL_DOC_FILE_ASSOC_TL ,
-
APPS.AHL_DOC_FILE_ASSOC_PKG dependencies on AHL_DOC_FILE_ASSOC_TL
12.2.2
-
APPS.AHL_DOC_FILE_ASSOC_PKG dependencies on AHL_DOC_FILE_ASSOC_TL
12.1.1
-
APPS.AHL_DOC_FILE_ASSOC_PKG SQL Statements
12.2.2
-
APPS.AHL_DOC_FILE_ASSOC_PKG SQL Statements
12.1.1
-
VIEW: AHL.AHL_DOC_FILE_ASSOC_TL#
12.2.2
owner:AHL, object_type:VIEW, object_name:AHL_DOC_FILE_ASSOC_TL#, status:VALID,
-
APPS.AHL_DOC_FILE_ASSOC_PKG dependencies on FND_LANGUAGES
12.1.1
-
APPS.AHL_DOC_FILE_ASSOC_PKG dependencies on FND_LANGUAGES
12.2.2
-
VIEW: AHL.AHL_DOC_FILE_ASSOC_TL#
12.2.2
-
PACKAGE BODY: APPS.AHL_DOC_FILE_ASSOC_PKG
12.2.2
-
VIEW: APPS.AHL_DOC_FILE_ASSOC_VL
12.1.1
-
SYNONYM: APPS.AHL_DOC_FILE_ASSOC_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AHL_DOC_FILE_ASSOC_TL, status:VALID,
-
SYNONYM: APPS.AHL_DOC_FILE_ASSOC_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_DOC_FILE_ASSOC_TL, status:VALID,
-
PACKAGE BODY: APPS.AHL_DOC_FILE_ASSOC_PKG
12.1.1
-
VIEW: APPS.AHL_DOC_FILE_ASSOC_VL
12.2.2
-
TABLE: AHL.AHL_DOC_FILE_ASSOC_TL
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_TL, object_name:AHL_DOC_FILE_ASSOC_TL, status:VALID,
-
APPS.AHL_DOC_FILE_ASSOC_PKG dependencies on AHL_DOC_FILE_ASSOC_B
12.2.2
-
TABLE: AHL.AHL_DOC_FILE_ASSOC_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_TL, object_name:AHL_DOC_FILE_ASSOC_TL, status:VALID,
-
APPS.AHL_DOC_FILE_ASSOC_PKG dependencies on AHL_DOC_FILE_ASSOC_B
12.1.1
-
Table: AHL_DOC_FILE_ASSOC_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_B, object_name:AHL_DOC_FILE_ASSOC_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores files association with document. As a part of 11.5.10 Enhancements , implementation_dba_data: AHL.AHL_DOC_FILE_ASSOC_B ,
-
PACKAGE BODY: APPS.AHL_DOC_FILE_ASSOC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_DOC_FILE_ASSOC_PKG, status:VALID,
-
PACKAGE BODY: APPS.AHL_DOC_FILE_ASSOC_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_DOC_FILE_ASSOC_PKG, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
View: AHL_DOC_FILE_ASSOC_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_VL, object_name:AHL_DOC_FILE_ASSOC_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: The view defiintions joins TL and B tables of the AHL_DOC_FILE_ASSOC , implementation_dba_data: APPS.AHL_DOC_FILE_ASSOC_VL ,
-
View: AHL_DOC_FILE_ASSOC_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_VL, object_name:AHL_DOC_FILE_ASSOC_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: The view defiintions joins TL and B tables of the AHL_DOC_FILE_ASSOC , implementation_dba_data: APPS.AHL_DOC_FILE_ASSOC_VL ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.AHL_DOC_FILE_ASSOC_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_VL, object_name:AHL_DOC_FILE_ASSOC_VL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.AHL_DOC_FILE_ASSOC_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_VL, object_name:AHL_DOC_FILE_ASSOC_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
eTRM - AHL Tables and Views
12.1.1
description: Ahl Production Workorder Operations Information stored in this table ,
-
eTRM - AHL Tables and Views
12.2.2
description: Ahl Production Workorder Operations Information stored in this table ,
-
eTRM - AHL Tables and Views
12.1.1
description: Ahl Production Workorder Operations Information stored in this table ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - AHL Tables and Views
12.2.2
description: Ahl Production Workorder Operations Information stored in this table ,
-
12.1.1 DBA Data
12.1.1