Search Results ahl_unit_deferrals_b
Overview
AHL_UNIT_DEFERRALS_B is a base table in the AHL schema, the product schema for Oracle Complex Maintenance, Repair and Overhaul (CMRO), a module within Oracle E-Business Suite Release 12.1.1 and 12.2.2. The table stores the deferral and Maintenance Requirement (MR) initialization information associated with a unit effectivity. In aerospace and defense MRO scenarios, a unit — an aircraft, engine, or repairable assembly — carries a unit effectivity record that governs the applicability of maintenance program requirements. A deferral allows an operator to postpone an otherwise due maintenance action, or to suppress MR initialization for that effectivity, under documented approval and eligibility rules. This table therefore sits at the transactional core of deferred maintenance tracking and MEL/CDL (Minimum Equipment List / Configuration Deviation List) processing.
Based on the foreign key structure, the data warehouse classification heuristic suggests this is a satellite-leaning object: its primary key is a surrogate UNIT_DEFERRAL_ID, while its descriptive and transactional attributes (deferral type, approval status, due-date handling flags, reason codes, and extensible ATTRIBUTE1–ATTRIBUTE15 columns) surround the UNIT_EFFECTIVITY_ID business reference. This classification is a modeling suggestion only; in the operational EBS schema, the table behaves as a transactional base table with a companion translation table.
Key Information Stored
The table contains 35 documented columns. The most significant are:
UNIT_DEFERRAL_ID— surrogate primary key, enforced byAHL_UNIT_DEFERRALS_B_PKand uniquely indexed byAHL_UNIT_DEFERRALS_B_U1.UNIT_EFFECTIVITY_ID— the unit effectivity to which the deferral applies; joins toAHL_UNIT_EFFECTIVITIES_B. Together withUNIT_DEFERRAL_TYPEit forms the business-key candidateAHL_UNIT_DEFERRALS_B_U2.UNIT_DEFERRAL_TYPE— discriminates the deferral category (for example, a full deferral versus MR initialization suppression).USER_DEFERRAL_TYPE— the operator-facing or user-assigned deferral classification.SKIP_MR_FLAG— indicates whether maintenance requirement initialization is skipped for the effectivity.SET_DUE_DATE— the due date established for the deferred requirement.AFFECT_DUE_CALC_FLAG— controls whether the deferral participates in due-date calculation.DEFERRAL_EFFECTIVE_ON— the date the deferral takes effect.DEFER_REASON_CODE— coded justification for the deferral.APPROVAL_STATUS_CODE— workflow or approval state of the deferral request.CANCEL_FLAG— marks the deferral as cancelled without physical deletion.ATA_SEQUENCE_ID— links the deferral to an ATA chapter sequence viaAHL_MEL_CDL_ATA_SEQUENCES.- Standard EBS audit columns:
OBJECT_VERSION_NUMBER,CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN, andSECURITY_GROUP_ID.
Common Use Cases and Queries
Typical operational and reporting scenarios include listing all active deferrals for a unit effectivity, validating approvals, and auditing due-date impacts.
- Retrieve non-cancelled deferrals for an effectivity:
SELECT d.unit_deferral_id, d.unit_deferral_type, d.set_due_date, d.approval_status_code
FROM ahl_unit_deferrals_b d
WHERE d.unit_effectivity_id = :p_effectivity_id
AND NVL(d.cancel_flag,'N') = 'N';
- Join to translations to obtain the descriptive deferral name:
SELECT d.unit_deferral_id, t.deferral_name
FROM ahl_unit_deferrals_b d, ahl_unit_deferrals_tl t
WHERE d.unit_deferral_id = t.unit_deferral_id
AND t.language = USERENV('LANG');
- Identify deferrals suppressing MR initialization (
SKIP_MR_FLAG = 'Y') for compliance reporting. - Reconcile deferrals against ATA chapter sequences using
ATA_SEQUENCE_IDfor MEL/CDL analysis.
Related Objects
AHL_UNIT_EFFECTIVITIES_B— parent effectivity; joined onUNIT_EFFECTIVITY_ID.AHL_UNIT_DEFERRALS_TL— translation table; joined onUNIT_DEFERRAL_IDand referencing this table.AHL_UNIT_THRESHOLDS— threshold definitions per deferral; joined onUNIT_DEFERRAL_ID.AHL_MEL_CDL_ATA_SEQUENCES— ATA sequence reference; joined onATA_SEQUENCE_ID.FND_SECURITY_GROUPS— security group reference viaSECURITY_GROUP_ID.
-
Table: AHL_UNIT_DEFERRALS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UNIT_DEFERRALS_B, object_name:AHL_UNIT_DEFERRALS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table holds the deferral and MR initialization information for a unit effectivity. , implementation_dba_data: AHL.AHL_UNIT_DEFERRALS_B ,
-
Table: AHL_UNIT_DEFERRALS_B
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UNIT_DEFERRALS_B, object_name:AHL_UNIT_DEFERRALS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table holds the deferral and MR initialization information for a unit effectivity. , implementation_dba_data: AHL.AHL_UNIT_DEFERRALS_B ,
-
APPS.AHL_PRD_DF_APPR_PVT SQL Statements
12.2.2
-
APPS.AHL_PRD_DF_APPR_PVT SQL Statements
12.1.1
-
APPS.AHL_MEL_CDL_APPROVALS_PVT SQL Statements
12.2.2
-
VIEW: APPS.AHL_UNIT_DEFERRALS_VL
12.1.1
-
VIEW: AHL.AHL_UNIT_DEFERRALS_B#
12.2.2
owner:AHL, object_type:VIEW, object_name:AHL_UNIT_DEFERRALS_B#, status:VALID,
-
SYNONYM: APPS.AHL_UNIT_DEFERRALS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_UNIT_DEFERRALS_B, status:VALID,
-
SYNONYM: APPS.AHL_UNIT_DEFERRALS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AHL_UNIT_DEFERRALS_B, status:VALID,
-
VIEW: APPS.AHL_UNIT_DEFERRALS_VL
12.2.2
-
View: AHL_UNIT_DEFERRALS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_DEFERRALS_VL, object_name:AHL_UNIT_DEFERRALS_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve unit deferral information based on the base table ( AHL_UNIT_DEFERRALS_B ) and TL ( AHL_UNIT_DEFERRAL_TL ) tables. , implementation_dba_data: APPS.AHL_UNIT_DEFERRALS_VL ,
-
View: AHL_UNIT_DEFERRALS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_DEFERRALS_VL, object_name:AHL_UNIT_DEFERRALS_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve unit deferral information based on the base table ( AHL_UNIT_DEFERRALS_B ) and TL ( AHL_UNIT_DEFERRAL_TL ) tables. , implementation_dba_data: APPS.AHL_UNIT_DEFERRALS_VL ,
-
APPS.AHL_MEL_CDL_APPROVALS_PVT SQL Statements
12.1.1
-
APPS.AHL_UNIT_DEFERRALS_PKG SQL Statements
12.1.1
-
VIEW: AHL.AHL_UNIT_DEFERRALS_B#
12.2.2
-
VIEW: APPS.AHL_UE_DEFERRAL_DETAILS_V
12.2.2
-
APPS.AHL_UNIT_DEFERRALS_PKG SQL Statements
12.2.2
-
VIEW: APPS.AHL_UE_DEFERRAL_DETAILS_V
12.1.1
-
APPS.AHL_UMP_NONROUTINES_PVT SQL Statements
12.2.2
-
APPS.AHL_UMP_NONROUTINES_PVT SQL Statements
12.1.1
-
Table: AHL_UNIT_DEFERRALS_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UNIT_DEFERRALS_TL, object_name:AHL_UNIT_DEFERRALS_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Translation table for AHL_UNIT_DEFFRALS_B , implementation_dba_data: AHL.AHL_UNIT_DEFERRALS_TL ,
-
APPS.AHL_PRD_DF_PVT SQL Statements
12.2.2
-
APPS.AHL_PRD_DF_PVT SQL Statements
12.1.1
-
APPS.AHL_UMP_SMRINSTANCE_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AHL_UNIT_DEFERRALS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UNIT_DEFERRALS_PKG, status:VALID,
-
Table: AHL_MEL_CDL_ATA_SEQUENCES
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_MEL_CDL_ATA_SEQUENCES, object_name:AHL_MEL_CDL_ATA_SEQUENCES, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This table stores information about ATA codes (System Sequnces) associated to the MEL/CDL. , implementation_dba_data: AHL.AHL_MEL_CDL_ATA_SEQUENCES ,
-
PACKAGE BODY: APPS.AHL_UNIT_DEFERRALS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UNIT_DEFERRALS_PKG, status:VALID,
-
View: AHL_UE_DEFERRAL_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UE_DEFERRAL_DETAILS_V, object_name:AHL_UE_DEFERRAL_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View to retrieve the deferral and unit effectivity details. , implementation_dba_data: APPS.AHL_UE_DEFERRAL_DETAILS_V ,
-
View: AHL_UE_DEFERRAL_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UE_DEFERRAL_DETAILS_V, object_name:AHL_UE_DEFERRAL_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View to retrieve the deferral and unit effectivity details. , implementation_dba_data: APPS.AHL_UE_DEFERRAL_DETAILS_V ,
-
Table: AHL_UNIT_THRESHOLDS
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UNIT_THRESHOLDS, object_name:AHL_UNIT_THRESHOLDS, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This will store the item instance's threshold values, i.e Due at counter values, provided by Production or in cases where previous accomplishment data not available on the component and initial setup values are defined through Initializati , implementation_dba_data: AHL.AHL_UNIT_THRESHOLDS ,
-
PACKAGE BODY: APPS.AHL_PRD_DF_APPR_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_PRD_DF_APPR_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_UTIL_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_UTIL_PKG, status:VALID,
-
PACKAGE BODY: APPS.AHL_PRD_DF_APPR_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_PRD_DF_APPR_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_SMRINSTANCE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_SMRINSTANCE_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_UTIL_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_UTIL_PKG, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_SMRINSTANCE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_SMRINSTANCE_PVT, status:VALID,
-
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 ,
-
PACKAGE BODY: APPS.AHL_MEL_CDL_APPROVALS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_MEL_CDL_APPROVALS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_MEL_CDL_APPROVALS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_MEL_CDL_APPROVALS_PVT, status:VALID,
-
VIEW: APPS.AHL_SRH_MR_HISTORY_V
12.2.2
-
PACKAGE BODY: APPS.AHL_UMP_PROCESSUNIT_EXTN_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_PROCESSUNIT_EXTN_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_UNITMAINT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_UNITMAINT_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_PROCESSUNIT_EXTN_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_PROCESSUNIT_EXTN_PVT, status:VALID,
-
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 ,
-
VIEW: APPS.AHL_UNIT_DEFERRALS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_DEFERRALS_VL, object_name:AHL_UNIT_DEFERRALS_VL, status:VALID,
-
TABLE: AHL.AHL_UNIT_DEFERRALS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_UNIT_DEFERRALS_B, object_name:AHL_UNIT_DEFERRALS_B, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.AHL_SRH_MR_HISTORY_ALL_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.AHL_PRD_DF_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_PRD_DF_PVT, status:VALID,