Search Results fnd_lookup_values_vl
Overview
APPS.AHL_MR_HEADERS_V is a reporting view in the Oracle E-Business Suite AHL (Complex Maintenance Repair and Overhaul) product, valid in both release 12.1.1 and 12.2.2. It presents maintenance requirement (MR) header information in a denormalized, human-readable form. The view is defined primarily over the translated header view AHL_MR_HEADERS_VL, joined to FND_LOOKUP_VALUES_VL to resolve the descriptive meaning of the various coded columns maintained on the MR header, and to AHL_MR_HEADERS_B to expose the title and revision of any preceding (superseded) maintenance requirement. In this way the view converts stored code values — category, service type, status, implementation status, and similar flags — into their meaningful display strings, while preserving all descriptive and attribute columns of the underlying header. Its role is to serve as the standard read interface for MR headers, suitable for concurrent-program extracts, Oracle Reports, OBIEE/BI Publisher data models, and custom inquiry pages that must show meaningful values rather than raw codes. Because it exposes the complete header record together with its textual descriptions, it is the natural starting point for any reporting or integration requirement that needs MR header context without navigating to each lookup individually.
Underlying Base Objects
According to the documented view metadata, AHL_MR_HEADERS_V is defined over the following referenced objects: AHL_MR_HEADERS_B (SYNONYM), AHL_MR_HEADERS_TL (SYNONYM), AHL_WARRANTY_TEMPLATES_B (SYNONYM), FND_LOOKUP_VALUES (SYNONYM), FND_LOOKUP_VALUES_VL (VIEW), FND_PROFILE (PACKAGE), MTL_SYSTEM_ITEMS_KFV (SYNONYM), and QA_CHAR_VALUE_LOOKUPS (SYNONYM).
AHL_MR_HEADERS_B stores the base, non-translated MR header rows — identifiers, version number, preceding MR reference, coded attributes, effective dates, flags, and descriptive flexfield columns. AHL_MR_HEADERS_TL holds the translated title, description, and comments, which are exposed through the language-sensitive AHL_MR_HEADERS_VL. The lookup synonyms (including FND_LOOKUP_VALUES and its view variant FND_LOOKUP_VALUES_VL) supply the MEANING and DESCRIPTION strings used to replace stored codes with readable text. The AHL_MR_HEADERS_B alias (shown in the implementation text as PMR) is joined again on PRECEDING_MR_HEADER_ID to retrieve the preceding MR's title and revision. MTL_SYSTEM_ITEMS_KFV supplies the concatenated, key-flexfield item segments for the billing item, and QA_CHAR_VALUE_LOOKUPS and AHL_WARRANTY_TEMPLATES_B support quality-inspection and warranty-related lookups. The FND_PROFILE package is referenced in the profile-dependent logic that governs language and security handling. User-facing code should query this view rather than the base tables to avoid reimplementing the lookup joins.
Key Columns
- MR_HEADER_ID — primary identifier of the maintenance requirement header; the join key to MR lines and operations.
- TITLE, VERSION_NUMBER, REVISION — the MR title and its revision/version context, sourced from the base and translated tables.
- PRECEDING_MR_HEADER_ID, PMR.TITLE, PMR.REVISION — the identifier and descriptive title/revision of the MR this header supersedes, enabling revision-chain reporting.
- CATEGORY_CODE, SERVICE_TYPE_CODE, MR_STATUS_CODE, IMPLEMENT_STATUS_CODE, PROGRAM_TYPE_CODE, PROGRAM_SUBTYPE_CODE, TYPE_CODE, SPACE_CATEGORY_CODE — coded classifications; each is accompanied by a corresponding lookup MEANING column.
- REPETITIVE_FLAG, SHOW_REPETITIVE_CODE, WHICHEVER_FIRST_CODE, COPY_ACCOMPLISHMENT_FLAG — behavioral flags controlling scheduling and copy semantics, with resolved meanings.
- EFFECTIVE_FROM / EFFECTIVE_TO — validity window of the MR header.
- DESCRIPTION, COMMENTS — translated narrative text for the header.
- SERVICE_REQUEST_TEMPLATE_ID, BILLING_ITEM_ID, BILLING_ORG_ID, MTL — service-request and billing references, where MTL is the concatenated segment string of the billing item.
- QA_INSPECTION_TYPE_CODE, QA.DESCRIPTION — quality-inspection type and its description.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield context and segment values.
- OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO and optimistic-locking audit columns.
Common Use Cases and Queries
A typical use is listing all active MR headers with their descriptive classifications for a status dashboard or extract:
SELECT mr_header_id, title, version_number, revision,
category_code, mr_status_code, effective_from, effective_to
FROM apps.ahl_mr_headers_v
WHERE mr_status_code = 'RELEASED'
ORDER BY last_update_date DESC;
To report the revision chain of superseded maintenance requirements, the preceding MR columns are used:
SELECT c.title AS current_title, c.revision AS current_rev,
p.title AS preceding_title, p.revision AS preceding_rev
FROM apps.ahl_mr_headers_v c
WHERE c.preceding_mr_header_id IS NOT NULL;
To verify billing item configuration on maintenance requirements, the concatenated item segments are retrieved without an additional join:
SELECT mr_header_id, title, billing_item_id, billing_org_id, mtl FROM apps.ahl_mr_headers_v WHERE billing_item_id IS NOT NULL;
These queries are read-only and consistent with the view's intended reporting purpose. Because the view performs multiple outer joins to lookup and item tables, selective predicates on MR_STATUS_CODE, CATEGORY_CODE, or EFFECTIVE dates significantly reduce execution cost on large AHL installations.
-
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_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_REFERENCE_DOC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_REFERENCE_DOC_V, object_name:AHL_REFERENCE_DOC_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view is based on AHL_DOCUMENTS_VL, AHL_DOC_REVISIONS_B, FND_LOOKUP_VALUES_VL, and AHL_DOC_TITLE_ASSOS_VL. This stores information relating to Routes and Operations. , implementation_dba_data: APPS.AHL_REFERENCE_DOC_V ,
-
View: AHL_REFERENCE_DOC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_REFERENCE_DOC_V, object_name:AHL_REFERENCE_DOC_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view is based on AHL_DOCUMENTS_VL, AHL_DOC_REVISIONS_B, FND_LOOKUP_VALUES_VL, and AHL_DOC_TITLE_ASSOS_VL. This stores information relating to Routes and Operations. , implementation_dba_data: APPS.AHL_REFERENCE_DOC_V ,
-
View: AHL_DOCUMENT_ASSOS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOCUMENT_ASSOS_V, object_name:AHL_DOCUMENT_ASSOS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Its a view based on AHL_DOCUMENTS_VL, AHL_DOC_TITLE_ASSOS_VL, AHL_DOC_REVISIONS_B ,FND_LOOKUP_VALUES_VL , implementation_dba_data: APPS.AHL_DOCUMENT_ASSOS_V ,
-
View: AHL_DOCUMENT_ASSOS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOCUMENT_ASSOS_V, object_name:AHL_DOCUMENT_ASSOS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Its a view based on AHL_DOCUMENTS_VL, AHL_DOC_TITLE_ASSOS_VL, AHL_DOC_REVISIONS_B ,FND_LOOKUP_VALUES_VL , implementation_dba_data: APPS.AHL_DOCUMENT_ASSOS_V ,
-
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 ,
-
View: AHL_APPROVAL_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_APPROVAL_RULES_V, object_name:AHL_APPROVAL_RULES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query relates to approval rules information , implementation_dba_data: APPS.AHL_APPROVAL_RULES_V ,
-
View: AHL_APPROVAL_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_APPROVAL_RULES_V, object_name:AHL_APPROVAL_RULES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query relates to approval rules information , implementation_dba_data: APPS.AHL_APPROVAL_RULES_V ,
-
View: AHL_ROUTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_ROUTES_V, object_name:AHL_ROUTES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_ROUTES_VL and FND_LOOKUP_VALUES_VL to include all the corresponding descriptions of the codes. , implementation_dba_data: APPS.AHL_ROUTES_V ,
-
View: AHL_PROG_TYPE_SUBTYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_PROG_TYPE_SUBTYPES_V, object_name:AHL_PROG_TYPE_SUBTYPES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_PROG_TYPE_SUBTYPES,FND_LOOKUP_VALUES_VL and FND_LOOKUP_VALUES_VL , implementation_dba_data: APPS.AHL_PROG_TYPE_SUBTYPES_V ,
-
View: AHL_PROG_TYPE_SUBTYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_PROG_TYPE_SUBTYPES_V, object_name:AHL_PROG_TYPE_SUBTYPES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_PROG_TYPE_SUBTYPES,FND_LOOKUP_VALUES_VL and FND_LOOKUP_VALUES_VL , implementation_dba_data: APPS.AHL_PROG_TYPE_SUBTYPES_V ,
-
View: AHL_ROUTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_ROUTES_V, object_name:AHL_ROUTES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_ROUTES_VL and FND_LOOKUP_VALUES_VL to include all the corresponding descriptions of the codes. , implementation_dba_data: APPS.AHL_ROUTES_V ,
-
View: AHL_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OPERATIONS_V, object_name:AHL_OPERATIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_OPERATIONS_VL and FND_LOOKUP_VALUES_VL to include all the codes and their corresponding descriptions. , implementation_dba_data: APPS.AHL_OPERATIONS_V ,
-
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 ,
-
View: AHL_DOC_TYPE_ASSOS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOC_TYPE_ASSOS_V, object_name:AHL_DOC_TYPE_ASSOS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view is based on AHL_DOCUMENTS_VL, AHL_DOC_REVISIONS_B, FND_LOOKUP_VALUES_VL, and AHL_DOC_TITLE_ASSOS_VL. This stores information relating to Master Configuration. , implementation_dba_data: APPS.AHL_DOC_TYPE_ASSOS_V ,
-
View: AHL_DOC_TYPE_ASSOS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOC_TYPE_ASSOS_V, object_name:AHL_DOC_TYPE_ASSOS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view is based on AHL_DOCUMENTS_VL, AHL_DOC_REVISIONS_B, FND_LOOKUP_VALUES_VL, and AHL_DOC_TITLE_ASSOS_VL. This stores information relating to Master Configuration. , implementation_dba_data: APPS.AHL_DOC_TYPE_ASSOS_V ,
-
View: AHL_UNIT_EFFECTIVITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_EFFECTIVITIES_V, object_name:AHL_UNIT_EFFECTIVITIES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve unit effectivities information based on the Maintainance Requirements defined in Fleet Maintainance Program and item instances available in Install Base for a position (node). , implementation_dba_data: APPS.AHL_UNIT_EFFECTIVITIES_V ,
-
View: AHL_UNIT_EFFECTIVITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_EFFECTIVITIES_V, object_name:AHL_UNIT_EFFECTIVITIES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve unit effectivities information based on the Maintainance Requirements defined in Fleet Maintainance Program and item instances available in Install Base for a position (node). , implementation_dba_data: APPS.AHL_UNIT_EFFECTIVITIES_V ,
-
View: AHL_PRODTYPE_ZONES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_PRODTYPE_ZONES_V, object_name:AHL_PRODTYPE_ZONES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_PRODTYPE_ZONES and the view FND_LOOKUP_VALUES_VL to include all the corresponding descriptions of the codes. , implementation_dba_data: APPS.AHL_PRODTYPE_ZONES_V ,
-
View: AHL_PRODTYPE_ZONES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_PRODTYPE_ZONES_V, object_name:AHL_PRODTYPE_ZONES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_PRODTYPE_ZONES and the view FND_LOOKUP_VALUES_VL to include all the corresponding descriptions of the codes. , implementation_dba_data: APPS.AHL_PRODTYPE_ZONES_V ,
-
View: AHL_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OPERATIONS_V, object_name:AHL_OPERATIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_OPERATIONS_VL and FND_LOOKUP_VALUES_VL to include all the codes and their corresponding descriptions. , implementation_dba_data: APPS.AHL_OPERATIONS_V ,
-
View: AHL_PC_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_PC_HEADERS_V, object_name:AHL_PC_HEADERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on AHL_PC_HEADERS_VL and FND_LOOKUPS , implementation_dba_data: APPS.AHL_PC_HEADERS_V ,
-
View: AHL_PC_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_PC_HEADERS_V, object_name:AHL_PC_HEADERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on AHL_PC_HEADERS_VL and FND_LOOKUPS , implementation_dba_data: APPS.AHL_PC_HEADERS_V ,
-
View: AHL_VISIT_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_VISIT_DETAILS_V, object_name:AHL_VISIT_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Visit details (ITEM,INSTANCE, ORGANIZATION, DEPARTMENT, UNIT information) , implementation_dba_data: APPS.AHL_VISIT_DETAILS_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 ,
-
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_APPROVERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_APPROVERS_V, object_name:AHL_APPROVERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query relates to approvers information , implementation_dba_data: APPS.AHL_APPROVERS_V ,
-
View: AHL_SPACE_CAPBLTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_SPACE_CAPBLTS_V, object_name:AHL_SPACE_CAPBLTS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query relates to space and its capabilities , implementation_dba_data: APPS.AHL_SPACE_CAPBLTS_V ,
-
View: AHL_VISIT_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_VISIT_DETAILS_V, object_name:AHL_VISIT_DETAILS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Visit details (ITEM,INSTANCE, ORGANIZATION, DEPARTMENT, UNIT information) , implementation_dba_data: APPS.AHL_VISIT_DETAILS_V ,
-
View: AHL_SPACE_CAPBLTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_SPACE_CAPBLTS_V, object_name:AHL_SPACE_CAPBLTS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query relates to space and its capabilities , implementation_dba_data: APPS.AHL_SPACE_CAPBLTS_V ,
-
View: AHL_APPROVERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_APPROVERS_V, object_name:AHL_APPROVERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query relates to approvers information , implementation_dba_data: APPS.AHL_APPROVERS_V ,
-
View: AHL_DOCUMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOCUMENTS_V, object_name:AHL_DOCUMENTS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view is based on AHL_DOCUMENTS_B,AHL_DOCUMENTS_TL,FND tables.Document View , implementation_dba_data: APPS.AHL_DOCUMENTS_V ,
-
View: AHL_UNIT_CONFIG_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_CONFIG_HEADERS_V, object_name:AHL_UNIT_CONFIG_HEADERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view includes all the information related to unit configuration headers, master configuration headers, and the hierarchy of uc and its parent UC, root UC and parent instance. , implementation_dba_data: APPS.AHL_UNIT_CONFIG_HEADERS_V ,
-
View: AHL_SEARCH_VISITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_SEARCH_VISITS_V, object_name:AHL_SEARCH_VISITS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Visits information by search visits screen , implementation_dba_data: APPS.AHL_SEARCH_VISITS_V ,
-
View: AHL_SR_UE_ASSOCIATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_SR_UE_ASSOCIATIONS_V, object_name:AHL_SR_UE_ASSOCIATIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View to retrieve the unit effectivities that are associated to a Service Request. , implementation_dba_data: APPS.AHL_SR_UE_ASSOCIATIONS_V ,
-
View: AHL_SEARCH_VISITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_SEARCH_VISITS_V, object_name:AHL_SEARCH_VISITS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Visits information by search visits screen , implementation_dba_data: APPS.AHL_SEARCH_VISITS_V ,
-
View: AHL_DOCUMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOCUMENTS_V, object_name:AHL_DOCUMENTS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view is based on AHL_DOCUMENTS_B,AHL_DOCUMENTS_TL,FND tables.Document View , implementation_dba_data: APPS.AHL_DOCUMENTS_V ,
-
View: AHL_UNIT_CONFIG_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_UNIT_CONFIG_HEADERS_V, object_name:AHL_UNIT_CONFIG_HEADERS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view includes all the information related to unit configuration headers, master configuration headers, and the hierarchy of uc and its parent UC, root UC and parent instance. , implementation_dba_data: APPS.AHL_UNIT_CONFIG_HEADERS_V ,
-
View: AHL_DOC_REVISIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOC_REVISIONS_V, object_name:AHL_DOC_REVISIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Documents Revision View , implementation_dba_data: APPS.AHL_DOC_REVISIONS_V ,
-
View: AHL_APPROVERS_TYPE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_APPROVERS_TYPE_V, object_name:AHL_APPROVERS_TYPE_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query relates to approver types information , implementation_dba_data: APPS.AHL_APPROVERS_TYPE_V ,
-
View: AHL_VISITS_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_VISITS_INFO_V, object_name:AHL_VISITS_INFO_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Visit information , implementation_dba_data: APPS.AHL_VISITS_INFO_V ,
-
View: AHL_DOC_REVISIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_DOC_REVISIONS_V, object_name:AHL_DOC_REVISIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Documents Revision View , implementation_dba_data: APPS.AHL_DOC_REVISIONS_V ,
-
View: AHL_SR_UE_ASSOCIATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_SR_UE_ASSOCIATIONS_V, object_name:AHL_SR_UE_ASSOCIATIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View to retrieve the unit effectivities that are associated to a Service Request. , implementation_dba_data: APPS.AHL_SR_UE_ASSOCIATIONS_V ,
-
View: AHL_OPERATION_PHASES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_OPERATION_PHASES_V, object_name:AHL_OPERATION_PHASES_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the table AHL_OPERATION_PHASES and the view FND_LOOKUP_VALUES_VL to include all the corresponding descriptions of the codes. , implementation_dba_data: APPS.AHL_OPERATION_PHASES_V ,
-
View: AHL_SEARCH_VISIT_TASK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_SEARCH_VISIT_TASK_V, object_name:AHL_SEARCH_VISIT_TASK_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Visits task information by search visit tasks screen , implementation_dba_data: APPS.AHL_SEARCH_VISIT_TASK_V ,
-
View: AHL_APPROVERS_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_APPROVERS_TYPE_V, object_name:AHL_APPROVERS_TYPE_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query relates to approver types information , implementation_dba_data: APPS.AHL_APPROVERS_TYPE_V ,
-
View: AHL_VISITS_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_VISITS_INFO_V, object_name:AHL_VISITS_INFO_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Visit information , implementation_dba_data: APPS.AHL_VISITS_INFO_V ,
-
View: AHL_SEARCH_VISIT_TASK_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_SEARCH_VISIT_TASK_V, object_name:AHL_SEARCH_VISIT_TASK_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: This view stores the query to retrieve Visits task information by search visit tasks screen , implementation_dba_data: APPS.AHL_SEARCH_VISIT_TASK_V ,
-
View: AHL_MR_ACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_MR_ACTIONS_V, object_name:AHL_MR_ACTIONS_V, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: View based on the views AHL_MR_ACTIONS_VL, FND_LOOKUP_VALUES_VL and QA_PLANS , implementation_dba_data: APPS.AHL_MR_ACTIONS_V ,