Search Results pp_cost_update




Overview

APPS.DPP_XLA_INV_HEADERS_V is an Oracle E-Business Suite view that exposes invoice-related transaction header data required for Subledger Accounting (SLA/XLA) event processing in the Procurement and Payables cost adjustment flow. It is defined with a fixed DISTRIBUTION_TYPE literal of 'PP_COST_UPDATE', indicating that the view is purpose-built to surface headers eligible for the PP_COST_UPDATE subledger event and its associated accounting distributions. The view joins the SLA events interface table to the DPP transaction headers and XLA headers, enriching the result with supplier and supplier site information plus the accrual, cost adjustment, and contra liability account combinations resolved through the DPP_XLA_EVENT_PUB package.

The view is typically consumed by the Create Accounting process, custom SLA mapping routines, reconciliation reports, and diagnostic queries that verify which PP_COST_UPDATE events have been staged and priced prior to accounting generation. It plays a supporting role in the Procure-to-Pay accounting lifecycle, particularly for cost updates on invoices that have already been processed.

Underlying Base Objects

The view is defined over the following documented objects:

Key Columns

Common Use Cases and Queries

The view is commonly used to reconcile PP_COST_UPDATE events, verify the account combinations the SLA engine will use, and troubleshoot events that failed to create accounting. A representative query:

  • SELECT event_id, transaction_number, vendor_name, pp_accrual_ccid, pp_cost_adj_ccid, pp_contra_liab_ccid FROM apps.dpp_xla_inv_headers_v WHERE transaction_number = :trx_num;
  • SELECT event_id, distribution_type, transaction_header_id FROM apps.dpp_xla_inv_headers_v WHERE event_id = :event_id;
  • SELECT vendor_name, vendor_site_code, COUNT(*) FROM apps.dpp_xla_inv_headers_v GROUP BY vendor_name, vendor_site_code;

These patterns support SLA diagnostics, cost adjustment reconciliation, and reporting on cost update events across the Payables subledger.