Search Results ahl_warranty_cont_ctr_b
Overview
The table AHL_WARRANTY_CONT_CTR_B belongs to the AHL schema, which supports the Oracle Complex Maintenance Repair and Overhaul (CMRO) application in Oracle E-Business Suite 12.1.1 and 12.2.2. It is a core transactional table that associates warranty contracts with specific counters, thereby defining the coverage scope of a warranty agreement against measurable usage units such as operating hours, cycles, or mileage. Each row represents a distinct warranty-contract-to-counter relationship, including the threshold and starting values that govern when warranty entitlement applies or expires.
Based on the foreign key structure documented in the ETRM metadata, this object exhibits characteristics of a satellite-leaning entity within a Data Vault modeling approach. It carries descriptive attributes (thresholds, start values, expiration dates) tied to the business keys formed by the combination of warranty contract and counter, rather than acting as a pure hub or link. The primary key is a surrogate identifier, with unique indexes providing the natural business-key candidates.
Key Information Stored
The table contains 29 documented columns. The most significant are as follows:
WARRANTY_CNTRT_COUNTER_ID— the surrogate primary key (defined by indexAHL_WARRANTY_CONT_CTR_B_PK1), uniquely identifying each warranty-counter association.WARRANTY_CONTRACT_ID— foreign key to the warranty contract header; combined withCOUNTER_IDit forms the business-key candidateAHL_WARRANTY_CONT_CTR_B_U2.COUNTER_ID— foreign key referencingCSI_COUNTERS_B, identifying the specific counter (e.g., hour meter, cycle counter) covered by the warranty.THRESHOLD— the counter reading at which warranty conditions are triggered (for example, a maximum usage value).START_VALUE— the counter reading at the beginning of warranty coverage.EXPIRATION_DATE— the date on which the warranty-counter association ceases to apply.SECURITY_GROUP_ID— foreign key toFND_SECURITY_GROUPS, enforcing multi-org or data-security access control.- Standard EBS audit columns:
OBJECT_VERSION_NUMBER,LAST_UPDATE_DATE,LAST_UPDATED_BY,CREATION_DATE,CREATED_BY, andLAST_UPDATE_LOGIN. - Flexfield attributes
ATTRIBUTE_CATEGORYandATTRIBUTE1throughATTRIBUTE15, available for customer-specific extensions.
The unique index AHL_WARRANTY_CONT_CTR_B_U1 on WARRANTY_CNTRT_COUNTER_ID reinforces the surrogate key, while AHL_WARRANTY_CONT_CTR_B_U2 enforces at most one active association per warranty contract and counter pair.
Common Use Cases and Queries
Typical usage scenarios include verifying which counters are covered by a given warranty contract, determining whether a counter reading has crossed the warranty threshold, and reporting on warranties nearing expiration. For example, to list counters covered by a contract and their thresholds:
SELECT w.WARRANTY_CONTRACT_ID,
w.COUNTER_ID,
w.START_VALUE,
w.THRESHOLD,
w.EXPIRATION_DATE
FROM AHL.AHL_WARRANTY_CONT_CTR_B w
WHERE w.WARRANTY_CONTRACT_ID = :contract_id;
A common join to resolve counter details uses the foreign key to CSI_COUNTERS_B:
SELECT c.COUNTER_NAME, c.COUNTER_UOM, w.THRESHOLD, w.EXPIRATION_DATE FROM AHL.AHL_WARRANTY_CONT_CTR_B w, CSI.CSI_COUNTERS_B c WHERE w.COUNTER_ID = c.COUNTER_ID AND w.WARRANTY_CONTRACT_ID = :contract_id;
Reporting queries frequently filter on EXPIRATION_DATE to identify lapsed coverage, or compare live counter readings against THRESHOLD and START_VALUE to evaluate remaining warranty entitlement.
Related Objects
The following objects are most significant in relation to this table:
CSI_COUNTERS_B— referenced viaCOUNTER_ID; supplies counter definitions and units of measure.AHL_WARRANTY_CONT_CTR_TL— translation table referencing this entity viaWARRANTY_CNTRT_COUNTER_ID; stores language-specific descriptive text.AHL_WARRANTY_CONTRACTS(warranty contract header) — parent ofWARRANTY_CONTRACT_ID.FND_SECURITY_GROUPS— referenced viaSECURITY_GROUP_IDfor access control.- AHL warranty contract APIs — typically operate on this table when creating or modifying warranty coverage.
-
Table: 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, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: AHL.AHL_WARRANTY_CONT_CTR_B ,
-
VIEW: AHL.AHL_WARRANTY_CONT_CTR_B#
12.2.2
owner:AHL, object_type:VIEW, object_name:AHL_WARRANTY_CONT_CTR_B#, status:VALID,
-
SYNONYM: APPS.AHL_WARRANTY_CONT_CTR_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AHL_WARRANTY_CONT_CTR_B, status:VALID,
-
VIEW: AHL.AHL_WARRANTY_CONT_CTR_B#
12.2.2
-
VIEW: APPS.AHL_WARRANTY_CONT_CTR_VL
12.2.2
-
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,
-
Table: AHL_WARRANTY_CONT_CTR_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_WARRANTY_CONT_CTR_TL, object_name:AHL_WARRANTY_CONT_CTR_TL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: AHL.AHL_WARRANTY_CONT_CTR_TL ,
-
View: AHL_WARRANTY_CONT_CTR_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_WARRANTY_CONT_CTR_VL, object_name:AHL_WARRANTY_CONT_CTR_VL, status:VALID, product: AHL - Complex Maintenance Repair and Overhaul , implementation_dba_data: APPS.AHL_WARRANTY_CONT_CTR_VL ,
-
Table: CSI_COUNTERS_B
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_COUNTERS_B, object_name:CSI_COUNTERS_B, status:VALID, product: CSI - Install Base , description: Holds the counter instance data , implementation_dba_data: CSI.CSI_COUNTERS_B ,
-
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_UTILS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_WARRANTY_UTILS_PVT, status:VALID,
-
APPS.AHL_WARRANTY_UTILS_PVT SQL Statements
12.2.2
-
TABLE: AHL.AHL_WARRANTY_CONT_CTR_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_WARRANTY_CONT_CTR_TL, object_name:AHL_WARRANTY_CONT_CTR_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.AHL_WARRANTY_CONT_CTR_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AHL.AHL_WARRANTY_CONT_CTR_VL, object_name:AHL_WARRANTY_CONT_CTR_VL, status:VALID,
-
APPS.AHL_WARRANTY_CONTRACTS_PVT SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.AHL_WARRANTY_CONTRACTS_PVT dependencies on AHL_WARRANTY_CONT_CTR_B
12.2.2
-
APPS.AHL_WARRANTY_UTILS_PVT dependencies on AHL_WARRANTY_CONT_CTR_B
12.2.2
-
Foreign Keys
12.2.2
-
PACKAGE BODY: APPS.AHL_WARRANTY_CONTRACTS_PVT
12.2.2
-
APPS.AHL_WARRANTY_UTILS_PVT dependencies on CS_COUNTERS
12.2.2
-
PACKAGE BODY: APPS.AHL_WARRANTY_UTILS_PVT
12.2.2
-
APPS.AHL_WARRANTY_CONTRACTS_PVT dependencies on AHL_WARRANTY_CONT_CTR_TL
12.2.2
-
APPS.AHL_WARRANTY_CONTRACTS_PVT dependencies on AHL_WARRANTY_CONT_CTR_B_S
12.2.2
-
eTRM - AHL Tables and Views
12.2.2
description: Ahl Production Workorder Operations Information stored in this table ,
-
APPS.AHL_UMP_PROCESSUNIT_PVT SQL Statements
12.2.2
-
eTRM - AHL Tables and Views
12.2.2
description: Ahl Production Workorder Operations Information stored in this table ,
-
12.2.2 DBA Data
12.2.2
-
APPS.AHL_UMP_PROCESSUNIT_PVT dependencies on AHL_DEBUG_PUB
12.2.2
-
PACKAGE BODY: APPS.AHL_UMP_PROCESSUNIT_PVT
12.2.2