Search Results ahl_mr_effectivity_dtls_app_v
Overview
The view APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V is a public, applications-facing view within the Oracle E-Business Suite (EBS) Complex Maintenance Repair and Overhaul (AHL) module. It exposes manufacturer effectivity detail records in a denormalized form by joining the underlying effectivity detail table to header and effectivity views, thereby enriching each detail row with the originating application usage code. The view is documented as VALID in both the 12.1.1 and 12.2.2 releases and resides in the APPS schema, which confirms it is intended for use by reporting, integration, and form-based lookups rather than for direct transactional manipulation. Its naming convention — the _APP_V suffix — signals that it is an application-layer view layered over a base detail table, designed to simplify access patterns for downstream consumers such as Oracle Forms, OAF pages, concurrent programs, and third-party integrations.
Underlying Base Objects
The view text defines an inner join across three referenced objects. The primary detail source is AHL_MR_EFFECTIVITY_DTLS, consumed through the synonym in the APPS schema. This table supplies all effectivity detail attributes. It is joined to AHL_MR_EFFECTIVITIES_APP_V on MR_EFFECTIVITY_ID, which provides effectivity-level context and the APPLICATION_USG_CODE column. That view is in turn joined to AHL_MR_HEADERS_APP_V on MR_HEADER_ID, establishing the linkage between effectivity detail records and the maintenance repair (MR) header. The documented metadata also references FND_PROFILE, indicating that profile option resolution (commonly for security or org context) participates in the application view chain. The joins are strictly equi-joins, so only detail rows with matching effectivity and header records are returned.
Key Columns
The view exposes the full set of detail attributes plus the inherited application usage code. Principal columns include:
MR_EFFECTIVITY_DETAIL_ID— Surrogate primary key uniquely identifying each effectivity detail row.MR_EFFECTIVITY_ID— Foreign key linking the detail to its parent effectivity record.EXCLUDE_FLAG— Indicates whether the associated manufacturer, country, serial, or date range is explicitly excluded from effectivity.MANUFACTURER_IDandCOUNTRY_CODE— Identify the manufacturer and country to which the effectivity rule applies.SERIAL_NUMBER_FROMandSERIAL_NUMBER_TO— Define the serial number range over which the effectivity is valid.MANUFACTURE_DATE_FROMandMANUFACTURE_DATE_TO— Define the manufacture date window for the affected units.APPLICATION_USG_CODE— Inherited fromAHL_MR_EFFECTIVITIES_APP_V, indicating the usage context of the parent effectivity.- Standard WHO and DFF columns —
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN,OBJECT_VERSION_NUMBER,SECURITY_GROUP_ID, andATTRIBUTE1throughATTRIBUTE15.
Common Use Cases and Queries
Typical uses include reporting on effectivity ranges for a given MR header, validating excludes versus includes, and integration extracts that require the application usage code alongside detail ranges. A representative query retrieving all details for a specific effectivity follows:
SELECT MR_EFFECTIVITY_DETAIL_ID, EXCLUDE_FLAG, MANUFACTURER_ID, COUNTRY_CODE, SERIAL_NUMBER_FROM, SERIAL_NUMBER_TO FROM APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V WHERE MR_EFFECTIVITY_ID = :p_effectivity_id;- Filtering by usage:
SELECT * FROM APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V WHERE APPLICATION_USG_CODE = :p_code; - Extracting include-only ranges:
SELECT * FROM APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V WHERE NVL(EXCLUDE_FLAG,'N') = 'N';
Because the view performs inner joins, queries should account for the possibility that details lacking a matching header or effectivity are not returned, which is consistent with its role as an application-layer consumer view.
-
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 ,
-
SYNONYM: APPS.AHL_MR_EFFECTIVITY_DTLS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AHL_MR_EFFECTIVITY_DTLS, status:VALID,
-
SYNONYM: APPS.AHL_MR_EFFECTIVITY_DTLS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_MR_EFFECTIVITY_DTLS, status:VALID,
-
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,
-
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.1.1 FND Design Data
12.1.1
-
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,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
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_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_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,
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT SQL Statements
12.2.2
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT SQL Statements
12.1.1
-
VIEW: APPS.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,
-
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,
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT dependencies on AHL_MR_EFFECTIVITY_DTLS_APP_V
12.1.1
-
APPS.AHL_FMP_MR_REVISION_PVT dependencies on AHL_MR_EFFECTIVITY_DTLS_APP_V
12.1.1
-
APPS.AHL_FMP_MR_REVISION_PVT dependencies on AHL_MR_EFFECTIVITY_DTLS_APP_V
12.2.2
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT dependencies on AHL_MR_EFFECTIVITY_DTLS_APP_V
12.2.2
-
APPS.AHL_FMP_MR_REVISION_PVT SQL Statements
12.1.1
-
APPS.AHL_FMP_MR_REVISION_PVT SQL Statements
12.2.2
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT dependencies on AHL_MR_EFFECTIVITY_DTLS
12.1.1
-
APPS.AHL_FMP_MR_REVISION_PVT dependencies on AHL_MR_EFFECTIVITY_DTLS
12.1.1
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT dependencies on AHL_MR_EFFECTIVITY_DTLS
12.2.2
-
APPS.AHL_FMP_MR_REVISION_PVT dependencies on AHL_MR_EFFECTIVITY_DTLS
12.2.2
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT dependencies on AHL_MR_EFFECTIVITIES_APP_V
12.1.1
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT dependencies on AHL_MR_EFFECTIVITIES_APP_V
12.2.2
-
eTRM - AHL Tables and Views
12.1.1
description: Ahl Production Workorder Operations Information stored in this table ,
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT dependencies on AHL_MR_EFFECTIVITIES
12.2.2
-
APPS.AHL_FMP_MR_EFFECTIVITY_PVT dependencies on AHL_MR_EFFECTIVITIES
12.1.1
-
eTRM - AHL Tables and Views
12.2.2
description: Ahl Production Workorder Operations Information stored in this table ,
-
PACKAGE BODY: APPS.AHL_FMP_MR_EFFECTIVITY_PVT
12.2.2
-
PACKAGE BODY: APPS.AHL_FMP_MR_REVISION_PVT
12.1.1
-
PACKAGE BODY: APPS.AHL_FMP_MR_EFFECTIVITY_PVT
12.1.1
-
PACKAGE BODY: APPS.AHL_FMP_MR_REVISION_PVT
12.2.2
-
12.2.2 DBA Data
12.2.2
-
eTRM - AHL Tables and Views
12.1.1
description: Ahl Production Workorder Operations Information stored in this table ,
-
PACKAGE: APPS.FND_PROFILE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
PACKAGE: APPS.FND_PROFILE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_PROFILE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
eTRM - AHL Tables and Views
12.2.2
description: Ahl Production Workorder Operations Information stored in this table ,