Search Results ahl_mr_actions_b
Overview
AHL_MR_ACTIONS_B is the base (non-translated) table within the Oracle E-Business Suite Complex Maintenance Repair and Overhaul (AHL) module that stores discrete maintenance actions associated with a maintenance requirement. Each row represents a single actionable step or operation defined under a maintenance requirement header, forming the operational detail layer of the maintenance requirement model. In Oracle EBS 12.1.1 and 12.2.2, this table is owned by the AHL schema and holds 27 documented columns. Its role is to bridge maintenance requirement definitions to execution and quality planning by linking actions to requirement headers and, where applicable, to QA plans.
From a heuristic Data Vault modeling perspective, this table leans toward a satellite classification. It carries descriptive attributes and business keys (MR_ACTION_CODE, PLAN_ID) that attach to the hub represented by AHL_MR_HEADERS_B, with a foreign key to the header and a dependent translation table.
Key Information Stored
The surrogate primary key is MR_ACTION_ID, enforced by AHL_MR_ACTIONS_B_PK. Business-key candidate unique indexes are AHL_MR_ACTIONS_B_U1 (on MR_ACTION_ID) and AHL_MR_ACTIONS_B_U2 (a composite of MR_HEADER_ID, MR_ACTION_CODE, and PLAN_ID). The most significant columns include:
- MR_ACTION_ID — surrogate primary key uniquely identifying each maintenance action.
- MR_HEADER_ID — foreign key to AHL_MR_HEADERS_B, the parent maintenance requirement.
- MR_ACTION_CODE — the business code identifying the action within its header.
- PLAN_ID — foreign key to QA_PLANS, associating a quality plan with the action.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS controlling row-level access.
- OBJECT_VERSION_NUMBER — optimistic locking control.
- LAST_UPDATE_DATE / LAST_UPDATED_BY — audit columns for the most recent change.
- CREATION_DATE / CREATED_BY — audit columns recording initial creation.
- LAST_UPDATE_LOGIN — login audit reference.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the standard EBS DFF (Descriptive Flexfield) column set for extensibility.
Common Use Cases and Queries
Typical scenarios include retrieving all actions for a given requirement, joining to QA plans for quality execution, and reporting on action usage across headers. A representative query follows:
- List actions for a header:
SELECT MR_ACTION_ID, MR_ACTION_CODE, PLAN_ID FROM AHL.AHL_MR_ACTIONS_B WHERE MR_HEADER_ID = :header_id; - Join to header and QA plan:
SELECT b.MR_ACTION_CODE, h.MR_HEADER_NAME, p.PLAN_NAME FROM AHL_MR_ACTIONS_B b JOIN AHL_MR_HEADERS_B h ON b.MR_HEADER_ID = h.MR_HEADER_ID JOIN QA_PLANS p ON b.PLAN_ID = p.PLAN_ID; - Fetch translated descriptions:
SELECT t.MR_ACTION_NAME FROM AHL_MR_ACTIONS_TL t WHERE t.MR_ACTION_ID = :id AND t.LANGUAGE = USERENV('LANG');
Reports frequently resolve DFF attributes and enforce security group filtering for multi-org access.
Related Objects
The principal related objects, derived from documented foreign keys, are:
- AHL_MR_HEADERS_B — parent table joined on MR_HEADER_ID.
- AHL_MR_ACTIONS_TL — translation table joined on MR_ACTION_ID.
- QA_PLANS — quality plan reference joined on PLAN_ID.
- FND_SECURITY_GROUPS — security reference joined on SECURITY_GROUP_ID.
-
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_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 ,
-
SYNONYM: APPS.AHL_MR_ACTIONS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_MR_ACTIONS_B, status:VALID,
-
VIEW: APPS.AHL_MR_ACTIONS_VL
12.2.2
-
SYNONYM: APPS.AHL_MR_ACTIONS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AHL_MR_ACTIONS_B, status:VALID,
-
VIEW: AHL.AHL_MR_ACTIONS_B#
12.2.2
owner:AHL, object_type:VIEW, object_name:AHL_MR_ACTIONS_B#, status:VALID,
-
View: AHL_MR_ACTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ACTIONS_VL, object_name:AHL_MR_ACTIONS_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_ACTIONS_B and AHL_MR_ACTIONS_TL to include all the codes and their corresponding descriptions. , implementation_dba_data: APPS.AHL_MR_ACTIONS_VL ,
-
APPS.AHL_MR_ACTIONS_PKG SQL Statements
12.2.2
-
APPS.AHL_FMP_MR_ACTION_PVT SQL Statements
12.1.1
-
VIEW: APPS.AHL_MR_ACTIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ACTIONS_VL, object_name:AHL_MR_ACTIONS_VL, status:VALID,
-
VIEW: AHL.AHL_MR_ACTIONS_B#
12.2.2
-
APPS.AHL_MR_ACTIONS_PKG SQL Statements
12.1.1
-
VIEW: APPS.AHL_MR_ACTIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ACTIONS_VL, object_name:AHL_MR_ACTIONS_VL, status:VALID,
-
VIEW: APPS.AHL_MR_ACTIONS_VL
12.1.1
-
View: AHL_MR_ACTIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ACTIONS_VL, object_name:AHL_MR_ACTIONS_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_ACTIONS_B and AHL_MR_ACTIONS_TL to include all the codes and their corresponding descriptions. , implementation_dba_data: APPS.AHL_MR_ACTIONS_VL ,
-
APPS.AHL_FMP_MR_ACTION_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AHL_MR_ACTIONS_PKG
12.1.1
-
Table: AHL_MR_ACTIONS_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_ACTIONS_TL, object_name:AHL_MR_ACTIONS_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Translation table for maintenance requirement and action association. , implementation_dba_data: AHL.AHL_MR_ACTIONS_TL ,
-
PACKAGE BODY: APPS.AHL_MR_ACTIONS_PKG
12.2.2
-
PACKAGE BODY: APPS.AHL_MR_ACTIONS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_MR_ACTIONS_PKG, status:VALID,
-
Table: AHL_MR_ACTIONS_TL
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_ACTIONS_TL, object_name:AHL_MR_ACTIONS_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Translation table for maintenance requirement and action association. , implementation_dba_data: AHL.AHL_MR_ACTIONS_TL ,
-
PACKAGE BODY: APPS.AHL_FMP_MR_ACTION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_ACTION_PVT, status:VALID,
-
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 ,
-
PACKAGE BODY: APPS.AHL_FMP_MR_ACTION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_ACTION_PVT, status:VALID,
-
Table: QA_PLANS
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_PLANS, object_name:QA_PLANS, status:VALID, product: QA - Quality , description: Collection plan definitions , implementation_dba_data: QA.QA_PLANS ,
-
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 ,
-
PACKAGE BODY: APPS.AHL_MR_ACTIONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_MR_ACTIONS_PKG, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_MR_HEADER_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_HEADER_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_MR_HEADER_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_HEADER_PVT, status:VALID,
-
TABLE: AHL.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,
-
TABLE: AHL.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,
-
Table: QA_PLANS
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_PLANS, object_name:QA_PLANS, status:VALID, product: QA - Quality , description: Collection plan definitions , implementation_dba_data: QA.QA_PLANS ,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
TABLE: AHL.AHL_MR_ACTIONS_TL
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_ACTIONS_TL, object_name:AHL_MR_ACTIONS_TL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
TABLE: AHL.AHL_MR_ACTIONS_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MR_ACTIONS_TL, object_name:AHL_MR_ACTIONS_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design 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.1.1 DBA Data
12.1.1
-
VIEW: APPS.AHL_MR_ACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ACTIONS_V, object_name:AHL_MR_ACTIONS_V, status:VALID,
-
VIEW: APPS.AHL_MR_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ACTIONS_V, object_name:AHL_MR_ACTIONS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.AHL_FMP_MR_ACTION_PVT
12.2.2
-
PACKAGE BODY: APPS.AHL_FMP_MR_ACTION_PVT
12.1.1
-
APPS.AHL_MR_ACTIONS_PKG dependencies on AHL_MR_ACTIONS_B
12.1.1
-
APPS.AHL_FMP_MR_ACTION_PVT dependencies on AHL_MR_ACTIONS_B
12.1.1