Search Results ahl_warranty_contracts_b
Overview
The AHL_WARRANTY_CONTRACTS_B table is a core data object within the Oracle E-Business Suite (EBS) module for Complex Maintenance, Repair, and Overhaul (AHL). It serves as the primary transactional table for storing warranty contract records. In the context of asset-intensive industries like aviation, manufacturing, or heavy equipment, this table is fundamental for managing the contractual warranty terms associated with specific serialized equipment instances. It enables organizations to track warranty coverage, durations, and entitlements against physical assets throughout their service life, directly supporting maintenance planning, service cost recovery, and customer support operations.
Key Information Stored
The table stores the essential attributes that define a warranty contract. Its primary key is the system-generated identifier, WARRANTY_CONTRACT_ID. A critical business key is the unique CONTRACT_NUMBER, which serves as the human-readable identifier for the warranty agreement. The table maintains two crucial foreign key relationships that anchor the warranty to other master data. The ITEM_INSTANCE_ID column links the contract to a specific serialized asset (equipment) defined in the CSI_ITEM_INSTANCES table. The WARRANTY_TEMPLATE_ID column references the AHL_WARRANTY_TEMPLATES_B table, connecting the contract to the standardized terms, conditions, and coverage rules defined in a template. While the provided metadata does not list all columns, typical data would include effective dates (start and end), status, coverage details, and references to the customer or service provider parties.
Common Use Cases and Queries
This table is central to several key business processes. A common use case is validating warranty coverage for a service request or work order. Technicians can query if an asset is under warranty before performing repairs to determine financial responsibility. Another critical use is generating warranty expiration reports for proactive customer outreach or maintenance scheduling. Sample SQL patterns often involve joining to asset and template tables to create comprehensive warranty registers.
- Retrieve active warranties for a specific item instance:
SELECT wcb.contract_number, wcb.start_date, wcb.end_date FROM ahl_warranty_contracts_b wcb WHERE wcb.item_instance_id = :p_instance_id AND SYSDATE BETWEEN wcb.start_date AND NVL(wcb.end_date, SYSDATE); - List warranties based on a template for analysis:
SELECT wcb.contract_number, csi.serial_number, wcb.status FROM ahl_warranty_contracts_b wcb, csi_item_instances csi WHERE wcb.warranty_template_id = :p_template_id AND wcb.item_instance_id = csi.instance_id;
Related Objects
The AHL_WARRANTY_CONTRACTS_B table exists within a tightly integrated schema. As documented, it has direct foreign key dependencies on two key master tables: CSI_ITEM_INSTANCES (for the serialized asset) and AHL_WARRANTY_TEMPLATES_B (for the contract terms). It is highly probable that a corresponding _TL (translation) table exists for multilingual contract descriptions. In a typical EBS AHL implementation, this base table is accessed via public APIs and is associated with various views for reporting. It is also the likely parent table for other transactional entities that record warranty claims (AHL_WARRANTY_CLAIMS_B), coverage lines, or service history linked to the contract, forming the backbone of the warranty management functionality.
-
Table: AHL_WARRANTY_CONTRACTS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_WARRANTY_CONTRACTS_B, object_name:AHL_WARRANTY_CONTRACTS_B, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , description: Table to store Contract records , implementation_dba_data: AHL.AHL_WARRANTY_CONTRACTS_B ,
-
APPS.AHL_WARRANTY_UTILS_PVT dependencies on AHL_WARRANTY_CONTRACTS_B
12.2.2
-
APPS.CSD_WARRANTY_CONTRACT_PVT dependencies on AHL_WARRANTY_CONTRACTS_B
12.2.2
-
APPS.AHL_VWP_RULES_PVT dependencies on AHL_WARRANTY_CONTRACTS_B
12.2.2
-
APPS.AHL_WARRANTY_CONTRACTS_PVT dependencies on AHL_WARRANTY_CONTRACTS_B
12.2.2
-
APPS.AHL_PRD_WORKORDER_PVT dependencies on AHL_WARRANTY_CONTRACTS_B
12.2.2
-
APPS.AHL_OSP_ORDERS_PVT dependencies on AHL_WARRANTY_CONTRACTS_B
12.2.2
-
APPS.AHL_VWP_TASKS_PVT dependencies on AHL_WARRANTY_CONTRACTS_B
12.2.2
-
APPS.AHL_WARRANTY_ENTL_PVT dependencies on AHL_WARRANTY_CONTRACTS_B
12.2.2
-
APPS.AHL_PRD_NONROUTINE_PVT dependencies on AHL_WARRANTY_CONTRACTS_B
12.2.2
-
APPS.AHL_VWP_RULES_PVT dependencies on AHL_WARRANTY_ENTITLEMENTS
12.2.2
-
SYNONYM: APPS.AHL_WARRANTY_CONTRACTS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_WARRANTY_CONTRACTS_B, status:VALID,
-
APPS.AHL_WARRANTY_CONTRACTS_PVT dependencies on AHL_WARRANTY_CONTRACTS_B_S
12.2.2
-
APPS.AHL_VWP_TASKS_PVT dependencies on FND_LOOKUP_VALUES_VL
12.2.2
-
APPS.AHL_OSP_ORDERS_PVT dependencies on AHL_WARRANTY_ENTITLEMENTS
12.2.2
-
VIEW: AHL.AHL_WARRANTY_CONTRACTS_B#
12.2.2
owner:AHL, object_type:VIEW, object_name:AHL_WARRANTY_CONTRACTS_B#, status:VALID,
-
VIEW: AHL.AHL_WARRANTY_CONTRACTS_B#
12.2.2
-
APPS.AHL_WARRANTY_CONTRACTS_PVT dependencies on AHL_WARRANTY_CONTRACTS_TL
12.2.2
-
VIEW: APPS.AHL_WARRANTY_CONTRACTS_VL
12.2.2
-
APPS.AHL_VWP_RULES_PVT dependencies on AHL_WARRANTY_CLAIMS_B
12.2.2
-
APPS.AHL_VWP_TASKS_PVT dependencies on AHL_WARRANTY_CLAIMS_B
12.2.2
-
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 ,
-
APPS.AHL_VWP_TASKS_PVT dependencies on AHL_WARRANTY_ENTITLEMENTS
12.2.2
-
View: AHL_WARRANTY_CONTRACTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_WARRANTY_CONTRACTS_VL, object_name:AHL_WARRANTY_CONTRACTS_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_WARRANTY_CONTRACTS_VL ,
-
APPS.CSD_WARRANTY_CONTRACT_PVT SQL Statements
12.2.2
-
APPS.AHL_WARRANTY_UTILS_PVT SQL Statements
12.2.2
-
APPS.AHL_VWP_TASKS_PVT dependencies on FND_LOOKUP_VALUES
12.2.2
-
APPS.AHL_VWP_RULES_PVT dependencies on FND_LOOKUP_VALUES_VL
12.2.2
-
PACKAGE BODY: APPS.CSD_WARRANTY_CONTRACT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSD_WARRANTY_CONTRACT_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_WARRANTY_CONTRACTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_WARRANTY_CONTRACTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_WARRANTY_ENTL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_WARRANTY_ENTL_PVT, status:VALID,
-
APPS.AHL_WARRANTY_CONTRACTS_PVT SQL Statements
12.2.2
-
TABLE: AHL.AHL_WARRANTY_CONTRACTS_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_WARRANTY_CONTRACTS_B, object_name:AHL_WARRANTY_CONTRACTS_B, status:VALID,
-
PACKAGE BODY: APPS.AHL_WARRANTY_UTILS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_WARRANTY_UTILS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_OSP_ORDERS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_OSP_ORDERS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_VWP_RULES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_VWP_RULES_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_PRD_NONROUTINE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_PRD_NONROUTINE_PVT, status:VALID,
-
VIEW: APPS.AHL_SEARCH_VISIT_TASK_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Table: CSI_ITEM_INSTANCES
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_ITEM_INSTANCES, object_name:CSI_ITEM_INSTANCES, status:VALID, product: CSI - Install Base , description: Item Instance details. , implementation_dba_data: CSI.CSI_ITEM_INSTANCES ,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.AHL_WORKORDERS_V
12.2.2
-
PACKAGE BODY: APPS.AHL_VWP_TASKS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_VWP_TASKS_PVT, status:VALID,
-
TABLE: AHL.AHL_WARRANTY_CONTRACTS_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_WARRANTY_CONTRACTS_TL, object_name:AHL_WARRANTY_CONTRACTS_TL, status:VALID,
-
TABLE: AHL.AHL_WARRANTY_CONT_CTR_B
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_WARRANTY_CONT_CTR_B, object_name:AHL_WARRANTY_CONT_CTR_B, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.AHL_WARRANTY_ENTL_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AHL_PRD_WORKORDER_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_PRD_WORKORDER_PVT, status:VALID,