Search Results ahl_doc_file_assoc_b
Overview
The AHL_DOC_FILE_ASSOC_B table is a core data object within the Oracle E-Business Suite Complex Maintenance, Repair, and Overhaul (CMRO) module. It serves as the foundational base table for managing the association between technical documents and their attached files. Its primary role is to establish and maintain the formal link between a specific document revision and a binary file stored within the database, enabling the CMRO application to support rich, file-based documentation essential for maintenance and repair operations. This functionality was introduced as part of the 11.5.10 enhancements to the AHL product line.
Key Information Stored
The table's structure is designed to manage the relationship metadata between documents and files. The central column is the ASSOCIATION_ID, which serves as the primary key uniquely identifying each document-file link. The REVISION_ID is a critical foreign key that links the association to a specific version of a document in the AHL_DOC_REVISIONS_B table. The FILE_ID column is another essential foreign key that references the FND_LOBS table, which is the Oracle EBS repository for storing the actual binary content of the attached file. Additional columns, not detailed in the excerpt but typical for such association tables, would include standard WHO columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) for auditing and the OBJECT_VERSION_NUMBER for optimistic locking.
Common Use Cases and Queries
This table is central to any process involving document attachments within CMRO. A common use case is retrieving all files attached to a specific document revision for display or download within the application. Developers and support personnel may query this table to diagnose missing attachments or to generate reports on document usage. A typical SQL pattern involves joining to the related document and file tables:
- To list file associations for a document revision:
SELECT assoc.association_id, lob.file_name FROM ahl_doc_file_assoc_b assoc, fnd_lobs lob WHERE assoc.file_id = lob.file_id AND assoc.revision_id = :p_rev_id; - To identify documents with attachments:
SELECT DISTINCT rev.document_id FROM ahl_doc_file_assoc_b assoc, ahl_doc_revisions_b rev WHERE assoc.revision_id = rev.revision_id;
Related Objects
The AHL_DOC_FILE_ASSOC_B table is part of a tightly integrated schema. Its primary key is enforced by the AHL_DOC_FILE_ASSOC_B_PK1 constraint. It maintains critical foreign key relationships with the AHL_DOC_REVISIONS_B table (via REVISION_ID) to link to the document revision, and with the FND_LOBS table (via FILE_ID) to link to the physical file data. Furthermore, it has a one-to-many relationship with the AHL_DOC_FILE_ASSOC_TL table, which holds translated descriptive information for the association, linking via the ASSOCIATION_ID column. Any application logic creating or managing document attachments will interact with this table and its related APIs.
-
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 ,
-
Table: AHL_DOC_FILE_ASSOC_B
12.1.1
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 ,
-
APPS.AHL_DOC_FILE_ASSOC_PKG dependencies on AHL_DOC_FILE_ASSOC_B
12.2.2
-
APPS.AHL_DOC_FILE_ASSOC_PKG dependencies on AHL_DOC_FILE_ASSOC_B
12.1.1
-
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 ,
-
SYNONYM: APPS.AHL_DOC_FILE_ASSOC_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_DOC_FILE_ASSOC_B, status:VALID,
-
VIEW: AHL.AHL_DOC_FILE_ASSOC_B#
12.2.2
owner:AHL, object_type:VIEW, object_name:AHL_DOC_FILE_ASSOC_B#, status:VALID,
-
APPS.AHL_DOC_FILE_ASSOC_PKG SQL Statements
12.2.2
-
VIEW: APPS.AHL_DOC_FILE_ASSOC_VL
12.1.1
-
APPS.AHL_DOC_FILE_ASSOC_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.AHL_DOC_FILE_ASSOC_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AHL_DOC_FILE_ASSOC_B, status:VALID,
-
VIEW: AHL.AHL_DOC_FILE_ASSOC_B#
12.2.2
-
VIEW: APPS.AHL_DOC_FILE_ASSOC_VL
12.2.2
-
VIEW: APPS.AHL_DOCUMENT_ASSOS_V
12.2.2
-
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.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,
-
VIEW: APPS.AHL_DOCUMENT_ASSOS_V
12.1.1
-
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,
-
Table: AHL_DOC_REVISIONS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_DOC_REVISIONS_B, object_name:AHL_DOC_REVISIONS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores revision information of a document. , implementation_dba_data: AHL.AHL_DOC_REVISIONS_B ,
-
Table: AHL_DOC_REVISIONS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_DOC_REVISIONS_B, object_name:AHL_DOC_REVISIONS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores revision information of a document. , implementation_dba_data: AHL.AHL_DOC_REVISIONS_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,
-
Table: FND_LOBS
12.1.1
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LOBS, object_name:FND_LOBS, status:VALID, product: FND - Application Object Library , description: LOBs being managed by the Generic File Manager , implementation_dba_data: APPLSYS.FND_LOBS ,
-
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,
-
TABLE: AHL.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,
-
TABLE: AHL.AHL_DOC_FILE_ASSOC_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_DOC_FILE_ASSOC_B, object_name:AHL_DOC_FILE_ASSOC_B, status:VALID,
-
Table: FND_LOBS
12.2.2
owner:APPLSYS, object_type:TABLE, fnd_design_data:FND.FND_LOBS, object_name:FND_LOBS, status:VALID, product: FND - Application Object Library , description: LOBs being managed by the Generic File Manager , implementation_dba_data: APPLSYS.FND_LOBS ,
-
PACKAGE BODY: APPS.AHL_DOC_FILE_ASSOC_PKG
12.2.2
-
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
-
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 ,
-
PACKAGE BODY: APPS.AHL_DOC_FILE_ASSOC_PKG
12.1.1
-
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_DOCUMENT_ASSOS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOCUMENT_ASSOS_V, object_name:AHL_DOCUMENT_ASSOS_V, status:VALID,
-
VIEW: APPS.AHL_DOCUMENT_ASSOS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOCUMENT_ASSOS_V, object_name:AHL_DOCUMENT_ASSOS_V, status:VALID,
-
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.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 ,
-
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 ,