Search Results dpp_transaction_claims_all
Overview
DPP_TRANSACTION_CLAIMS_ALL is a transactional table in the Oracle Price Protection (DPP) module of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. It serves as the association table that links Trade Management claims to Price Protection transactions, enabling the Price Protection process to reconcile supplier claim activity against the underlying transaction recorded by the pricing engine. The documentation states plainly: "This table will link the Trade Management claims to Price Protection Transaction." The table is owned by the DPP schema and resides in the Oracle Price Protection product family.
From a data-modeling perspective, the heuristic Data Vault classification mined from the foreign-key structure is standalone, meaning the table has no outbound foreign keys to other DPP entities. In practice, the composite primary key (TRANSACTION_HEADER_ID, CLAIM_ID) is characteristic of a link (association) table, joining two business entities: a Price Protection transaction header and a Trade Management claim. Project teams should therefore treat it as a link candidate, even though the FK metadata classifies it as standalone.
Key Information Stored
The documented physical schema in ETRM 12.2.2 contains 11 columns. The two most important columns are the composite primary key members:
- TRANSACTION_HEADER_ID — Identifies the Price Protection transaction header to which the claim is attached. This is the principal link to the DPP transaction hierarchy.
- CLAIM_ID — Identifies the Trade Management claim. Together with TRANSACTION_HEADER_ID, it forms the primary key DPP_TRANSACTION_CLAIMS_ALL_PK and the unique index DPP_TRANSACTION_CLAIMS_ALL_U1 (TRANSACTION_HEADER_ID, CLAIM_ID), which is the business-key candidate for this table.
- CLAIM_TYPE — Classifies the nature of the linked claim, allowing queries to distinguish claim variants associated with a transaction.
- APPROVED_BY_SUPPLIER — A status flag indicating whether the supplier has approved the claim; essential for approval-driven reporting and reconciliation.
- ORG_ID — The operating unit that owns the record, providing multi-org (MOAC) partitioning for secure reporting.
- OBJECT_VERSION_NUMBER — The optimistic-locking column used by the Oracle Application Object Library for concurrent updates.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard WHO (audit) columns capturing who created and last modified each row and when.
Note there is no separate surrogate sequence key; the business key itself is the primary key, which simplifies joins to both parent entities.
Common Use Cases and Queries
Typical use cases include reconciliation of price protection claims against transactions, supplier-approval status tracking, and multi-org claim reporting. A basic query to retrieve claims for a transaction might be:
- Claim lookup by transaction —
SELECT claim_id, claim_type, approved_by_supplier FROM dpp_transaction_claims_all WHERE transaction_header_id = :p_header_id; - Approval status reporting — Filter
approved_by_supplierto list claims pending or completed supplier approval, grouped byorg_idfor MOAC-safe reporting. - Concurrent-safe updates — Any DML should include
WHERE object_version_number = :p_ovnto honor optimistic locking. - Audit trail analysis — Use the WHO columns to identify records created or modified by specific users during a period.
Because both key columns are indexed via the unique index, lookups by transaction or by claim are efficient; queries driven solely by CLAIM_ID may benefit from an additional index depending on volume.
Related Objects
Although the mined relationship data classifies this table as standalone, the composite key columns imply logical relationships to the following objects:
- DPP_TRANSACTION_HEADERS_ALL — Parent of the Price Protection transaction, joined on TRANSACTION_HEADER_ID.
- DPP_TRANSACTION_LINES_ALL — Transaction line detail for the referenced header.
- OZF_CLAIMS_ALL / Trade Management claim tables — Source of CLAIM_ID for the linked trade claim.
- DPP_PROCESS_RESULTS / DPP calculation tables — Downstream processing that consumes claim linkage results.
- OE_ORDER_HEADERS_ALL — Order reference where Price Protection transactions originate.
Applications should join through TRANSACTION_HEADER_ID and CLAIM_ID rather than relying on enforced foreign keys, since the documented schema does not list them.
-
Table: DPP_TRANSACTION_CLAIMS_ALL
12.2.2
owner:DPP, object_type:TABLE, fnd_design_data:DPP.DPP_TRANSACTION_CLAIMS_ALL, object_name:DPP_TRANSACTION_CLAIMS_ALL, status:VALID, product: DPP - Oracle Price Protection , description: This table will link the Trade Management claims to Price Protection Transaction. , implementation_dba_data: DPP.DPP_TRANSACTION_CLAIMS_ALL ,
-
Table: DPP_TRANSACTION_CLAIMS_ALL
12.1.1
owner:DPP, object_type:TABLE, fnd_design_data:DPP.DPP_TRANSACTION_CLAIMS_ALL, object_name:DPP_TRANSACTION_CLAIMS_ALL, status:VALID, product: DPP - Oracle Price Protection , description: This table will link the Trade Management claims to Price Protection Transaction. , implementation_dba_data: DPP.DPP_TRANSACTION_CLAIMS_ALL ,
-
VIEW: DPP.DPP_TRANSACTION_CLAIMS_ALL#
12.2.2
-
VIEW: DPP.DPP_TRANSACTION_CLAIMS_ALL#
12.2.2
owner:DPP, object_type:VIEW, object_name:DPP_TRANSACTION_CLAIMS_ALL#, status:VALID,
-
SYNONYM: APPS.DPP_TRANSACTION_CLAIMS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:DPP_TRANSACTION_CLAIMS_ALL, status:VALID,
-
SYNONYM: APPS.DPP_TRANSACTION_CLAIMS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:DPP_TRANSACTION_CLAIMS_ALL, status:VALID,
-
VIEW: APPS.DPP_XLA_CP_V
12.2.2
-
VIEW: APPS.DPP_XLA_CP_V
12.1.1
-
TABLE: DPP.DPP_TRANSACTION_CLAIMS_ALL
12.2.2
owner:DPP, object_type:TABLE, fnd_design_data:DPP.DPP_TRANSACTION_CLAIMS_ALL, object_name:DPP_TRANSACTION_CLAIMS_ALL, status:VALID,
-
TABLE: DPP.DPP_TRANSACTION_CLAIMS_ALL
12.1.1
owner:DPP, object_type:TABLE, fnd_design_data:DPP.DPP_TRANSACTION_CLAIMS_ALL, object_name:DPP_TRANSACTION_CLAIMS_ALL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
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
-
VIEW: APPS.DPP_XLA_CLAIM_HEADERS_V
12.2.2
-
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.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.DPP_CLAIMS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_CLAIMS_PVT, status:VALID,
-
VIEW: APPS.DPP_XLA_CLAIM_HEADERS_V
12.1.1
-
PACKAGE BODY: APPS.DPP_CLAIMS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_CLAIMS_PVT, status:VALID,
-
View: DPP_XLA_CP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:DPP.DPP_XLA_CP_V, object_name:DPP_XLA_CP_V, status:VALID, product: DPP - Oracle Price Protection , description: Dpp SLA Claim Summary View , implementation_dba_data: APPS.DPP_XLA_CP_V ,
-
eTRM - DPP Tables and Views
12.2.2
description: This table will be used to store transaction extract lines information ,
-
PACKAGE BODY: APPS.DPP_UTILITY_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_UTILITY_PVT, status:VALID,
-
PACKAGE BODY: APPS.DPP_TRANSACTION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_TRANSACTION_PVT, status:VALID,
-
PACKAGE BODY: APPS.DPP_UTILITY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_UTILITY_PVT, status:VALID,
-
VIEW: APPS.DPP_WEBADI_V
12.1.1
-
PACKAGE BODY: APPS.DPP_TRANSACTION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:DPP_TRANSACTION_PVT, status:VALID,
-
VIEW: APPS.DPP_XLA_CP_V
12.1.1
owner:APPS, object_type:VIEW, object_name:DPP_XLA_CP_V, status:VALID,
-
APPS.DPP_SLA_CLAIM_EXTRACT_PUB SQL Statements
12.2.2
-
VIEW: APPS.DPP_XLA_CP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:DPP.DPP_XLA_CP_V, object_name:DPP_XLA_CP_V, status:VALID,
-
VIEW: APPS.DPP_WEBADI_V
12.2.2
-
APPS.DPP_SLA_CLAIM_EXTRACT_PUB SQL Statements
12.1.1
-
APPS.DPP_CLAIMS_PVT SQL Statements
12.1.1
-
View: DPP_XLA_CLAIM_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:DPP.DPP_XLA_CLAIM_HEADERS_V, object_name:DPP_XLA_CLAIM_HEADERS_V, status:VALID, product: DPP - Oracle Price Protection , description: Dpp SLA Claim Headers View , implementation_dba_data: APPS.DPP_XLA_CLAIM_HEADERS_V ,
-
APPS.DPP_CLAIMS_PVT SQL Statements
12.2.2
-
View: DPP_WEBADI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:DPP.DPP_WEBADI_V, object_name:DPP_WEBADI_V, status:VALID, product: DPP - Oracle Price Protection , description: Dpp WEBADI View , implementation_dba_data: APPS.DPP_WEBADI_V ,
-
eTRM - DPP Tables and Views
12.1.1
description: This table will be used to store transaction extract lines information ,
-
VIEW: APPS.DPP_XLA_CLAIM_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:DPP.DPP_XLA_CLAIM_HEADERS_V, object_name:DPP_XLA_CLAIM_HEADERS_V, status:VALID,
-
VIEW: APPS.DPP_XLA_CLAIM_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:DPP_XLA_CLAIM_HEADERS_V, status:VALID,
-
VIEW: APPS.DPP_WEBADI_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:DPP.DPP_WEBADI_V, object_name:DPP_WEBADI_V, status:VALID,
-
VIEW: APPS.DPP_WEBADI_V
12.1.1
owner:APPS, object_type:VIEW, object_name:DPP_WEBADI_V, status:VALID,
-
PACKAGE BODY: APPS.DPP_CLAIMS_PVT
12.1.1
-
PACKAGE BODY: APPS.DPP_CLAIMS_PVT
12.2.2
-
PACKAGE BODY: APPS.DPP_SLA_CLAIM_EXTRACT_PUB
12.2.2