Search Results ahl_mr_headers_app_v
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.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: 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: APPS.AHL_MR_RELATIONSHIPS_APP_V
12.2.2
-
VIEW: APPS.AHL_MR_ROUTES_APP_V
12.1.1
-
APPS.AHL_FMP_MR_HEADER_PVT SQL Statements
12.1.1
-
VIEW: APPS.AHL_MR_VISIT_TYPES_APP_V
12.1.1
-
VIEW: APPS.AHL_MR_ROUTES_APP_V
12.2.2
-
APPS.AHL_FMP_MR_REVISION_PVT SQL Statements
12.1.1
-
VIEW: APPS.AHL_MR_ROUTE_SEQUENCES_APP_V
12.2.2
-
VIEW: APPS.AHL_MR_RELATIONSHIPS_APP_V
12.1.1
-
VIEW: APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V
12.1.1
-
VIEW: APPS.AHL_MR_ROUTE_SEQUENCES_APP_V
12.1.1
-
VIEW: APPS.AHL_MR_VISIT_TYPES_APP_V
12.2.2
-
VIEW: APPS.AHL_MR_EFFECTIVITY_DTLS_APP_V
12.2.2
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_APP_V
12.2.2
-
VIEW: APPS.AHL_MR_EFFECTIVITIES_APP_V
12.1.1
-
VIEW: APPS.AHL_MR_INTERVALS_APP_V
12.1.1
-
VIEW: APPS.AHL_MR_INTERVALS_APP_V
12.2.2
-
APPS.AHL_VWP_MR_CST_PR_PVT SQL Statements
12.1.1
-
VIEW: APPS.AHL_MR_PC_NODES_V
12.1.1
-
VIEW: APPS.AHL_MR_PC_NODES_V
12.2.2
-
APPS.AHL_FMP_MR_HEADER_PVT SQL Statements
12.2.2
-
APPS.AHL_FMP_MR_REVISION_PVT SQL Statements
12.2.2
-
APPS.AHL_VWP_MR_CST_PR_PVT SQL Statements
12.2.2
-
View: AHL_MR_RELATIONSHIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_RELATIONSHIPS_V, object_name:AHL_MR_RELATIONSHIPS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_MR_RELATIONSHIPS with AHL_MR_HEADERS_VL to get the MR Titles & Revision Numbers of the Parent and Child MRs. , implementation_dba_data: APPS.AHL_MR_RELATIONSHIPS_V ,
-
APPS.AHL_FMP_MR_DOC_ASSO_PVT SQL Statements
12.2.2
-
View: AHL_MR_RELATIONSHIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_RELATIONSHIPS_V, object_name:AHL_MR_RELATIONSHIPS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_MR_RELATIONSHIPS with AHL_MR_HEADERS_VL to get the MR Titles & Revision Numbers of the Parent and Child MRs. , implementation_dba_data: APPS.AHL_MR_RELATIONSHIPS_V ,
-
APPS.AHL_FMP_MR_DOC_ASSO_PVT SQL Statements
12.1.1
-
APPS.AHL_FMP_PVT SQL Statements
12.1.1
-
VIEW: APPS.AHL_SEARCH_TEMPLATE_TASK_V
12.2.2
-
VIEW: APPS.AHL_SEARCH_TEMPLATE_TASK_V
12.1.1
-
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 ,
-
View: AHL_MR_ROUTES_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ROUTES_APP_V, object_name:AHL_MR_ROUTES_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_ROUTES_APP_V ,
-
PACKAGE BODY: APPS.AHL_FMP_MR_VISIT_TYPES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_VISIT_TYPES_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_MR_DOC_ASSO_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_DOC_ASSO_PVT, status:VALID,
-
View: AHL_MR_ROUTES_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ROUTES_APP_V, object_name:AHL_MR_ROUTES_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_ROUTES_APP_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 ,
-
PACKAGE BODY: APPS.AHL_PC_NODE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_PC_NODE_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,
-
PACKAGE BODY: APPS.AHL_PC_NODE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_PC_NODE_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_MR_ROUTE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_ROUTE_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_FMP_MR_VISIT_TYPES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_VISIT_TYPES_PVT, status:VALID,
-
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_RELATION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_RELATION_PVT, status:VALID,
-
View: AHL_MR_ROUTE_SEQUENCES_APP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ROUTE_SEQUENCES_APP_V, object_name:AHL_MR_ROUTE_SEQUENCES_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_ROUTE_SEQUENCES_APP_V ,
-
PACKAGE BODY: APPS.AHL_FMP_MR_DOC_ASSO_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FMP_MR_DOC_ASSO_PVT, status:VALID,
-
View: AHL_MR_ROUTE_SEQUENCES_APP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ROUTE_SEQUENCES_APP_V, object_name:AHL_MR_ROUTE_SEQUENCES_APP_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_MR_ROUTE_SEQUENCES_APP_V ,
-
View: AHL_MR_PC_NODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_PC_NODES_V, object_name:AHL_MR_PC_NODES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on join of AHL_MR_DETAILS_V, AHL_MR_EFFECTIVITIES to include the PC_NODE_ID defined in the MR effectivities , implementation_dba_data: APPS.AHL_MR_PC_NODES_V ,
-
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_PC_NODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_PC_NODES_V, object_name:AHL_MR_PC_NODES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on join of AHL_MR_DETAILS_V, AHL_MR_EFFECTIVITIES to include the PC_NODE_ID defined in the MR effectivities , implementation_dba_data: APPS.AHL_MR_PC_NODES_V ,