Search Results pa_deductions_all




Overview

PA_DEDUCTIONS_ALL is a Projects (PA) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores summary information about deduction requests raised against suppliers. In project procurement and supplier management flows, this table captures the amounts an organization intends to withhold, recover, or offset from supplier payments — for example, penalties, back-charges, retainage recovery, or quality-related deductions. Each row represents a single deduction request and ties together the project, the supplier, the related purchasing document, and the related control item. The table is owned by the PA schema and is documented as VALID with 27 columns in the 12.2.2 physical schema.

From a heuristic Data Vault modeling perspective, the relationship metadata classifies PA_DEDUCTIONS_ALL as standalone. This suggests treating it as a candidate satellite or hub-like entity that does not participate in an extensive foreign-key network — it is not a pure transactional link table and is best modeled as a descriptive/aggregate record keyed on its own business identifiers.

Key Information Stored

The primary surrogate key is DEDUCTION_REQ_ID, uniquely enforced by index PA_DEDUCTIONS_ALL_U1. Two documented unique indexes act as business-key candidates: PA_DEDUCTIONS_ALL_U1 on DEDUCTION_REQ_ID and PA_DEDUCTIONS_ALL_U2 on DEDUCTION_REQ_NUM. The most operationally significant columns include:

Common Use Cases and Queries

Typical reporting includes deduction aging, deduction totals by supplier, and reconciliation of debit memos against purchasing documents. A supplier-level aggregation illustrates standard usage:

SELECT VENDOR_ID, CURRENCY_CODE, SUM(TOTAL_AMOUNT) TOTAL_DEDUCTED
FROM PA_DEDUCTIONS_ALL
WHERE ORG_ID = :p_org_id
AND STATUS = :p_status
GROUP BY VENDOR_ID, CURRENCY_CODE;

Analysts frequently join PA_CONTROL_ITEMS via CI_ID to trace the originating control item, and filter by DEDUCTION_REQ_DATE or DEBIT_MEMO_DATE for period-based reporting. Project managers query by PROJECT_ID, while AP and procurement teams reconcile by PO_NUMBER or DEBIT_MEMO_NUM.

Related Objects

The documented foreign key links PA_DEDUCTIONS_ALL.CI_ID to PA_CONTROL_ITEMS. Beyond that documented relationship, integration assumptions include PA_PURCHASE_ORDERS and PO_HEADERS_ALL via PO_HEADER_ID/PO_NUMBER, PO_VENDORS and PO_VENDOR_SITES_ALL via VENDOR_ID and VENDOR_SITE_ID, PA_PROJECTS_ALL via PROJECT_ID, and GL currency conversion views through CURRENCY_CODE and CONVERSION_RATE. Applications typically surface this data through Projects supplier management and AP debit memo flows rather than a dedicated public API.