Search Results lk_cc




Overview

APPS.OZF_CLAIMS_V is a reporting and integration view within the Oracle E-Business Suite Trade Management (formerly Oracle Claims and Deductions) module. It presents a denormalized, query-friendly projection of the OZF_CLAIMS transactional table, enriched with decoded reference data from lookup, customer, and status objects. In EBS 12.1.1 and 12.2.2, the view serves as the primary read interface for claims, deductions, and chargebacks processed through the Channel Revenue Management / Trade Management settlement engine.

The view is owned by the APPS schema and is defined as a join between the claims base entity and several supporting views and synonyms. Its purpose is to expose claim attributes in a form ready for concurrent program output, OBIEE/XML Publisher reporting, and inbound/outbound interface processing, avoiding the need for consumers to reconstruct decoded meanings or resolve foreign keys manually.

Underlying Base Objects

The documented base objects referenced by OZF_CLAIMS_V are:

The relationship is a standard master/detail lookup pattern: OZF_CLAIMS is the anchor, and each supporting object is outer-joined on its respective foreign key (CLAIM_CLASS, CLAIM_TYPE_ID, USER_STATUS_ID, CUST_ACCOUNT_ID, and set of books).

Key Columns

Common Use Cases and Queries

The view is typically queried to list open deductions by customer, to reconcile settled versus remaining balances, or to extract claim data for downstream reporting. A representative query filtering on claim class meaning ("lk_cc") is:

  • SELECT c.claim_number, c.meaning, c.party_name, c.amount, c.amount_remaining, c.currency_code
  • FROM apps.ozf_claims_v c
  • WHERE c.meaning = :p_class AND c.amount_remaining > 0
  • ORDER BY c.claim_date;

Because the view already decodes CLAIM_CLASS, STATUS, and CLAIM_TYPE, it eliminates redundant joins in report SQL and is safe for read-only access by custom concurrent programs and integration extracts.