Search Results ahl_mr_effectivities_app_v
Overview
APPS.AHL_MR_EFFECTIVITIES_APP_V is a reporting and integration view in the Oracle E-Business Suite AHL (Complex Maintenance Repair and Overhaul) module. In ETRM 12.1.1 and 12.2.2 it exposes maintenance requirement (MR) effectivity records together with their header-level usage context. Effectivities define the validity rules — keyed primarily by threshold date and optionally scoped to an inventory item, organization, or configured relationship — under which a maintenance requirement applies to a fleet asset or component. The view joins the effectivity base records to the application usage code of their parent MR header, which indicates the functional area in which the maintenance requirement is used. Because it is a view rather than a table, it provides a read-only, denormalized projection suitable for concurrent programs, OAF pages, reports, and outbound integrations, and it is owned by the APPS schema with status VALID.
Underlying Base Objects
The documented view text is a single inner join between two objects:
- AHL_MR_EFFECTIVITIES (referenced via synonym) — the primary source, supplying the effectivity identifier, header reference, name, threshold date, item and organization references, relationship and node references, default flag, program duration, security group, and the fifteen descriptive flexfield attribute columns.
- AHL_MR_HEADERS_APP_V (VIEW) — the joined header view, which contributes only APPLICATION_USG_CODE and supplies MR_HEADER_ID as the join key.
Documented metadata further records AHL_FLEET_HEADERS_B (SYNONYM) and the FND_PROFILE package as referenced objects in the dependency chain of the view family, consistent with the fleet- and profile-driven security and context logic used throughout AHL maintenance requirement setup. Because the join is an equi-join on MR_HEADER_ID with no outer clause, an effectivity row is returned only when a matching header exists in AHL_MR_HEADERS_APP_V.
Key Columns
- MR_EFFECTIVITY_ID — Primary identifier of the effectivity record.
- MR_HEADER_ID — Foreign key to the maintenance requirement header to which the effectivity belongs.
- NAME — User-defined name of the effectivity.
- THRESHOLD_DATE — Effective date that determines when the maintenance requirement takes effect relative to the asset.
- INVENTORY_ITEM_ID / INVENTORY_ORG_ID — Optional item and organization scope restricting where the effectivity applies.
- RELATIONSHIP_ID / PC_NODE_ID — Optional references to a configured relationship or product-classification node used for conditional applicability.
- DEFAULT_FLAG — Indicates the default effectivity for the associated maintenance requirement.
- PROGRAM_DURATION / PROGRAM_DURATION_UOM_CODE — Duration value and unit of measure for the maintenance program interval.
- OBJECT_VERSION_NUMBER, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard audit and optimistic-locking columns.
- SECURITY_GROUP_ID — Multi-tenant security grouping identifier.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — Descriptive flexfield context and segment values.
- APPLICATION_USG_CODE — Application usage code from the header view, identifying the usage context of the maintenance requirement.
Common Use Cases and Queries
Typical uses include listing effectivities for a specific maintenance requirement, locating the default effectivity, resolving date-driven applicability for a fleet item, and extracting flexfield attributes for integration or validation reports. Note the APPS synonym; query as APPS or with the APPS schema on the path.
- All effectivities for a header:
SELECT mr_effectivity_id, name, threshold_date, default_flag FROM ahl_mr_effectivities_app_v WHERE mr_header_id = :p_header_id ORDER BY threshold_date; - Item-scoped effectivities:
SELECT e.mr_effectivity_id, e.threshold_date, e.inventory_item_id FROM ahl_mr_effectivities_app_v e WHERE e.inventory_item_id = :p_item AND e.inventory_org_id = :p_org; - Default effectivity lookup:
SELECT mr_effectivity_id, name FROM ahl_mr_effectivities_app_v WHERE default_flag = 'Y' AND mr_header_id = :p_header_id; - Usage-context extract:
SELECT mr_header_id, mr_effectivity_id, application_usg_code, program_duration, program_duration_uom_code FROM ahl_mr_effectivities_app_v;
Because APPLICATION_USG_CODE and any fleet context derive from joined views and profile logic, confirm outer-join expectations in custom SQL when effectivities exist without a returned header row.
-
View: AHL_MR_EFFECTIVITIES_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_APP_V, object_name:AHL_MR_EFFECTIVITIES_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_EFFECTIVITIES_APP_V ,
-
View: AHL_MR_EFFECTIVITIES_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_APP_V, object_name:AHL_MR_EFFECTIVITIES_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_EFFECTIVITIES_APP_V ,
-
VIEW: APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V
12.1.1
-
View: AHL_MR_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ITEMS_V, object_name:AHL_MR_ITEMS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on join of AHL_MR_EFFECTIVTIES_B, AHL_POSITION_ALTERNATES_V & MTL_SYSTEM_ITEMS_KFV to get the affected items for all maintenance requirements. , implementation_dba_data: APPS.AHL_MR_ITEMS_V ,
-
View: AHL_MR_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ITEMS_V, object_name:AHL_MR_ITEMS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on join of AHL_MR_EFFECTIVTIES_B, AHL_POSITION_ALTERNATES_V & MTL_SYSTEM_ITEMS_KFV to get the affected items for all maintenance requirements. , implementation_dba_data: APPS.AHL_MR_ITEMS_V ,
-
VIEW: APPS.AHL_MR_INTERVALS_APP_V
12.1.1
-
VIEW: APPS.AHL_MR_INTERVALS_APP_V
12.2.2
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT SQL Statements
12.1.1
-
VIEW: APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V
12.2.2
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT SQL Statements
12.2.2
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_V
12.2.2
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_V
12.1.1
-
PACKAGE BODY: APPS.AHL_FMP_MR_INTERVAL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_INTERVAL_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_MR_INTERVAL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_INTERVAL_PVT, status:VALID,
-
SYNONYM: APPS.AHL_MR_EFFECTIVITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AHL_MR_EFFECTIVITIES, status:VALID,
-
APPS.AHL_FMP_COMMON_PVT SQL Statements
12.1.1
-
APPS.AHL_FMP_COMMON_PVT SQL Statements
12.2.2
-
SYNONYM: APPS.AHL_FLEET_HEADERS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_FLEET_HEADERS_B, status:VALID,
-
View: AHL_MR_INTERVALS_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_INTERVALS_APP_V, object_name:AHL_MR_INTERVALS_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_INTERVALS_APP_V ,
-
PACKAGE BODY: APPS.AHL_FMP_MR_EFFECTIVITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_EFFECTIVITY_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_MR_EFFECTIVITY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_EFFECTIVITY_PVT, status:VALID,
-
View: AHL_MR_EFFECTIVITY_DTLS_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITY_DTLS_APP_V, object_name:AHL_MR_EFFECTIVITY_DTLS_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V ,
-
View: AHL_MR_EFFECTIVITY_DTLS_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITY_DTLS_APP_V, object_name:AHL_MR_EFFECTIVITY_DTLS_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V ,
-
PACKAGE BODY: APPS.AHL_FMP_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_COMMON_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_COMMON_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_COMMON_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_COMMON_PVT, status:VALID,
-
View: AHL_MR_INTERVALS_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_INTERVALS_APP_V, object_name:AHL_MR_INTERVALS_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_INTERVALS_APP_V ,
-
SYNONYM: APPS.AHL_MR_EFFECTIVITIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_MR_EFFECTIVITIES, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_MR_REVISION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_REVISION_PVT, status:VALID,
-
View: AHL_MR_EFFECTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_V, object_name:AHL_MR_EFFECTIVITIES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_EFFECTIVITIES,AHL_MASTER_CONFIG_DETAILS_V,MTL_SYSTEM_ITEMS_KFV,AHL_PC_NODES_B and AHL_POSITION_ALTERNATES_V , implementation_dba_data: APPS.AHL_MR_EFFECTIVITIES_V ,
-
PACKAGE BODY: APPS.AHL_FMP_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_PVT, status:VALID,
-
View: AHL_MR_EFFECTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_V, object_name:AHL_MR_EFFECTIVITIES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_EFFECTIVITIES,AHL_MASTER_CONFIG_DETAILS_V,MTL_SYSTEM_ITEMS_KFV,AHL_PC_NODES_B and AHL_POSITION_ALTERNATES_V , implementation_dba_data: APPS.AHL_MR_EFFECTIVITIES_V ,
-
PACKAGE BODY: APPS.AHL_FMP_MR_REVISION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_REVISION_PVT, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.AHL_UMP_PROCESSUNIT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_PROCESSUNIT_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_PROCESSUNIT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_PROCESSUNIT_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITY_DTLS_APP_V, object_name:AHL_MR_EFFECTIVITY_DTLS_APP_V, status:VALID,
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_APP_V, object_name:AHL_MR_EFFECTIVITIES_APP_V, status:VALID,
-
VIEW: APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITY_DTLS_APP_V, object_name:AHL_MR_EFFECTIVITY_DTLS_APP_V, status:VALID,
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_APP_V, object_name:AHL_MR_EFFECTIVITIES_APP_V, status:VALID,
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_V, object_name:AHL_MR_EFFECTIVITIES_V, status:VALID,
-
VIEW: APPS.AHL_MR_INTERVALS_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_INTERVALS_APP_V, object_name:AHL_MR_INTERVALS_APP_V, status:VALID,
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_EFFECTIVITIES_V, object_name:AHL_MR_EFFECTIVITIES_V, status:VALID,
-
VIEW: APPS.AHL_MR_INTERVALS_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_INTERVALS_APP_V, object_name:AHL_MR_INTERVALS_APP_V, status:VALID,
-
APPS.AHL_FMP_MR_INTERVAL_PVT SQL Statements
12.1.1
-
APPS.AHL_FMP_MR_INTERVAL_PVT SQL Statements
12.2.2
-
VIEW: APPS.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,