Search Results ozf_claims
Overview
The APPS.OZF_FUNDS_PAID view is a reporting and integration object within the Oracle E-Business Suite Trade Management (formerly Oracle Trade Management / ETRM) module. It consolidates fund utilization activity against customer claims, presenting a unified picture of funds that have been applied, accrued, or paid in relation to trade promotion and channel-funds claim processing. Unlike a base table, this view is a denormalized join designed for query convenience: it merges fund utilization records with their associated claim headers, claim lines, and customer account details, so that reporting tools and interface programs can retrieve payment-oriented fund data without manually joining four separate objects.
In EBS 12.1.1 and 12.2.2 the view is owned by the APPS schema and is built on public synonyms pointing to the underlying ETRM tables. Because it is a view rather than a stored table, it carries no independent data; all values are derived at query time from the referenced base objects. Its most common role is to support funds-paid analysis, claim reconciliation reporting, and custom extracts that need claim-to-fund linkage.
Underlying Base Objects
The documented referenced base objects are all synonyms resolved through APPS:
- OZF_FUNDS_UTILIZED_ALL_B — the primary driver, holding the fund utilization record (the umbrella record that ties a fund to its usage).
- OZF_CLAIM_LINES — the claim line detail, joined to the utilization via
utilization_idin an outer-join ((+)) direction, meaning utilizations can appear even where no claim line exists. - OZF_CLAIMS — the claim header, joined to claim lines by
claim_id. - HZ_CUST_ACCOUNTS — the Trading Community Architecture (TCA) customer account, joined by
cust_account_idto supply the account name.
Note that the outer-join is applied on the utilization-to-claim-line relationship, while the claim-line-to-claim and claim-to-account joins are inner joins. Only claim-linked utilizations therefore appear in a fully populated row.
Key Columns
- utilization_id, fund_id, plan_type, plan_id, component_type, component_id, object_type — the fund utilization context identifying which fund at which plan level was drawn against.
- claim_number, claim_date, claim_id, claim_line_id — the claim identification and its line detail.
- currency_code — from the claim line, indicating the currency of the amount.
- account_name — the customer account name from HZ_CUST_ACCOUNTS.
- payment_method — the settlement method recorded on the claim.
- amount — the claim line amount, representing the value of the funds involved.
Common Use Cases and Queries
Typical uses include reconciling accrued versus settled funds, reporting by customer account, and extracting fund-paid totals by currency or plan. Because the user search context is ozf_claims, this view is especially relevant when answering "how much has been paid to a customer against a claim?"
Sample query returning paid funds per claim:
SELECT claim_number,
account_name,
currency_code,
payment_method,
SUM(amount) AS total_amount
FROM apps.ozf_funds_paid
WHERE claim_date >= :p_from_date
GROUP BY claim_number, account_name, currency_code, payment_method;
A second scenario traces a specific utilization back to its claim:
SELECT utilization_id, fund_id, claim_number, claim_line_id, amount FROM apps.ozf_funds_paid WHERE utilization_id = :p_utilization_id;
Because the utilization-to-claim-line join is outer, administrators should be aware that orphan utilizations may surface with null claim columns when filtering solely on claim attributes, and standard ETRM security (operating unit / responsibility) is not enforced within the view itself.
-
APPS.OZF_CLAIM_GRP SQL Statements
12.1.1
-
APPS.OZF_CLAIM_SETTLEMENT_PVT SQL Statements
12.1.1
-
APPS.OZF_CLAIM_AGING_PVT SQL Statements
12.1.1
-
APPS.OZF_CLAIM_GRP SQL Statements
12.2.2
-
APPS.OZF_CLAIM_SETTLEMENT_VAL_PVT SQL Statements
12.2.2
-
APPS.OZF_CLAIM_AGING_PVT SQL Statements
12.2.2
-
APPS.OZF_CLAIM_SETTLEMENT_PVT SQL Statements
12.2.2
-
APPS.OZF_CLAIM_SETTLEMENT_VAL_PVT SQL Statements
12.1.1
-
VIEW: APPS.OZF_FUNDS_PAID
12.2.2
-
VIEW: APPS.OZF_AR_DEDUCTIONS_V
12.2.2
-
VIEW: APPS.OZF_FUNDS_PAID
12.1.1
-
VIEW: APPS.OZF_CLAIM_SUMMARY_V
12.1.1
-
VIEW: APPS.OZF_AR_DEDUCTIONS_V
12.1.1
-
VIEW: APPS.OZF_CLAIM_SUMMARY_V
12.2.2
-
APPS.OZF_AUTO_WRITEOFF_PVT SQL Statements
12.1.1
-
APPS.OZF_AUTO_WRITEOFF_PVT SQL Statements
12.2.2
-
APPS.OZF_OM_VALIDATION_PVT SQL Statements
12.1.1
-
APPS.OZF_OM_VALIDATION_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.DPP_SLA_CLAIM_EXTRACT_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:DPP_SLA_CLAIM_EXTRACT_PUB, status:VALID,
-
APPS.OZF_CLAIM_LINE_PVT SQL Statements
12.1.1
-
View: OZF_FUNDS_PAID
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUNDS_PAID, object_name:OZF_FUNDS_PAID, status:VALID, product: OZF - Trade Management , description: Funds paid details , implementation_dba_data: APPS.OZF_FUNDS_PAID ,
-
PACKAGE: APPS.DPP_SLA_CLAIM_EXTRACT_PUB
12.2.2
owner:APPS, object_type:PACKAGE, object_name:DPP_SLA_CLAIM_EXTRACT_PUB, status:VALID,
-
VIEW: APPS.OZF_CLAIMS_V
12.1.1
-
View: OZF_FUNDS_PAID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUNDS_PAID_V, object_name:OZF_FUNDS_PAID_V, status:VALID, product: OZF - Trade Management , description: View on Funds Paid and Claims to present Funds paid details , implementation_dba_data: APPS.OZF_FUNDS_PAID_V ,
-
APPS.OZF_CLAIM_LINE_PVT SQL Statements
12.2.2
-
View: OZF_FUNDS_PAID
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUNDS_PAID, object_name:OZF_FUNDS_PAID, status:VALID, product: OZF - Trade Management , description: Funds paid details , implementation_dba_data: APPS.OZF_FUNDS_PAID ,
-
PACKAGE BODY: APPS.OZF_AUTO_WRITEOFF_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_AUTO_WRITEOFF_PVT, status:VALID,
-
PACKAGE BODY: APPS.DPP_SLA_CLAIM_EXTRACT_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_SLA_CLAIM_EXTRACT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OZF_AUTO_WRITEOFF_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_AUTO_WRITEOFF_PVT, status:VALID,
-
VIEW: APPS.OZF_CLAIMS_V
12.2.2
-
PACKAGE BODY: APPS.DPP_CLAIMS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_CLAIMS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_AGING_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_AGING_PVT, 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_SETTLEMENT_VAL_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_SETTLEMENT_VAL_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_AP_INTERFACE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_AP_INTERFACE_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_CLAIM_TYPE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_TYPE_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_TYPE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_TYPE_PVT, status:VALID,
-
PACKAGE BODY: APPS.DPP_SLA_CLAIM_EXTRACT_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_SLA_CLAIM_EXTRACT_PUB, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_AGING_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_AGING_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_TAX_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_TAX_PVT, status:VALID,
-
PACKAGE BODY: APPS.DPP_CLAIMS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_CLAIMS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_SETTLEMENT_VAL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_SETTLEMENT_VAL_PVT, status:VALID,
-
View: OZF_FUNDS_PAID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUNDS_PAID_V, object_name:OZF_FUNDS_PAID_V, status:VALID, product: OZF - Trade Management , description: View on Funds Paid and Claims to present Funds paid details , implementation_dba_data: APPS.OZF_FUNDS_PAID_V ,
-
PACKAGE BODY: APPS.OZF_CLAIM_GRP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_GRP, status:VALID,
-
PACKAGE BODY: APPS.OZF_CLAIM_GRP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_GRP, status:VALID,
-
View: AMS_AR_DEDUCTIONS_V
12.1.1
product: AMS - Marketing , description: Deductions , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.OZF_CODE_CONVERSION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CODE_CONVERSION_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_SPECIAL_PRICING_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_SPECIAL_PRICING_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_CODE_CONVERSION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CODE_CONVERSION_PVT, status:VALID,