Search Results ahl_warranty_templates_uk1
Overview
The AHL_WARRANTY_TEMPLATES_B table is a core data object within the Oracle E-Business Suite module for Complex Maintenance, Repair, and Overhaul (CMRO). It serves as the master repository for warranty template definitions. In the context of service and asset management, a warranty template provides a standardized framework for warranty terms, conditions, and coverage rules. These templates are used to efficiently generate specific warranty contracts for customers, ensuring consistency and reducing manual configuration. The table's role is foundational to the warranty management functionality, acting as the primary source from which enforceable warranty agreements are derived.
Key Information Stored
The table stores the defining attributes of a warranty template. Based on the provided metadata, the primary identifier is the WARRANTY_TEMPLATE_ID, a system-generated unique key. A critical business column is NAME, which holds the unique name of the template and is enforced by a unique key constraint (AHL_WARRANTY_TEMPLATES_UK1). While the full column list is not detailed in the excerpt, typical attributes stored in such a base table would include creation date, created by, last update date, last updated by, and other descriptive and control columns that define the template's operational characteristics, such as effective dates, status, and template type.
Common Use Cases and Queries
This table is central to operations involving the setup, query, and application of warranty templates. Common use cases include the creation of new standard warranty offerings, the modification of existing template terms, and the reporting of all available templates. A typical query would retrieve active templates for selection during the warranty contract creation process. For example:
- Listing all warranty templates:
SELECT warranty_template_id, name, creation_date FROM ahl_warranty_templates_b WHERE SYSDATE BETWEEN start_date_active AND NVL(end_date_active, SYSDATE); - Finding a specific template by name:
SELECT * FROM ahl_warranty_templates_b WHERE name = 'Standard 2-Year Parts Warranty'; - Identifying templates used in contracts: Queries often join this table with AHL_WARRANTY_CONTRACTS_B to analyze template utilization.
Related Objects
The AHL_WARRANTY_TEMPLATES_B table has several key dependencies, as indicated by its foreign key relationships. It is the parent table for multiple child entities that store detailed, language-specific, or associative data. Key related objects include:
- AHL_WARRANTY_TEMPLATES_TL: The translation table that stores the multilingual descriptions for the templates.
- AHL_WARRANTY_CONTRACTS_B: Warranty contracts created based on a specific template reference the template's ID via the WARRANTY_TEMPLATE_ID foreign key.
- AHL_WARRANTY_TMPL_ITEMS: Stores the specific items (parts, products) covered by the warranty template.
- AHL_WARRANTY_TMPL_CTR_B: Likely associates warranty templates with specific counters or usage metrics that determine warranty coverage limits.
-
Table: AHL_WARRANTY_TEMPLATES_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_WARRANTY_TEMPLATES_B, object_name:AHL_WARRANTY_TEMPLATES_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Table contains Warranty Template definitions , implementation_dba_data: AHL.AHL_WARRANTY_TEMPLATES_B ,