Search Results ozf_claim_lines_hist_all_pk
Overview
The OZF_CLAIM_LINES_HIST_ALL table is a core data object within the Oracle Trade Management (OZF) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. Its primary function is to serve as the historical repository for claim line details. In the context of trade promotions and claims processing, this table is essential for maintaining a complete, auditable record of all changes made to individual claim lines over time. It supports compliance, reporting, and analytical requirements by preserving the state of claim line data at various points in its lifecycle, separate from the active transactional tables.
Key Information Stored
While the provided metadata does not list specific columns beyond the keys, the table's structure is designed to capture historical snapshots of claim line attributes. The primary identifier is the CLAIM_LINE_HISTORY_ID column, which uniquely defines each historical record. A critical foreign key is the CLAIM_HISTORY_ID, which links each line history entry to its corresponding parent claim header history record in the OZF_CLAIMS_HISTORY_ALL table. Typically, the table would also store historical values for key claim line details such as the product or service claimed, quantity, amount, accrual status, associated promotion or offer, and the adjustment reason. It also inherently captures the timestamp and likely the identity of the user or process that created the historical snapshot.
Common Use Cases and Queries
This table is primarily accessed for audit trails, historical reporting, and troubleshooting data discrepancies. Common scenarios include reconstructing the state of a claim or a specific claim line at a past date, analyzing trends in claim line adjustments, and generating compliance reports that show the complete evolution of a claim. A typical query pattern involves joining to the claim header history to get a full historical picture.
Sample Query Pattern:
SELECT clh.*, ch.claim_number, ch.history_creation_date
FROM ozf_claim_lines_hist_all clh,
ozf_claims_history_all ch
WHERE clh.claim_history_id = ch.claim_history_id
AND ch.claim_id = :p_claim_id
ORDER BY ch.history_creation_date DESC, clh.claim_line_history_id;
Related Objects
The table maintains a strict hierarchical relationship within the Trade Management historical schema. The documented foreign key relationship is fundamental to its structure and use.
- OZF_CLAIMS_HISTORY_ALL: This is the primary parent table. Every record in OZF_CLAIM_LINES_HIST_ALL must reference a valid historical claim header via the CLAIM_HISTORY_ID column. This relationship ensures line-level history is always contextualized within the broader claim history.
- OZF_CLAIM_LINES_HIST_ALL_PK: The primary key constraint on the CLAIM_LINE_HISTORY_ID column guarantees the uniqueness of each historical line entry.
While not listed in the provided metadata, this history table is logically related to the active transactional table OZF_CLAIM_LINES_ALL, from which historical snapshots are typically generated.
-
Table: OZF_CLAIM_LINES_HIST_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_LINES_HIST_ALL, object_name:OZF_CLAIM_LINES_HIST_ALL, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Lines History , implementation_dba_data: OZF.OZF_CLAIM_LINES_HIST_ALL ,
-
Table: OZF_CLAIM_LINES_HIST_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIM_LINES_HIST_ALL, object_name:OZF_CLAIM_LINES_HIST_ALL, status:VALID, product: OZF - Trade Management , description: This table is used to store Claim Lines History , implementation_dba_data: OZF.OZF_CLAIM_LINES_HIST_ALL ,
-
eTRM - OZF Tables and Views
12.2.2
description: OZF_XREF_MAP table created for SIebel TPM Integration ,
-
eTRM - OZF Tables and Views
12.1.1
description: Table to store the Market eligibilty for a Offer Worksheet ,
-
eTRM - OZF Tables and Views
12.2.2
description: OZF_XREF_MAP table created for SIebel TPM Integration ,
-
eTRM - OZF Tables and Views
12.1.1
description: Table to store the Market eligibilty for a Offer Worksheet ,