Search Results ozf_claim_lines_hist
Overview
The APPS.OZF_CLAIM_LINES_HIST_V view is a historical reporting construct within the Oracle E-Business Suite Trade Management (formerly Oracle Trade Management / ETRM) module. It exposes claim line history records — the denormalized, point-in-time snapshots of individual claim lines that are created whenever a claim is approved, updated, settled, or otherwise modified through the claim lifecycle. Unlike the transactional OZF_CLAIM_LINES table, which holds only the current state of a claim line, the history view preserves successive versions so that auditors, settlement analysts, and channel program administrators can reconstruct the financial and approval trail of a claim over time.
The view is defined in the APPS schema and, as documented in the ETRM 12.2.2 metadata, joins the claim line history base table to the system parameters table, the payment-method lookup view, and two instances of the resource extension table. This makes it a convenient single source for reporting that requires the claim line history plus the descriptive meaning of its payment method and the names of the resources who approved and settled the line. It is commonly consumed by concurrent programs, Oracle Discoverer/BIP reports, and custom integrations that reconcile trade claims against payables and receivables.
Underlying Base Objects
The documented referenced base objects are:
- OZF_CLAIM_LINES_HIST (synonym) — the primary table holding historical claim line rows; aliased as
OCLin the view text. - OZF_SYS_PARAMETERS (synonym) — system parameters, aliased
OSP; joined onOCL.SET_OF_BOOKS_ID = OSP.SET_OF_BOOKS_IDto constrain the view to the active set of books. - OZF_LOOKUPS (view) — the lookup view, aliased
LK_PM, outer-joined for lookup typeOZF_PAYMENT_METHODto resolveMEANING. - JTF_RS_RESOURCE_EXTNS (synonym) — the resource extension table, appearing twice as
JRE1andJRE2, supplyingSOURCE_NAMEfor the approver and settler respectively.
The joins are largely outer joins, ensuring history rows are returned even where the payment method lookup or a related resource name is unavailable. The dependency on OZF_SYS_PARAMETERS is significant: it ties every returned row to a configured set of books, which also explains why the user search term "ozf_sys_parameters" surfaces this object.
Key Columns
The view projects the full column list of OZF_CLAIM_LINES_HIST, including:
- Identifiers:
CLAIM_LINE_HISTORY_ID,CLAIM_HISTORY_ID,CLAIM_ID,CLAIM_LINE_ID,LINE_NUMBER,SPLIT_FROM_CLAIM_LINE_ID,OBJECT_VERSION_NUMBER. - Financials:
AMOUNT,CLAIM_CURRENCY_AMOUNT,ACCTD_AMOUNT,CURRENCY_CODE,EXCHANGE_RATE_TYPE,EXCHANGE_RATE_DATE,EXCHANGE_RATE,TAX_AMOUNT,SET_OF_BOOKS_ID. - Payment and settlement:
PAYMENT_METHOD,MEANING(resolved lookup),PAYMENT_REFERENCE_ID/NUMBER/DATE,VOUCHER_ID,VOUCHER_NUMBER,PAYMENT_STATUS,SETTLED_DATE,SETTLED_BY. - Approval:
APPROVED_FLAG,APPROVED_DATE,APPROVED_BY, withJRE1.SOURCE_NAMEexposing the approver's resource name. - Source references:
SOURCE_OBJECT_ID,SOURCE_OBJECT_CLASS,SOURCE_OBJECT_TYPE_ID,SOURCE_OBJECT_LINE_ID,PLAN_ID,OFFER_ID,UTILIZATION_ID,ACTIVITY_LINE_ID. - Customer and offer context:
BUY_GROUP_CUST_ACCOUNT_ID,BUY_GROUP_PARTY_ID,CREDIT_TO,ITEM_TYPE,OFFER_TYPE,SALE_DATE,EARNINGS_END_DATE,PRORATE_EARNINGS_FLAG. - Descriptive flexfields:
ATTRIBUTE_CATEGORYandATTRIBUTE1throughATTRIBUTE15. - Multi-org and audit:
ORG_ID, plus the standardWHOcolumns (CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE).
Common Use Cases and Queries
Typical scenarios include claim audit trails, settlement reconciliations, and analysis of approval turnaround. A representative query returning the latest history version per claim line follows:
SELECT claim_line_id, line_number, amount, acctd_amount, payment_status, meaning, approved_date, settled_date
FROM apps.ozf_claim_lines_hist_v
WHERE org_id = :p_org_id
AND approved_flag = 'Y'
AND settlement_date BETWEEN :p_from AND :p_to;
A second common pattern joins back to the current claim line to compare the historical snapshot against the live row, or groups by OFFER_TYPE and ITEM_TYPE to report accrual versus settlement by program. Because the view enforces the OZF_SYS_PARAMETERS set-of-books relationship, queries are implicitly scoped to configured accounting books, which simplifies multi-org reporting but requires that system parameters be correctly maintained for the operating unit being queried.
-
VIEW: APPS.OZF_CLAIM_LINES_HIST_V
12.2.2
-
VIEW: APPS.OZF_CLAIM_LINES_HIST_V
12.1.1
-
SYNONYM: APPS.OZF_CLAIM_LINES_HIST
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_CLAIM_LINES_HIST, status:VALID,
-
SYNONYM: APPS.OZF_CLAIM_LINES_HIST
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_CLAIM_LINES_HIST, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_LINE_HIST_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_LINE_HIST_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_ACCOUNT_MERGE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_ACCOUNT_MERGE_PKG, status:VALID,
-
PACKAGE BODY: APPS.OZF_ACCOUNT_MERGE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_ACCOUNT_MERGE_PKG, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_LINE_HIST_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_LINE_HIST_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_LINE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_LINE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_LINE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_LINE_PVT, status:VALID,
-
View: OZF_CLAIM_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_LINES_HIST_V, object_name:OZF_CLAIM_LINES_HIST_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIM_LINES_HIST_V ,
-
View: OZF_CLAIM_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_LINES_HIST_V, object_name:OZF_CLAIM_LINES_HIST_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_CLAIM_LINES_HIST_V ,
-
12.1.1 DBA Data
12.1.1
-
VIEW: OZF.OZF_CLAIM_LINES_HIST_ALL#
12.2.2
owner:OZF, object_type:VIEW, object_name:OZF_CLAIM_LINES_HIST_ALL#, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.OZF_ACCOUNT_MERGE_PKG SQL Statements
12.1.1
-
VIEW: APPS.OZF_CLAIM_LINES_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_LINES_HIST_V, object_name:OZF_CLAIM_LINES_HIST_V, status:VALID,
-
APPS.OZF_ACCOUNT_MERGE_PKG SQL Statements
12.2.2
-
VIEW: APPS.OZF_CLAIM_LINES_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_CLAIM_LINES_HIST_V, object_name:OZF_CLAIM_LINES_HIST_V, status:VALID,
-
APPS.OZF_CLAIM_LINE_HIST_PVT SQL Statements
12.1.1
-
APPS.OZF_CLAIM_LINE_HIST_PVT SQL Statements
12.2.2
-
TABLE: OZF.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,
-
PACKAGE BODY: APPS.OZF_ACCOUNT_MERGE_PKG
12.1.1
-
PACKAGE BODY: APPS.OZF_ACCOUNT_MERGE_PKG
12.2.2
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on OZF_CLAIM_LINES_HIST
12.2.2
-
APPS.OZF_CLAIM_LINE_PVT dependencies on OZF_CLAIM_LINES_HIST
12.2.2
-
APPS.OZF_CLAIM_LINE_HIST_PVT dependencies on OZF_CLAIM_LINES_HIST
12.1.1
-
APPS.OZF_CLAIM_LINE_PVT dependencies on OZF_CLAIM_LINES_HIST
12.1.1
-
APPS.OZF_CLAIM_LINE_HIST_PVT dependencies on OZF_CLAIM_LINES_HIST
12.2.2
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on OZF_CLAIM_LINES_HIST
12.1.1
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on OZF_CLAIM_LINES
12.1.1
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on OZF_CLAIM_LINES
12.2.2
-
APPS.OZF_CLAIM_LINE_PVT SQL Statements
12.1.1
-
APPS.OZF_CLAIM_LINE_PVT SQL Statements
12.2.2
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on RA_CUSTOMER_MERGES
12.1.1
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on RA_CUSTOMER_MERGES
12.2.2
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on HZ_CUSTOMER_MERGE_LOG_S
12.1.1
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on HZ_CUSTOMER_MERGE_LOG_S
12.2.2
-
eTRM - OZF Tables and Views
12.1.1
description: Table to store the Market eligibilty for a Offer Worksheet ,
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on FND_PROFILE
12.2.2
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on FND_PROFILE
12.1.1
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on ARP_MESSAGE
12.2.2
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on ARP_MESSAGE
12.1.1
-
APPS.OZF_CLAIM_LINE_PVT dependencies on OZF_CLAIM_LINES
12.1.1
-
PACKAGE BODY: APPS.OZF_CLAIM_LINE_HIST_PVT
12.1.1
-
APPS.OZF_CLAIM_LINE_PVT dependencies on OZF_CLAIM_LINES
12.2.2
-
PACKAGE BODY: APPS.OZF_CLAIM_LINE_HIST_PVT
12.2.2
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on HZ_CUSTOMER_MERGE_LOG
12.2.2
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on HZ_CUSTOMER_MERGE_LOG
12.1.1
-
APPS.OZF_ACCOUNT_MERGE_PKG dependencies on STANDARD
12.1.1