Search Results ozf_sd_batch_line_disputes
Overview
The OZF.OZF_SD_BATCH_LINE_DISPUTES table is a Trade Management (OZF) module object within Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. It stores line-level dispute information for Supplier Ship and Debit (SD) batches processed in Oracle Trade Management. Supplier Ship and Debit is the mechanism by which a supplier reimburses a distributor or reseller for promotional allowances, rebates, or price protections tied to specific shipment and debit transactions. When a discrepancy arises between what a supplier acknowledges and what the distributor claims — for example, an insufficient credit, a rejected line, or a disputed rebate amount — the dispute is captured at the batch line level in this table.
The object is documented in ETRM as a standalone table with 17 columns, primary key OZF_SD_BATCH_LINE_DISPUTES_PK on BATCH_LINE_DISPUTE_ID, and a unique index OZF_SD_BATCH_LINE_DISPUTES_U1 on the same column. Under a heuristic Data Vault classification mined from the foreign key structure, this table is modeled as standalone — it does not function as a classic hub, link, or satellite, since its only documented foreign key points to a security construct rather than a business entity. In practice it behaves as a line-level satellite or detail table attached to a ship-and-debit batch hierarchy, carrying descriptive dispute attributes plus standard WHO/audit columns.
Key Information Stored
The most significant columns in this table are:
BATCH_LINE_DISPUTE_ID— the surrogate primary key and business-key candidate (unique index U1), uniquely identifying each dispute record.BATCH_ID— reference to the parent Supplier Ship and Debit batch header.BATCH_LINE_ID— reference to the specific batch line on which the dispute is raised.DISPUTE_CODE— the categorization of the dispute (reason or type).REVIEW_FLAG— indicates whether the dispute is flagged for review.OBJECT_VERSION_NUMBER— optimistic locking column used by the Trade Management framework.SECURITY_GROUP_ID— foreign key toFND_SECURITY_GROUPS, enforcing multi-tenant/multi-org data security.- Standard audit columns:
CREATION_DATE,CREATED_BY,CREATED_FROM,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN. - Concurrent program columns:
REQUEST_ID,PROGRAM_ID,PROGRAM_APPLICATION_ID,PROGRAM_UPDATE_DATE— identifying the batch process that inserted or updated the record.
The surrogate key is BATCH_LINE_DISPUTE_ID; the unique index U1 is documented as the business-key candidate. The composite of BATCH_ID and BATCH_LINE_ID functions as a logical parent reference even though no FK constraint to the batch tables is documented in the metadata.
Common Use Cases and Queries
Typical reporting scenarios include identifying disputed lines within a batch, measuring dispute rates by reason code, and reviewing flagged disputes pending resolution.
SELECT d.BATCH_LINE_DISPUTE_ID, d.BATCH_ID, d.BATCH_LINE_ID,
d.DISPUTE_CODE, d.REVIEW_FLAG, d.CREATION_DATE
FROM OZF.OZF_SD_BATCH_LINE_DISPUTES d
WHERE d.BATCH_ID = :p_batch_id;
A dispute-reason analysis query groups by DISPUTE_CODE:
SELECT DISPUTE_CODE, COUNT(*) dispute_count FROM OZF.OZF_SD_BATCH_LINE_DISPUTES WHERE SECURITY_GROUP_ID = :p_security_group GROUP BY DISPUTE_CODE ORDER BY dispute_count DESC;
Users may also filter on REVIEW_FLAG to surface disputes requiring manual attention, and join to the concurrent request columns to trace which batch program created the dispute.
Related Objects
FND_SECURITY_GROUPS— joined viaSECURITY_GROUP_ID; the only documented foreign key relationship.- Supplier Ship and Debit batch header table (OZF SD batch) — referenced via
BATCH_ID. - Supplier Ship and Debit batch line table — referenced via
BATCH_LINE_ID. FND_CONCURRENT_REQUESTS— associated throughREQUEST_IDfor audit tracing.- Trade Management SD batch concurrent programs — populate the dispute rows during batch validation and reconciliation.
- OZF Trade Management reporting views and OBIEE/Discoverer extracts that consolidate dispute metrics.
The object is Oracle proprietary and confidential, distributed under legal notices as part of the ETRM documentation set.
-
Table: OZF_SD_BATCH_LINE_DISPUTES
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_SD_BATCH_LINE_DISPUTES, object_name:OZF_SD_BATCH_LINE_DISPUTES, status:VALID, product: OZF - Trade Management , description: store the line dispute information of Supplier Ship and Debit Batch in Oracle Trade Management , implementation_dba_data: OZF.OZF_SD_BATCH_LINE_DISPUTES ,
-
Table: OZF_SD_BATCH_LINE_DISPUTES
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_SD_BATCH_LINE_DISPUTES, object_name:OZF_SD_BATCH_LINE_DISPUTES, status:VALID, product: OZF - Trade Management , description: store the line dispute information of Supplier Ship and Debit Batch in Oracle Trade Management , implementation_dba_data: OZF.OZF_SD_BATCH_LINE_DISPUTES ,
-
SYNONYM: APPS.OZF_SD_BATCH_LINE_DISPUTES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OZF_SD_BATCH_LINE_DISPUTES, status:VALID,
-
VIEW: OZF.OZF_SD_BATCH_LINE_DISPUTES#
12.2.2
owner:OZF, object_type:VIEW, object_name:OZF_SD_BATCH_LINE_DISPUTES#, status:VALID,
-
SYNONYM: APPS.OZF_SD_BATCH_LINE_DISPUTES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OZF_SD_BATCH_LINE_DISPUTES, status:VALID,
-
VIEW: OZF.OZF_SD_BATCH_LINE_DISPUTES#
12.2.2
-
TABLE: OZF.OZF_SD_BATCH_LINE_DISPUTES
12.2.2
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_SD_BATCH_LINE_DISPUTES, object_name:OZF_SD_BATCH_LINE_DISPUTES, status:VALID,
-
TABLE: OZF.OZF_SD_BATCH_LINE_DISPUTES
12.1.1
owner:OZF, object_type:TABLE, fnd_design_data:OZF.OZF_SD_BATCH_LINE_DISPUTES, object_name:OZF_SD_BATCH_LINE_DISPUTES, status:VALID,
-
PACKAGE BODY: APPS.OZF_SD_BATCH_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_SD_BATCH_PUB, status:VALID,
-
PACKAGE BODY: APPS.OZF_SD_BATCH_FEED_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_SD_BATCH_FEED_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_SD_BATCH_FEED_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_SD_BATCH_FEED_PVT, status:VALID,
-
PACKAGE BODY: APPS.OZF_SD_UTIL_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OZF_SD_UTIL_PVT, status:VALID,
-
APPS.OZF_SD_BATCH_PUB SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.OZF_SD_BATCH_PUB
12.2.2
-
APPS.OZF_SD_UTIL_PVT dependencies on OZF_SD_BATCH_LINE_DISPUTES
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_SD_BATCH_LINE_DISPUTES
12.1.1
-
APPS.OZF_SD_BATCH_PUB dependencies on OZF_SD_BATCH_LINE_DISPUTES
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_SD_BATCH_LINE_DISPUTES
12.2.2
-
PACKAGE BODY: APPS.OZF_SD_BATCH_FEED_PVT
12.1.1
-
APPS.OZF_SD_UTIL_PVT SQL Statements
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT SQL Statements
12.2.2
-
APPS.OZF_SD_BATCH_PUB dependencies on FND_GLOBAL
12.2.2
-
PACKAGE BODY: APPS.OZF_SD_BATCH_FEED_PVT
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_SD_BATCH_LINES_INT_ALL
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 ,
-
PACKAGE BODY: APPS.OZF_SD_UTIL_PVT
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_SD_BATCH_LINES_ALL
12.1.1
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_SD_BATCH_LINES_INT_ALL
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_UTILITY_PVT
12.1.1
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on FND_MSG_PUB
12.1.1
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_SD_BATCH_FEED_PVT
12.1.1
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_SD_BATCH_FEED_PVT
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on FND_MSG_PUB
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_UTILITY_PVT
12.2.2
-
APPS.OZF_SD_BATCH_FEED_PVT dependencies on OZF_SD_BATCH_LINES_ALL
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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 ,