Search Results tax_exemptions_v
Overview
TAX_EXEMPTIONS_V is a reporting view owned by the APPS schema within the Oracle E-Business Suite Receivables (AR) module. It consolidates customer tax exemption records held in the transaction table RA_TAX_EXEMPTIONS with the corresponding ship-to and bill-to context drawn from the Trading Community Architecture (TCA) party and site model. Rather than exposing raw exemption rows in isolation, the view resolves each exemption to the customer account and site use to which it applies, and it decodes internal reason and status codes into user-facing meanings.
Because tax determination in EBS depends on the correct exemption being applied to a given ship-to site at transaction time, this view serves as a diagnostic and integration surface. It allows implementers and support analysts to verify which exemptions exist for a customer, their effective dates, the percentage exempt, and their approval status without navigating the Receivables forms. It is equally usable from custom reports, extracts, and interfaces that must evaluate exemption eligibility before an invoice or order is processed.
Underlying Base Objects
The view is defined over seven documented base objects. The principal transaction object is RA_TAX_EXEMPTIONS, exposed as a synonym, which carries the exemption number, reason code, percentage, status, dates, tax code, and the location segmentation columns. The TCA objects HZ_CUST_SITE_USES, HZ_CUST_ACCT_SITES_ALL, HZ_PARTY_SITES, and HZ_LOC_ASSIGNMENTS provide the site use, account site, party site, and location assignment context respectively, all accessed through synonyms.
Two lookup views, AR_LOOKUPS, supply the decoded meaning values for the status and reason code columns. AR_LOCATION_COMBINATIONS, itself a view, supplies the location identifier segments used to align the customer site with the exemption record. The join logic links site use to account site, account site to party site, and party site to location assignment, with an outer join to AR_LOCATION_COMBINATIONS. Organization ID conditions and USERENV client information are applied so that records are filtered to the appropriate operating unit context, consistent with multi-org security in 12.1.1 and 12.2.2.
Key Columns
- SHIP_TO_SITE_USE_ID and SHIP_TO_CUSTOMER_ID — identify the ship-to site use and customer account derived from HZ_CUST_SITE_USES and HZ_CUST_ACCT_SITES_ALL.
- BILL_TO_CUSTOMER_ID and EXEMPTION_SHIP_TO_SITE_USE_ID — the bill-to customer and the site use recorded directly on the exemption.
- TAX_EXEMPT_NUMBER — the customer exemption number; a single space is substituted when null.
- TAX_EXEMPT_REASON_CODE and TAX_EXEMPT_REASON_MEANING — the raw reason code and its decoded lookup meaning.
- PERCENT_EXEMPT — the portion of tax exempted, from 0 to 100.
- STATUS_CODE and STATUS_MEANING — the raw status and decoded meaning, with values such as PRIMARY, MANUAL, UNAPPROVED, and EXPIRED.
- START_DATE and END_DATE — the effective period of the exemption.
- TAX_EXEMPTION_ID — the primary key of the underlying exemption record.
- DISPLAY_ORDER — a computed ordering value that prioritizes by location segment depth and then by status, so PRIMARY records sort ahead of MANUAL, UNAPPROVED, EXPIRED, and other values.
- TAX_CODE — the tax code associated with the exemption.
Common Use Cases and Queries
A frequent requirement is verifying whether a customer holds a valid exemption for a specific site on a given date. The NVL expressions on the reason and status columns mean callers can rely on readable values without joining AR_LOOKUPS themselves.
- List active exemptions for a customer: SELECT tax_exempt_number, tax_exempt_reason_meaning, percent_exempt, start_date, end_date FROM apps.tax_exemptions_v WHERE ship_to_customer_id = :customer_id AND TRUNC(SYSDATE) BETWEEN TRUNC(start_date) AND TRUNC(end_date).
- Identify expired or unapproved records: SELECT * FROM apps.tax_exemptions_v WHERE status_meaning IN ('EXPIRED','UNAPPROVED') ORDER BY display_order.
- Resolve the governing exemption for a site: filter by ship_to_site_use_id and order by display_order ascending, taking the first row, which mirrors the precedence logic embedded in the view.
- Reconcile exemptions to tax codes: SELECT tax_code, COUNT(*) FROM apps.tax_exemptions_v GROUP BY tax_code.
Because the definition embeds multi-org and USERENV client filtering, the view returns results consistent with the caller's organization context, which should be considered when it is used in concurrent programs or external extracts.
-
View: TAX_EXEMPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.TAX_EXEMPTIONS_V, object_name:TAX_EXEMPTIONS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.TAX_EXEMPTIONS_V ,
-
View: TAX_EXEMPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.TAX_EXEMPTIONS_V, object_name:TAX_EXEMPTIONS_V, status:VALID, product: AR - Receivables , implementation_dba_data: APPS.TAX_EXEMPTIONS_V ,
-
VIEW: APPS.OE_TAX_EXEMPTIONS_QP_V
12.1.1
-
VIEW: APPS.OE_TAX_EXEMPTIONS_QP_V
12.2.2
-
SYNONYM: APPS.RA_TAX_EXEMPTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RA_TAX_EXEMPTIONS, status:VALID,
-
SYNONYM: APPS.RA_TAX_EXEMPTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RA_TAX_EXEMPTIONS, status:VALID,
-
View: OE_TAX_EXEMPTIONS_QP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TAX_EXEMPTIONS_QP_V, object_name:OE_TAX_EXEMPTIONS_QP_V, status:VALID, product: ONT - Order Management , description: This view is used in deriving the Tax Exemption details defined for Customer/Customer Sites. , implementation_dba_data: APPS.OE_TAX_EXEMPTIONS_QP_V ,
-
View: OE_TAX_EXEMPTIONS_QP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TAX_EXEMPTIONS_QP_V, object_name:OE_TAX_EXEMPTIONS_QP_V, status:VALID, product: ONT - Order Management , description: This view is used in deriving the Tax Exemption details defined for Customer/Customer Sites. , implementation_dba_data: APPS.OE_TAX_EXEMPTIONS_QP_V ,
-
SYNONYM: APPS.HZ_LOC_ASSIGNMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_LOC_ASSIGNMENTS, status:VALID,
-
SYNONYM: APPS.HZ_LOC_ASSIGNMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_LOC_ASSIGNMENTS, status:VALID,
-
VIEW: APPS.OE_TAX_EXEMPTIONS_QP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TAX_EXEMPTIONS_QP_V, object_name:OE_TAX_EXEMPTIONS_QP_V, status:VALID,
-
VIEW: APPS.OE_TAX_EXEMPTIONS_QP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_TAX_EXEMPTIONS_QP_V, object_name:OE_TAX_EXEMPTIONS_QP_V, status:VALID,
-
VIEW: APPS.TAX_EXEMPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.TAX_EXEMPTIONS_V, object_name:TAX_EXEMPTIONS_V, status:VALID,
-
VIEW: APPS.TAX_EXEMPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.TAX_EXEMPTIONS_V, object_name:TAX_EXEMPTIONS_V, status:VALID,
-
VIEW: APPS.AR_LOCATION_COMBINATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.AR_LOCATION_COMBINATIONS, object_name:AR_LOCATION_COMBINATIONS, status:VALID,
-
VIEW: APPS.AR_LOCATION_COMBINATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.AR_LOCATION_COMBINATIONS, object_name:AR_LOCATION_COMBINATIONS, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.HZ_CUST_SITE_USES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES, status:VALID,
-
SYNONYM: APPS.HZ_CUST_SITE_USES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_SITE_USES, status:VALID,
-
APPS.OE_BULK_PROCESS_LINE SQL Statements
12.1.1
-
APPS.OE_BULK_PROCESS_LINE SQL Statements
12.2.2
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCT_SITES_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCT_SITES_ALL, status:VALID,
-
VIEW: APPS.AR_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID,
-
VIEW: APPS.AR_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.AR_LOOKUPS, object_name:AR_LOOKUPS, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
SYNONYM: APPS.HZ_PARTY_SITES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTY_SITES, status:VALID,
-
APPS.ARP_STAX_MINUS99 SQL Statements
12.1.1
-
APPS.ARP_STAX_MINUS99 SQL Statements
12.2.2
-
PACKAGE BODY: APPS.ARP_STAX_MINUS99
12.2.2
-
PACKAGE BODY: APPS.ARP_STAX_MINUS99
12.1.1
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
PACKAGE BODY: APPS.OE_BULK_PROCESS_LINE
12.1.1
-
PACKAGE BODY: APPS.OE_BULK_PROCESS_LINE
12.2.2
-
12.2.2 DBA Data
12.2.2
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - ONT Tables and Views
12.1.1
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - ONT Tables and Views
12.2.2
description: OM WorkFlow Activity Skip Log. ,
-
eTRM - AR Tables and Views
12.1.1
description: Territory information ,
-
eTRM - AR Tables and Views
12.2.2
description: Territory information ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,