Search Results history_event_date
Overview
OZF_CLAIMS_HISTORY_ALL is a Trade Management (OZF) table that stores claim header history records within Oracle E-Business Suite Release 12.1.1 and 12.2.2. Its documented purpose is to retain historical snapshots of claim headers, allowing the application to preserve the state of a claim at each significant lifecycle event (creation, approval, settlement, splitting, and so on) without overwriting the live claim record held in OZF_CLAIMS_ALL. The table is owned by the OZF schema and is reported as VALID.
The table is implemented as an auditable, multi-organization–aware entity. It carries the standard WHO columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN), concurrent program context columns (REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE), an ORG_ID for multi-org isolation, a SECURITY_GROUP_ID, and OBJECT_VERSION_NUMBER for optimistic locking. A heuristic Data Vault classification of this object is satellite-leaning: the primary key CLAIM_HISTORY_ID identifies individual history rows, and the foreign key CLAIM_ID back to OZF_CLAIMS_ALL behaves much like a parent key to which this table attaches descriptive, time-stamped attributes.
Key Information Stored
The table is documented with 150 columns. The most operationally significant are:
- CLAIM_HISTORY_ID — surrogate primary key, enforced by OZF_CLAIMS_HISTORY_ALL_PK and mirrored by the unique index OZF_CLAIMS_HISTORY_ALL_U1. This is the technical identifier used by child tables, not the business key of the claim itself.
- CLAIM_ID — foreign key to OZF_CLAIMS_ALL; the live claim to which this history row belongs. This is the principal business-key candidate for joins to the claim.
- CLAIM_NUMBER and CLAIM_TYPE_ID — the human-readable claim identifier and its classification at the point of the historical event.
- HISTORY_EVENT, HISTORY_EVENT_DATE, and HISTORY_EVENT_DESCRIPTION — the nature of the lifecycle event captured, its timestamp, and narrative context.
- AMOUNT, ACCTD_AMOUNT, CURRENCY_CODE, EXCHANGE_RATE, EXCHANGE_RATE_TYPE, EXCHANGE_RATE_DATE, and SET_OF_BOOKS_ID — entered and accounted monetary values together with the currency conversion context.
- AMOUNT_ADJUSTED, AMOUNT_REMAINING, AMOUNT_SETTLED, AMOUNT_APPLIED, and the ACCTD_* counterparts — the settlement and adjustment breakdown at the historical point in time.
- STATUS_CODE, APPROVED_FLAG, APPROVED_DATE, APPROVED_BY, SETTLED_DATE, SETTLED_BY — lifecycle status and approval/settlement metadata.
- CUST_ACCOUNT_ID, CUST_BILLTO_ACCT_SITE_ID, CUST_SHIPTO_ACCT_SITE_ID, SALES_REP_ID, COLLECTOR_ID, TERRITORY_ID — the customer and internal assignment context.
- CLAIM_DATE, DUE_DATE, ORIGINAL_CLAIM_DATE, GL_DATE, EFFECTIVE_DATE — the date drivers for aging and accounting.
- SPLIT_FROM_CLAIM_ID, ROOT_CLAIM_ID, GROUP_CLAIM_ID, DUPLICATE_CLAIM_ID — lineage references for claim splitting, grouping, and duplicate handling.
- DOC_SEQUENCE_ID, DOC_SEQUENCE_VALUE, PAYMENT_METHOD, VOUCHER_ID, VOUCHER_NUMBER, PAYMENT_REFERENCE_ID, RECEIPT_ID, RECEIPT_NUMBER — document sequencing and payment/settlement references.
- ORG_ID and SECURITY_GROUP_ID — multi-org and security partitioning.
- ATTRIBUTE1 through ATTRIBUTE15 and DEDUCTION_ATTRIBUTE1 through DEDUCTION_ATTRIBUTE15 — the descriptive flexfield segments for the claim header and deduction contexts.
Common Use Cases and Queries
The primary use case is historical claim reporting: reconstructing the state of a claim at a given event or point in time for reconciliation, dispute tracking, and audit. A typical query joins the history table to the current claim header:
SELECT h.CLAIM_ID, h.CLAIM_NUMBER, h.HISTORY_EVENT, h.HISTORY_EVENT_DATE, h.STATUS_CODE, h.AMOUNT_REMAINING FROM OZF.OZF_CLAIMS_HISTORY_ALL h WHERE h.CLAIM_ID = :claim_id ORDER BY h.HISTORY_EVENT_DATE;
Because the table is partitioned by ORG_ID, operational queries should filter on ORG_ID and, where set-based security applies, on SECURITY_GROUP_ID. Settlement and aging reports frequently aggregate AMOUNT_SETTLED, AMOUNT_REMAINING, and ACCTD_AMOUNT_REMAINING grouped by STATUS_CODE, CURRENCY_CODE, or SALES_REP_ID. Lineage analysis for split or grouped claims uses SPLIT_FROM_CLAIM_ID, ROOT_CLAIM_ID, and GROUP_CLAIM_ID to trace a claim's ancestry, and the table pairs with OZF_CLAIM_LINES_HIST_ALL to produce a complete historical view of header plus lines. APPROVED_FLAG, APPROVED_DATE, SETTLED_DATE, and PAYMENT_STATUS support approval cycle-time and collection performance metrics.
Related Objects
- OZF_CLAIMS_ALL — the live claim header; joined on OZF_CLAIMS_HISTORY_ALL.CLAIM_ID = OZF_CLAIMS_ALL.CLAIM_ID.
- OZF_CLAIM_LINES_HIST_ALL — historical claim lines; joins on CLAIM_HISTORY_ID and references this table's primary key, giving header-to-line historical rollup.
- HZ_CUST_ACCOUNTS — customer account context via CUST_ACCOUNT_ID.
- AR_COLLECTORS — collector assignment via COLLECTOR_ID.
- FND_DOCUMENT_SEQUENCES — document sequence definitions via DOC_SEQUENCE_ID.
- FND_SECURITY_GROUPS — security group context via SECURITY_GROUP_ID.
- JTF_TASK_TEMP_GROUPS_B — task template grouping via TASK_TEMPLATE_GROUP_ID, linking claim history to task workflows.
- AMS_CUSTOM_SETUPS_B — custom setup context via CUSTOM_SETUP_ID.
- SO_ORDER_TYPES_115_ALL — order type reference via ORDER_TYPE_ID, relevant for deduction and order-related claims.
These relationships make OZF_CLAIMS_HISTORY_ALL a central satellite in the Trade Management claims model, integrating customer, collections, document sequencing, and order context around each captured claim event.
-
Table: OZF_CLAIMS_HISTORY_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_HISTORY_ALL, object_name:OZF_CLAIMS_HISTORY_ALL, status:VALID, product: OZF - Trade Management , description: This table is to store claim header history , implementation_dba_data: OZF.OZF_CLAIMS_HISTORY_ALL ,
-
Table: OZF_CLAIMS_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_ALL, object_name:OZF_CLAIMS_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the Claim headers , implementation_dba_data: OZF.OZF_CLAIMS_ALL ,
-
Table: OZF_CLAIMS_INT_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_INT_ALL, object_name:OZF_CLAIMS_INT_ALL, status:VALID, product: OZF - Trade Management , description: This table is to store Claim Inteface headers , implementation_dba_data: OZF.OZF_CLAIMS_INT_ALL ,
-
Table: OZF_CLAIMS_INT_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_INT_ALL, object_name:OZF_CLAIMS_INT_ALL, status:VALID, product: OZF - Trade Management , description: This table is to store Claim Inteface headers , implementation_dba_data: OZF.OZF_CLAIMS_INT_ALL ,
-
Table: OZF_CLAIMS_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_ALL, object_name:OZF_CLAIMS_ALL, status:VALID, product: OZF - Trade Management , description: This table stores the Claim headers , implementation_dba_data: OZF.OZF_CLAIMS_ALL ,
-
Table: OZF_CLAIMS_HISTORY_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_HISTORY_ALL, object_name:OZF_CLAIMS_HISTORY_ALL, status:VALID, product: OZF - Trade Management , description: This table is to store claim header history , implementation_dba_data: OZF.OZF_CLAIMS_HISTORY_ALL ,
-
VIEW: OZF.OZF_CLAIMS_HISTORY_ALL#
12.2.2
-
VIEW: OZF.OZF_CLAIMS_INT_ALL#
12.2.2
-
VIEW: OZF.OZF_CLAIMS_ALL#
12.2.2
-
VIEW: APPS.OZF_CLAIMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIMS_V, object_name:OZF_CLAIMS_V, status:VALID,
-
VIEW: APPS.OZF_CLAIMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIMS_V, object_name:OZF_CLAIMS_V, status:VALID,
-
VIEW: APPS.OZF_CLAIMS_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIMS_HISTORY_V, object_name:OZF_CLAIMS_HISTORY_V, status:VALID,
-
VIEW: OZF.OZF_CLAIMS_HISTORY_ALL#
12.2.2
owner:OZF, object_type:VIEW, object_name:OZF_CLAIMS_HISTORY_ALL#, status:VALID,
-
VIEW: OZF.OZF_CLAIMS_ALL#
12.2.2
owner:OZF, object_type:VIEW, object_name:OZF_CLAIMS_ALL#, status:VALID,
-
VIEW: OZF.OZF_CLAIMS_INT_ALL#
12.2.2
owner:OZF, object_type:VIEW, object_name:OZF_CLAIMS_INT_ALL#, status:VALID,
-
VIEW: APPS.OZF_CLAIMS_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIMS_HISTORY_V, object_name:OZF_CLAIMS_HISTORY_V, status:VALID,
-
View: OZF_CLAIMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIMS_V, object_name:OZF_CLAIMS_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIMS_V ,
-
View: OZF_CLAIMS_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIMS_HISTORY_V, object_name:OZF_CLAIMS_HISTORY_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIMS_HISTORY_V ,
-
View: OZF_CLAIMS_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIMS_HISTORY_V, object_name:OZF_CLAIMS_HISTORY_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIMS_HISTORY_V ,
-
View: OZF_CLAIMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIMS_V, object_name:OZF_CLAIMS_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIMS_V ,
-
VIEW: APPS.OZF_CLAIMS_WEBADI_DOWNLOAD_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OZF_CLAIMS_WEBADI_DOWNLOAD_V, status:VALID,
-
TABLE: OZF.OZF_CLAIMS_INT_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_INT_ALL, object_name:OZF_CLAIMS_INT_ALL, status:VALID,
-
VIEW: APPS.OZF_CLAIMS_WEBADI_DOWNLOAD_V
12.2.2
owner:APPS, object_type:VIEW, object_name:OZF_CLAIMS_WEBADI_DOWNLOAD_V, status:VALID,
-
APPS.OZF_OM_PAYMENT_PVT SQL Statements
12.2.2
-
APPS.OZF_OM_PAYMENT_PVT SQL Statements
12.1.1
-
TABLE: OZF.OZF_CLAIMS_INT_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_INT_ALL, object_name:OZF_CLAIMS_INT_ALL, status:VALID,
-
TABLE: OZF.OZF_CLAIMS_HISTORY_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_HISTORY_ALL, object_name:OZF_CLAIMS_HISTORY_ALL, status:VALID,
-
TABLE: OZF.OZF_CLAIMS_HISTORY_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_HISTORY_ALL, object_name:OZF_CLAIMS_HISTORY_ALL, status:VALID,
-
PACKAGE: APPS.OZF_CLAIMS_INT_PUB
12.1.1
-
TABLE: OZF.OZF_CLAIMS_ALL
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_ALL, object_name:OZF_CLAIMS_ALL, status:VALID,
-
TABLE: OZF.OZF_CLAIMS_ALL
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_CLAIMS_ALL, object_name:OZF_CLAIMS_ALL, status:VALID,
-
PACKAGE: APPS.OZF_CLAIMS_INT_PVT
12.1.1
-
PACKAGE: APPS.OZF_CLAIMS_INT_PVT
12.2.2
-
PACKAGE: APPS.OZF_CLAIMS_INT_PUB
12.2.2
-
PACKAGE: APPS.OZF_CLAIMS_HISTORY_PVT
12.2.2
-
PACKAGE: APPS.OZF_CLAIMS_HISTORY_PVT
12.1.1
-
PACKAGE: APPS.OZF_CLAIM_PVT
12.1.1
-
APPS.OZF_CLAIMS_HISTORY_PVT SQL Statements
12.1.1
-
APPS.OZF_CLAIMS_HISTORY_PVT SQL Statements
12.2.2
-
APPS.OZF_CLAIMS_INT_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.OZF_CLAIM_PVT
12.2.2
-
APPS.OZF_CLAIMS_INT_PKG SQL Statements
12.2.2
-
APPS.OZF_AR_INTERFACE_PVT SQL Statements
12.1.1
-
APPS.OZF_CLAIMS_HISTORY_PKG SQL Statements
12.1.1
-
APPS.OZF_AR_INTERFACE_PVT SQL Statements
12.2.2
-
APPS.OZF_CLAIMS_PKG SQL Statements
12.2.2
-
APPS.OZF_CLAIMS_PKG SQL Statements
12.1.1
-
APPS.OZF_CLAIMS_HISTORY_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.OZF_CLAIMS_INT_PKG
12.1.1
-
PACKAGE: APPS.OZF_AR_INTERFACE_PVT
12.2.2