Search Results ap_awt_buckets
Overview
The APPS.AP_AWT_BUCKETS_V view is a reporting and inquiry object in Oracle E-Business Suite that presents withholding tax accumulation data for suppliers. It joins the withholding tax buckets table to the supplier master to expose vendor identity alongside period-by-period and cumulative withholding figures. The view belongs to the Payables (AP) module's withholding tax (AWT) functionality, which tracks tax withheld from supplier payments and accrues that liability against the supplier and tax authority.
Because it is an APPS-owned view built on top of already-processed withholding data, it serves primarily as a read-only presentation layer. It is used in period-end and reconciliation reporting, supplier withholding analysis, and downstream integrations that require the withheld-to-date and gross-to-date positions for a given vendor, period, and tax. The view is not a transactional entry point; it summarizes the state maintained by the withholding tax bucket records themselves.
Underlying Base Objects
The view is defined over two referenced objects as documented in ETRM 12.2.2:
- AP_AWT_BUCKETS (SYNONYM) — the core withholding tax bucket table that stores accumulated withholding amounts keyed to vendor, period, and tax. This table carries the transactional and audit columns (dates, who-columns, request/program identifiers, and ORG_ID) that the view surfaces.
- PO_VENDORS (VIEW) — the supplier master view, which provides the vendor name and vendor number (
SEGMENT1). It is joined onVENDOR_ID.
The join condition is a simple equijoin: PO_VENDORS.VENDOR_ID = AP_AWT_BUCKETS.VENDOR_ID. Supplier attributes come from PO_VENDORS, while all withholding figures and audit metadata come from AP_AWT_BUCKETS. The view inherits multi-org context through the ORG_ID column exposed from the buckets table.
Key Columns
- VENDOR_NAME — supplier name, drawn from PO_VENDORS.
- SEGMENT1 — supplier number, the human-readable vendor identifier from PO_VENDORS.
- VENDOR_ID — internal supplier key used for the join and for programmatic filtering.
- PERIOD_NAME — the accounting period to which the withholding accumulation applies.
- TAX_NAME — the withholding tax type or tax name being tracked for the supplier.
- WITHHELD_AMOUNT_TO_DATE — cumulative amount withheld for the vendor/tax bucket.
- GROSS_AMOUNT_TO_DATE — cumulative gross amount against which withholding was calculated.
- ORG_ID — operating unit identifier, supporting multi-org security and filtering.
- Audit columns —
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN,PROGRAM_UPDATE_DATE,PROGRAM_APPLICATION_ID,PROGRAM_ID,REQUEST_ID— supporting auditing and concurrency program tracking.
Common Use Cases and Queries
Typical usage includes supplier withholding reconciliation, period-level withholding reporting, and extract feeds for tax authority filings. Because the view pre-joins supplier name and number, it avoids the need to resolve vendors separately in reporting SQL.
Withholding position for a specific 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 vendor_id = :p_vendor_id AND period_name = :p_period ORDER BY tax_name;
Cumulative withholding by tax for an operating unit:
SELECT tax_name, SUM(withheld_amount_to_date) withheld, SUM(gross_amount_to_date) gross FROM ap_awt_buckets_v WHERE org_id = :p_org_id GROUP BY tax_name;
Suppliers with withholding activity in a period:
SELECT vendor_name, segment1, SUM(withheld_amount_to_date) total_withheld FROM ap_awt_buckets_v WHERE period_name = :p_period GROUP BY vendor_name, segment1 HAVING SUM(withheld_amount_to_date) > 0 ORDER BY 3 DESC;
These patterns support both operational reconciliation and analytical reporting against the Payables withholding tax subsystem.
-
VIEW: APPS.AP_AWT_BUCKETS_V
12.2.2
-
VIEW: APPS.AP_AWT_BUCKETS_V
12.1.1
-
PACKAGE BODY: APPS.AP_CALC_WITHHOLDING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_CALC_WITHHOLDING_PKG, status:VALID,
-
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,
-
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 ,
-
PACKAGE BODY: APPS.AP_CALC_WITHHOLDING_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_CALC_WITHHOLDING_PKG, status:VALID,
-
PACKAGE BODY: APPS.JL_ZZ_AP_WITHHOLDING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JL_ZZ_AP_WITHHOLDING_PKG, status:VALID,
-
VIEW: AP.AP_AWT_BUCKETS_ALL#
12.2.2
owner:AP, object_type:VIEW, object_name:AP_AWT_BUCKETS_ALL#, status:VALID,
-
PACKAGE BODY: APPS.JL_ZZ_AP_WITHHOLDING_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JL_ZZ_AP_WITHHOLDING_PKG, status:VALID,
-
PACKAGE BODY: APPS.AP_WITHHOLDING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_WITHHOLDING_PKG, status:VALID,
-
PACKAGE BODY: APPS.AP_WITHHOLDING_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_WITHHOLDING_PKG, status:VALID,
-
APPS.AP_CALC_WITHHOLDING_PKG SQL Statements
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,
-
APPS.AP_CALC_WITHHOLDING_PKG SQL Statements
12.2.2
-
TABLE: AP.AP_AWT_BUCKETS_ALL
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_AWT_BUCKETS_ALL, object_name:AP_AWT_BUCKETS_ALL, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
APPS.JL_ZZ_AP_WITHHOLDING_PKG dependencies on AP_AWT_BUCKETS
12.1.1
-
APPS.JL_ZZ_AP_WITHHOLDING_PKG SQL Statements
12.1.1
-
APPS.JL_ZZ_AP_WITHHOLDING_PKG SQL Statements
12.2.2
-
APPS.AP_WITHHOLDING_PKG dependencies on AP_AWT_BUCKETS
12.1.1
-
APPS.AP_CALC_WITHHOLDING_PKG dependencies on AP_AWT_BUCKETS
12.1.1
-
APPS.JL_ZZ_AP_WITHHOLDING_PKG dependencies on AP_AWT_BUCKETS
12.2.2
-
APPS.AP_CALC_WITHHOLDING_PKG dependencies on AP_AWT_BUCKETS
12.2.2
-
APPS.AP_WITHHOLDING_PKG dependencies on AP_AWT_BUCKETS
12.2.2
-
APPS.AP_WITHHOLDING_PKG SQL Statements
12.2.2
-
APPS.AP_WITHHOLDING_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.AP_CALC_WITHHOLDING_PKG
12.1.1
-
PACKAGE BODY: APPS.AP_CALC_WITHHOLDING_PKG
12.2.2
-
APPS.AP_WITHHOLDING_PKG dependencies on AP_AWT_BUCKETS_ALL
12.1.1
-
PACKAGE BODY: APPS.AP_WITHHOLDING_PKG
12.1.1
-
PACKAGE BODY: APPS.AP_WITHHOLDING_PKG
12.2.2
-
APPS.AP_WITHHOLDING_PKG dependencies on AP_UTILITIES_PKG
12.2.2
-
APPS.AP_WITHHOLDING_PKG dependencies on AP_UTILITIES_PKG
12.1.1
-
PACKAGE BODY: APPS.AD_MORG
12.1.1
-
PACKAGE BODY: APPS.JL_ZZ_AP_WITHHOLDING_PKG
12.2.2
-
PACKAGE BODY: APPS.AD_MORG
12.2.2
-
PACKAGE BODY: APPS.JL_ZZ_AP_WITHHOLDING_PKG
12.1.1
-
eTRM - SQLAP Tables and Views
12.1.1
description: Set Distribution Table. ,
-
APPS.AP_WITHHOLDING_PKG dependencies on FND_LOG
12.2.2
-
eTRM - SQLAP Tables and Views
12.2.2
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.1.1
description: Set Distribution Table. ,
-
eTRM - SQLAP Tables and Views
12.2.2
description: Set Distribution Table. ,