Search Results ozf_funds_utilized_vl
Overview
OZF_FUNDS_UTILIZED_VL is a bilingual (language) view in the Oracle E-Business Suite Trade Management (OZF) module, owned by the APPS schema. It presents accrued and consumed fund utilization records — the transactional detail that links trade promotion funds, budgets, and plans to the objects that consume them, such as orders, invoices, and activities. The "_VL" suffix denotes a view that joins a base (non-translated) table with its translation table while applying Multi-Org and language security predicates. In 12.1.1 and 12.2.2 the view is reported as VALID, meaning the underlying synonyms and tables resolve correctly in a standard ETRM installation. The view is the primary reporting and integration surface for fund consumption data: it exposes the raw utilization rows together with the translated adjustment description, making it suitable for concurrent programs, OBIEE/BIP extracts, and custom code that must respect operating unit and language context.
Underlying Base Objects
The documented base objects are OZF_FUNDS_UTILIZED (synonym, resolving to OZF_FUNDS_UTILIZED_ALL_B) and OZF_FUNDS_UTILIZED_ALL_TL (synonym). The view text confirms the join: OZF_FUNDS_UTILIZED_ALL_B B is joined to OZF_FUNDS_UTILIZED_ALL_TL T on UTILIZATION_ID, with an additional ORG_ID match using NVL(T.ORG_ID,-99)=NVL(B.ORG_ID,-99). Two WHERE predicates enforce security: the ORG_ID filter derived from USERENV('CLIENT_INFO') scopes rows to the current operating unit (or all orgs when CLIENT_INFO is blank), and T.LANGUAGE = USERENV('LANG') restricts translation rows to the session language. The "_B" table holds the base transactional columns and the standard EBS WHO/audit and descriptive flexfield columns; the "_TL" table supplies ADJUSTMENT_DESC and language metadata. All columns from B are projected, and only ADJUSTMENT_DESC, LANGUAGE, and SOURCE_LANG are taken from T.
Key Columns
- UTILIZATION_ID — Primary key identifying each fund utilization record; the join key between base and translation tables.
- FUND_ID, PLAN_TYPE, PLAN_ID — The trade fund and the plan (budget or forecast) against which the utilization is recorded.
- UTILIZATION_TYPE, COMPONENT_TYPE, COMPONENT_ID — Classify the consumption (for example accrual versus actual) and the consuming component.
- OBJECT_TYPE, OBJECT_ID, ORDER_ID, INVOICE_ID — Identify the source document (order, invoice, or activity) driving the utilization.
- AMOUNT, AMOUNT_REMAINING, ACCTD_AMOUNT, ACCTD_AMOUNT_REMAINING — Entered and accounted amounts consumed and still available on the fund.
- CURRENCY_CODE, EXCHANGE_RATE_TYPE, EXCHANGE_RATE_DATE, EXCHANGE_RATE — Currency and conversion attributes used for accounting.
- ADJUSTMENT_TYPE, ADJUSTMENT_TYPE_ID, ADJUSTMENT_DATE, ADJUSTMENT_DESC — Adjustment classification and the translated description from the _TL table.
- ORG_ID, GL_DATE, CAMP_SCHEDULE_ID, PRODUCT_ID, CUST_ACCOUNT_ID, AMS_ACTIVITY_BUDGET_ID — Operating unit, accounting date, and optional promotion, product, customer, and marketing activity references.
- ROW_ID, OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — Standard WHO audit and optimistic locking columns.
- ATTRIBUTE1–ATTRIBUTE15, ATTRIBUTE_CATEGORY — Descriptive flexfield segments for customer extensions.
Common Use Cases and Queries
Typical usage includes reconciling fund balances, auditing accrual versus actual consumption, and feeding downstream analytics. Because the view enforces operating unit and language context, queries should be run from a session whose CLIENT_INFO and LANG are set appropriately (as EBS concurrent managers and forms do automatically).
List utilization by fund within the current operating unit:
SELECT utilization_id, fund_id, plan_type, plan_id,
utilization_type, amount, amount_remaining,
currency_code, gl_date
FROM apps.ozf_funds_utilized_vl
WHERE fund_id = :p_fund_id
ORDER BY gl_date, utilization_id;
Summarize consumption against order and invoice documents:
SELECT object_type, order_id, invoice_id,
SUM(amount) AS consumed_amount,
SUM(amount_remaining) AS remaining_amount
FROM apps.ozf_funds_utilized_vl
WHERE fund_id = :p_fund_id
AND adjustment_type IS NULL
GROUP BY object_type, order_id, invoice_id;
Retrieve adjusted lines with the translated description:
SELECT utilization_id, adjustment_type_id,
adjustment_date, adjustment_desc,
amount, acctd_amount
FROM apps.ozf_funds_utilized_vl
WHERE fund_id = :p_fund_id
AND adjustment_type_id IS NOT NULL;
-
View: OZF_FUNDS_UTILIZED_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUNDS_UTILIZED_VL, object_name:OZF_FUNDS_UTILIZED_VL, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_FUNDS_UTILIZED_VL ,
-
View: OZF_FUNDS_UTILIZED_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUNDS_UTILIZED_VL, object_name:OZF_FUNDS_UTILIZED_VL, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_FUNDS_UTILIZED_VL ,
-
SYNONYM: APPS.OZF_FUNDS_UTILIZED
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_FUNDS_UTILIZED, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.OZF_FUNDS_UTILIZED_ALL_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_FUNDS_UTILIZED_ALL_TL, status:VALID,
-
SYNONYM: APPS.OZF_FUNDS_UTILIZED_ALL_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_FUNDS_UTILIZED_ALL_TL, status:VALID,
-
SYNONYM: APPS.OZF_FUNDS_UTILIZED
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_FUNDS_UTILIZED, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.OZF_CLAIM_TYPE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_TYPE_PVT, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.OZF_CLAIM_TYPE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_CLAIM_TYPE_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
APPS.OZF_CLAIM_TYPE_PVT SQL Statements
12.2.2
-
APPS.OZF_CLAIM_TYPE_PVT SQL Statements
12.1.1
-
VIEW: APPS.OZF_FUNDS_UTILIZED_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUNDS_UTILIZED_VL, object_name:OZF_FUNDS_UTILIZED_VL, status:VALID,
-
VIEW: APPS.OZF_FUNDS_UTILIZED_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUNDS_UTILIZED_VL, object_name:OZF_FUNDS_UTILIZED_VL, status:VALID,
-
APPS.OZF_CLAIM_TYPE_PVT dependencies on OZF_FUNDS_UTILIZED_VL
12.1.1
-
APPS.OZF_CLAIM_TYPE_PVT dependencies on OZF_FUNDS_UTILIZED_VL
12.2.2
-
PACKAGE BODY: APPS.OZF_CLAIM_TYPE_PVT
12.2.2
-
PACKAGE BODY: APPS.OZF_CLAIM_TYPE_PVT
12.1.1
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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 ,