Search Results dpp_currency_conversion_type




Overview

APPS.DPP_TXN_DASHBOARD_V is a reporting view in Oracle E-Business Suite that consolidates transaction-level information from the Oracle ETRM (Enterprise Trade and Transportation Management) / DPP (Duty, Preference, and Product compliance) module. It presents a denormalized, user-friendly projection of supplier claim transactions, combining transaction header data with supplier identities, operating unit names, lookup-code translations, and aggregated monetary amounts. The view is intended primarily to drive dashboard-style reporting — hence its name — where users require a single row per transaction header without needing to join the DPP transactional schema manually.

The view is owned by APPS and is queryable by any user or concurrent program with the appropriate APPS schema grants. Because it joins lookups and organizational units, it is well suited for OBIEE, Discoverer, or BI Publisher reports that need human-readable status and operating unit descriptions rather than raw lookup codes and IDs.

Underlying Base Objects

The documented base objects referenced by this view are:

Key Columns

Common Use Cases and Queries

The view is typically used to list open or completed claim transactions by operating unit, supplier, or status. A sample query filtering for a specific status meaning might read:

SELECT operating_unit, transaction_number, supplier_name,
       meaning, claimed_amount, cust_claim_amount
  FROM apps.dpp_txn_dashboard_v
 WHERE meaning = 'Approved'
   AND operating_unit = :p_operating_unit
 ORDER BY creation_date DESC;

Because the view includes the outstanding claim totals and the converted customer claim totals, it also supports reconciliation reporting — for example, comparing CLAIMED_AMOUNT against CUST_CLAIM_AMOUNT per transaction. Reporting teams commonly join it back to DPP_TRANSACTION_HEADERS or AP_SUPPLIERS for drill-down, though the view already exposes most of the attributes required for a dashboard. Filtering by EFFECTIVE_START_DATE enables period-based trend reporting, and grouping by MEANING yields status distribution summaries useful for workflow monitoring.