Search Results qa_inspection_type_code
Overview
The AHL_MR_HEADERS_APP_V view is a standard Oracle E-Business Suite application view owned by the APPS schema and delivered as part of the AHL (Complex Maintenance Repair and Overhaul) product family. It presents maintenance requirement (MR) header information in a translated, language-aware format, combining the base language-independent attributes stored in AHL_MR_HEADERS_B with the translated descriptive columns held in AHL_MR_HEADERS_TL. In Oracle EBS 12.1.1 and 12.2.2 the view carries a VALID status and is used throughout AHL reporting, forms, and integration layers as the primary read interface for MR header data.
A distinguishing characteristic of this view is its inclusion of the APPLICATION_USG_CODE filter. The view text selects from AHL_MR_HEADERS_VL and restricts rows using WHERE APPLICATION_USG_CODE = RTRIM(LTRIM(FND_PROFILE.VALUE('AHL_APPLN_USAGE'))). This means the view is context-sensitive: it returns only those MR headers whose application usage code matches the current session value of the AHL_APPLN_USAGE profile option, trimmed of leading and trailing whitespace. This design supports deployments where a single instance hosts more than one AHL usage context.
Underlying Base Objects
Per the ETRM metadata, the documented referenced base objects are AHL_MR_HEADERS_VL (a VIEW) and FND_PROFILE (a PACKAGE). The AHL_MR_HEADERS_VL view in turn resolves to the two physical tables described in the product documentation: AHL_MR_HEADERS_B, which holds the base, language-independent columns, and AHL_MR_HEADERS_TL, which holds the translated columns (TITLE, DESCRIPTION, and COMMENTS) keyed by language. The FND_PROFILE package supplies the profile value used in the WHERE clause.
The dependency chain is therefore: AHL_MR_HEADERS_APP_V reads AHL_MR_HEADERS_VL, which joins AHL_MR_HEADERS_B and AHL_MR_HEADERS_TL, while FND_PROFILE.VALUE supplies the runtime filter value. Because the filter is applied through a profile call, the view is not a simple pass-through and cannot be treated as a static snapshot.
Key Columns
MR_HEADER_ID— Primary surrogate key identifying each maintenance requirement header.TITLE,DESCRIPTION,COMMENTS— Translated (TL) columns resolved to the session language.VERSION_NUMBER,REVISION,PRECEDING_MR_HEADER_ID— Versioning and lineage attributes for revision-tracked MRs.CATEGORY_CODE,SERVICE_TYPE_CODE,MR_STATUS_CODE,IMPLEMENT_STATUS_CODE— Classification and lifecycle status indicators.QA_INSPECTION_TYPE_CODE— Exposes the QA inspection type associated with the MR header; this is the column most often referenced when querying inspection-related MRs.PROGRAM_TYPE_CODE,PROGRAM_SUBTYPE_CODE— Maintenance program classification.EFFECTIVE_FROM,EFFECTIVE_TO— Effective dating for the header.BILLING_ITEM_ID,BILLING_ORG_ID,SPACE_CATEGORY_CODE— Billing and space attributes.APPLICATION_USG_CODE— The application usage discriminator that drives the profile-based row filter.ATTRIBUTE_CATEGORYandATTRIBUTE1–ATTRIBUTE15— Descriptive flexfield storage.- Standard WHO columns:
LAST_UPDATE_DATE,LAST_UPDATED_BY,CREATION_DATE,CREATED_BY,LAST_UPDATE_LOGIN, plusOBJECT_VERSION_NUMBERfor optimistic locking.
Common Use Cases and Queries
The view is commonly used in custom reports, concurrent programs, and OAF or Forms-based pages that need to display MR headers without directly joining the B and TL tables. Because the profile filter is implicit, queries return only rows valid for the current AHL application usage context. A typical inspection-oriented query, driven by the search term, is:
SELECT mr_header_id, title, version_number, mr_status_code, qa_inspection_type_code
FROM apps.ahl_mr_headers_app_v
WHERE qa_inspection_type_code IS NOT NULL
AND mr_status_code = 'ACTIVE';
Analysts can group MR headers by inspection type to gauge workload or compliance coverage:
SELECT qa_inspection_type_code, COUNT(*)
FROM apps.ahl_mr_headers_app_v
GROUP BY qa_inspection_type_code;
When a report must span all usage codes regardless of profile value, the underlying AHL_MR_HEADERS_VL or the base tables should be queried instead, since the profile filter is enforced exclusively within this view.
-
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: APPS.AHL_MR_HEADERS_APP_V
12.1.1
-
VIEW: APPS.AHL_MR_HEADERS_APP_V
12.2.2
-
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 ,
-
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: APPS.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,
-
View: AHL_MR_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_DETAILS_V, object_name:AHL_MR_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_HEADERS_V with a)AHL_MR_RELATIONSHIPS_V to include the Parent Title & Revision and with b)AHL_DOC_TITLE_ASSOS_B & AHL_DOCUMENTS_VL to include the originating document. This View is used for Search MR. , implementation_dba_data: APPS.AHL_MR_DETAILS_V ,
-
VIEW: APPS.AHL_UE_DEFERRAL_DETAILS_V
12.2.2
-
View: AHL_MR_ITEM_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ITEM_DETAILS_V, object_name:AHL_MR_ITEM_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on join of AHL_MR_DETAILS_V, AHL_MR_ITEMS_V so that, each row corresponds to a unique Item Effectivity for the Maintenance requirement. This view is used by the Search MR UI to search by the associated item number along with othe , implementation_dba_data: APPS.AHL_MR_ITEM_DETAILS_V ,
-
View: AHL_MR_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_DETAILS_V, object_name:AHL_MR_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_HEADERS_V with a)AHL_MR_RELATIONSHIPS_V to include the Parent Title & Revision and with b)AHL_DOC_TITLE_ASSOS_B & AHL_DOCUMENTS_VL to include the originating document. This View is used for Search MR. , implementation_dba_data: APPS.AHL_MR_DETAILS_V ,
-
View: AHL_MR_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ITEM_DETAILS_V, object_name:AHL_MR_ITEM_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on join of AHL_MR_DETAILS_V, AHL_MR_ITEMS_V so that, each row corresponds to a unique Item Effectivity for the Maintenance requirement. This view is used by the Search MR UI to search by the associated item number along with othe , implementation_dba_data: APPS.AHL_MR_ITEM_DETAILS_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 ,
-
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 ,
-
APPS.AHL_FMP_MR_HEADER_PVT SQL Statements
12.1.1
-
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,
-
VIEW: APPS.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,
-
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_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,
-
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: APPS.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,
-
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 ,
-
APPS.AHL_FMP_MR_HEADER_PVT SQL Statements
12.2.2
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
APPS.AHL_COMPLETIONS_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.AHL_FMP_MR_HEADER_PVT
12.1.1
-
PACKAGE: APPS.AHL_FMP_MR_HEADER_PVT
12.2.2
-
APPS.AHL_COMPLETIONS_PVT SQL Statements
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_COMPLETIONS_PVT dependencies on AHL_MR_HEADERS_B
12.2.2
-
APPS.AHL_COMPLETIONS_PVT dependencies on AHL_MR_HEADERS_B
12.1.1
-
PACKAGE BODY: APPS.AHL_COMPLETIONS_PVT
12.1.1
-
PACKAGE BODY: APPS.AHL_FMP_MR_HEADER_PVT
12.1.1
-
APPS.AHL_COMPLETIONS_PVT dependencies on CS_INCIDENTS_ALL_VL
12.2.2
-
APPS.AHL_COMPLETIONS_PVT dependencies on AHL_UNIT_EFFECTIVITIES_B
12.2.2
-
APPS.AHL_COMPLETIONS_PVT dependencies on CS_INCIDENT_TYPES_VL
12.1.1
-
APPS.AHL_COMPLETIONS_PVT dependencies on AHL_UNIT_EFFECTIVITIES_B
12.1.1
-
APPS.AHL_COMPLETIONS_PVT dependencies on CS_INCIDENTS_ALL_VL
12.1.1
-
APPS.AHL_COMPLETIONS_PVT dependencies on CS_INCIDENT_TYPES_VL
12.2.2
-
PACKAGE BODY: APPS.AHL_FMP_MR_HEADER_PVT
12.2.2
-
PACKAGE BODY: APPS.AHL_COMPLETIONS_PVT
12.2.2
-
APPS.AHL_COMPLETIONS_PVT dependencies on AHL_UE_RELATIONSHIPS
12.2.2
-
APPS.AHL_COMPLETIONS_PVT dependencies on AHL_UE_RELATIONSHIPS
12.1.1
-
APPS.AHL_COMPLETIONS_PVT dependencies on AHL_VISIT_TASKS_B
12.1.1
-
APPS.AHL_COMPLETIONS_PVT dependencies on AHL_VISIT_TASKS_B
12.2.2
-
PACKAGE BODY: APPS.AHL_FMP_MR_REVISION_PVT
12.1.1
-
PACKAGE BODY: APPS.AHL_FMP_MR_REVISION_PVT
12.2.2
-
eTRM - AHL Tables and Views
12.1.1
description: Ahl Production Workorder Operations Information stored in this table ,