Search Results ahl_mr_headers_b
Overview
The AHL_MR_HEADERS_B table is the core repository for maintenance requirement (MR) definitions within the Complex Maintenance Repair and Overhaul (CMRO) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It serves as the master header table, storing the fundamental metadata that defines a maintenance procedure, inspection, or task. Every maintenance requirement created in the system is anchored to a record in this table, establishing it as a central object for managing maintenance programs, work orders, and service visits. The data in this table drives the execution of maintenance operations across assets and units.
Key Information Stored
The table's primary key is the system-generated identifier MR_HEADER_ID. A unique key constraint (AHL_MR_HEADERS_B_UK1) enforces business logic by ensuring the combination of TITLE, VERSION_NUMBER, and APPLICATION_USG_CODE is unique, preventing duplicate requirement definitions. Critical columns include TITLE for the MR name, VERSION_NUMBER for tracking revisions, and APPLICATION_USG_CODE which defines the MR's usage context (e.g., for a unit, serial, or lot). The PRECEDING_MR_HEADER_ID column supports versioning by linking a new MR version to its predecessor, creating a self-referential foreign key relationship within the same table.
Common Use Cases and Queries
This table is central to queries for maintenance program analysis, impact assessment of MR changes, and generating task lists. A common reporting requirement is to list all active maintenance requirements for a specific asset type or usage code. A typical query pattern involves joining to the translated table (AHL_MR_HEADERS_TL) for descriptions and to effectivity tables for applicability rules.
- Sample Query: Retrieving MR headers with their latest version for a specific application usage.
SELECT mrh.TITLE, mrh.VERSION_NUMBER, mrh.MR_HEADER_ID
FROM AHL_MR_HEADERS_B mrh
WHERE mrh.APPLICATION_USG_CODE = 'SERIAL'
AND mrh.VERSION_NUMBER = (
SELECT MAX(version_number)
FROM AHL_MR_HEADERS_B
WHERE TITLE = mrh.TITLE
AND APPLICATION_USG_CODE = mrh.APPLICATION_USG_CODE
)
ORDER BY mrh.TITLE;
Related Objects
AHL_MR_HEADERS_B has extensive relationships, underscoring its foundational role. Key dependent tables include AHL_MR_ACTIONS_B (detailed task steps), AHL_MR_EFFECTIVITIES (applicability rules), AHL_MR_ROUTES (routing instructions), and AHL_MR_HEADERS_TL for translated titles. It is referenced by execution entities like AHL_VISIT_TASKS_B (service tasks) and AHL_UNIT_EFFECTIVITIES_B (which tracks MR compliance for specific units). The AHL_MR_RELATIONSHIPS table uses MR_HEADER_ID and RELATED_MR_HEADER_ID to define hierarchical or associative links between different maintenance requirements.
-
Table: AHL_MR_HEADERS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_HEADERS_B, object_name:AHL_MR_HEADERS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the maintenance requirement header information. , implementation_dba_data: AHL.AHL_MR_HEADERS_B ,
-
Table: AHL_MR_HEADERS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_HEADERS_B, object_name:AHL_MR_HEADERS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the maintenance requirement header information. , implementation_dba_data: AHL.AHL_MR_HEADERS_B ,
-
Table: AHL_UNIT_EFFECTIVITIES_B
12.1.1
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 ,
-
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 ,
-
Table: AHL_MR_RELATIONSHIPS
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_RELATIONSHIPS, object_name:AHL_MR_RELATIONSHIPS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the parent/child relationships of maintenance requirements. , implementation_dba_data: AHL.AHL_MR_RELATIONSHIPS ,
-
Table: AHL_MR_RELATIONSHIPS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_RELATIONSHIPS, object_name:AHL_MR_RELATIONSHIPS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the parent/child relationships of maintenance requirements. , implementation_dba_data: AHL.AHL_MR_RELATIONSHIPS ,
-
View: AHL_UNIT_EFFECTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_EFFECTIVITIES_V, object_name:AHL_UNIT_EFFECTIVITIES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve unit effectivities information based on the Maintainance Requirements defined in Fleet Maintainance Program and item instances available in Install Base for a position (node). , implementation_dba_data: APPS.AHL_UNIT_EFFECTIVITIES_V ,
-
View: AHL_UNIT_EFFECTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_EFFECTIVITIES_V, object_name:AHL_UNIT_EFFECTIVITIES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve unit effectivities information based on the Maintainance Requirements defined in Fleet Maintainance Program and item instances available in Install Base for a position (node). , implementation_dba_data: APPS.AHL_UNIT_EFFECTIVITIES_V ,
-
View: AHL_MR_HEADERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_HEADERS_VL, object_name:AHL_MR_HEADERS_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_MR_HEADERS_B and the translated columns from the table AHL_MR_HEADERS_TL , implementation_dba_data: APPS.AHL_MR_HEADERS_VL ,
-
View: AHL_MR_HEADERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_HEADERS_VL, object_name:AHL_MR_HEADERS_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_MR_HEADERS_B and the translated columns from the table AHL_MR_HEADERS_TL , implementation_dba_data: APPS.AHL_MR_HEADERS_VL ,
-
Table: AHL_MR_HEADERS_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_HEADERS_TL, object_name:AHL_MR_HEADERS_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Translation table for maintenance requirement header. , implementation_dba_data: AHL.AHL_MR_HEADERS_TL ,
-
Table: AHL_SNAPSHOTS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_SNAPSHOTS, object_name:AHL_SNAPSHOTS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about SnapShots. , implementation_dba_data: AHL.AHL_SNAPSHOTS ,
-
Table: AHL_MR_HEADERS_TL
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_HEADERS_TL, object_name:AHL_MR_HEADERS_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Translation table for maintenance requirement header. , implementation_dba_data: AHL.AHL_MR_HEADERS_TL ,
-
Table: AHL_MR_ACTIONS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_ACTIONS_B, object_name:AHL_MR_ACTIONS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the actions associated with each maintenance requirement. , implementation_dba_data: AHL.AHL_MR_ACTIONS_B ,
-
Table: AHL_SNAPSHOTS
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_SNAPSHOTS, object_name:AHL_SNAPSHOTS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about SnapShots. , implementation_dba_data: AHL.AHL_SNAPSHOTS ,
-
Table: AHL_MR_ACTIONS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_ACTIONS_B, object_name:AHL_MR_ACTIONS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the actions associated with each maintenance requirement. , implementation_dba_data: AHL.AHL_MR_ACTIONS_B ,
-
Table: AHL_MEL_CDL_MO_PROCEDURES
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MEL_CDL_MO_PROCEDURES, object_name:AHL_MEL_CDL_MO_PROCEDURES, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores association of M&O procedures (Maintenance Requirements of program_type MO_PROC) with ATA sequences. , implementation_dba_data: AHL.AHL_MEL_CDL_MO_PROCEDURES ,
-
Table: AHL_MR_ROUTES
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_ROUTES, object_name:AHL_MR_ROUTES, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the associations of maintenance requirements to routes. , implementation_dba_data: AHL.AHL_MR_ROUTES ,
-
Table: AHL_MR_ROUTES
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_ROUTES, object_name:AHL_MR_ROUTES, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores the associations of maintenance requirements to routes. , implementation_dba_data: AHL.AHL_MR_ROUTES ,
-
Table: AHL_MR_EFFECTIVITIES
12.2.2
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_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_VISIT_TASKS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_VISIT_TASKS_B, object_name:AHL_VISIT_TASKS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about visit tasks , implementation_dba_data: AHL.AHL_VISIT_TASKS_B ,
-
Table: AHL_VISIT_TASKS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_VISIT_TASKS_B, object_name:AHL_VISIT_TASKS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about visit tasks , implementation_dba_data: AHL.AHL_VISIT_TASKS_B ,
-
View: AHL_MR_HEADERS_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_HEADERS_APP_V, object_name:AHL_MR_HEADERS_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_MR_HEADERS_B and the translated columns from the table AHL_MR_HEADERS_TL , implementation_dba_data: APPS.AHL_MR_HEADERS_APP_V ,
-
View: AHL_MR_HEADERS_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_HEADERS_APP_V, object_name:AHL_MR_HEADERS_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_MR_HEADERS_B and the translated columns from the table AHL_MR_HEADERS_TL , implementation_dba_data: APPS.AHL_MR_HEADERS_APP_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_UE_ORGS_DEPTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UE_ORGS_DEPTS_V, object_name:AHL_UE_ORGS_DEPTS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_UE_ORGS_DEPTS_V ,
-
View: AHL_MR_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_HEADERS_V, object_name:AHL_MR_HEADERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_HEADERS_VL with FND_LOOKUP_VALUES_VL to include all the corresponding descriptions of the codes and with AHL_MR_HEADERS_B to get the Preceding MR Title & Revision. , implementation_dba_data: APPS.AHL_MR_HEADERS_V ,
-
View: AHL_MR_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_HEADERS_V, object_name:AHL_MR_HEADERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_HEADERS_VL with FND_LOOKUP_VALUES_VL to include all the corresponding descriptions of the codes and with AHL_MR_HEADERS_B to get the Preceding MR Title & Revision. , implementation_dba_data: APPS.AHL_MR_HEADERS_V ,