Search Results ap_awt_buckets_v
Overview
AP_AWT_BUCKETS_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, residing in the Payables (AP) product family. Its documented purpose is to expose withholding tax bucket balances accumulated against suppliers, presented with descriptive supplier attributes to facilitate reporting and reconciliation. The view joins the withholding tax bucket base table to the supplier master to resolve the vendor name and vendor number, allowing a report or concurrent program to display human-readable supplier information alongside tax withholding totals without requiring additional lookup logic in the calling code.
The ETRM metadata records this object as VALID in both Oracle EBS 12.1.1 and 12.2.2, although the original documentation excerpt carries the notation "Release 10SC only." That notation reflects the vintage of the source documentation rather than a restriction on the current release; the view remains present and valid in the APPS schema in the supported 12.x releases. Because withholding tax bucket data is maintained at the supplier and tax level, the view serves primarily as a denormalized read interface for withholding analysis, supplier tax reporting, and downstream extracts.
Underlying Base Objects
The view is defined over two documented base objects:
- AP_AWT_BUCKETS (SYNONYM) — The withholding tax bucket table, which stores accumulated gross and withheld amounts per supplier, period, and tax. This is the driving table and supplies the transactional and audit columns.
- PO_VENDORS (VIEW) — The supplier master, referenced to resolve VENDOR_NAME and SEGMENT1 (the supplier number) for each VENDOR_ID.
The join condition documented in the view text is V.VENDOR_ID = AB.VENDOR_ID, an inner join between PO_VENDORS and AP_AWT_BUCKETS. Because it is an inner equi-join on VENDOR_ID, records in AP_AWT_BUCKETS whose supplier does not resolve through PO_VENDORS are excluded from the result set. The view exposes the vendor identifier from the bucket table (AB.VENDOR_ID) rather than from the supplier master, which is functionally equivalent given the join predicate.
Key Columns
- VENDOR_NAME, SEGMENT1 — Supplier name and supplier number, sourced from PO_VENDORS for identification in reports.
- PERIOD_NAME — The accounting period to which the accumulated withholding bucket balance relates.
- TAX_NAME — The withholding tax identifier or name associated with the bucket.
- WITHHELD_AMOUNT_TO_DATE — Cumulative amount withheld to date for the supplier, period, and tax combination.
- GROSS_AMOUNT_TO_DATE — Cumulative gross (invoice) amount to date against which withholding has been applied.
- VENDOR_ID, ORG_ID — Supplier identifier and operating unit identifier, supporting multi-organization queries.
- Audit columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATION_DATE, CREATED_BY, PROGRAM_UPDATE_DATE, PROGRAM_APPLICATION_ID, PROGRAM_ID, and REQUEST_ID reflect the standard WHO columns carried through from AP_AWT_BUCKETS and indicate which concurrent request last touched each row.
Common Use Cases and Queries
The view is typically queried to report withholding tax accumulations by supplier and period, and to reconcile bucket balances before generating withholding tax reporting or certification. A representative query restricting to a specific period and operating unit is shown below:
- Withholding tax by supplier and period:
SELECT vendor_name, segment1, period_name, tax_name, withheld_amount_to_date, gross_amount_to_date FROM ap_awt_buckets_v WHERE period_name = :period AND org_id = :org_id ORDER BY vendor_name, tax_name; - Supplier-level withholding summary across periods:
SELECT vendor_name, segment1, tax_name, SUM(withheld_amount_to_date) total_withheld FROM ap_awt_buckets_v GROUP BY vendor_name, segment1, tax_name; - Audit and extract queries filtering on LAST_UPDATE_DATE or PROGRAM_ID track which concurrent request refreshed bucket rows for downstream ETL and reconciliation.
Because the underlying bucket table is populated by the withholding tax processing programs, query results should be interpreted in the context of the operating unit (ORG_ID) and period in which the withholding was accrued. Reports querying this view should always filter by ORG_ID in multi-organization implementations to avoid aggregating balances across operating units.
-
View: AP_AWT_BUCKETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_AWT_BUCKETS_V, object_name:AP_AWT_BUCKETS_V, status:VALID, product: AP - Payables , description: (Release 10SC only) , implementation_dba_data: APPS.AP_AWT_BUCKETS_V ,
-
View: AP_AWT_BUCKETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_AWT_BUCKETS_V, object_name:AP_AWT_BUCKETS_V, status:VALID, product: AP - Payables , description: (Release 10SC only) , implementation_dba_data: APPS.AP_AWT_BUCKETS_V ,
-
SYNONYM: APPS.AP_AWT_BUCKETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:AP_AWT_BUCKETS, status:VALID,
-
SYNONYM: APPS.AP_AWT_BUCKETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:AP_AWT_BUCKETS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.AP_AWT_BUCKETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_AWT_BUCKETS_V, object_name:AP_AWT_BUCKETS_V, status:VALID,
-
VIEW: APPS.AP_AWT_BUCKETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_AWT_BUCKETS_V, object_name:AP_AWT_BUCKETS_V, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
VIEW: APPS.PO_VENDORS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.PO_VENDORS, object_name:PO_VENDORS, status:VALID,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,