Search Results zx_exemption_reason_code
Overview
The view APPS.ASO_I_TAX_EXEMPT_REASONS_V is a lightweight lookup-backed view in Oracle E-Business Suite that exposes the set of valid tax exemption reason codes available to the Order Capture and pricing/tax integration layers. Its name indicates it belongs to the ASO (Order Capture / Oracle Advanced Pricing integration) module, with the _I_ token denoting an integration-oriented object and _V confirming it is a view rather than a physical table. The view presents enabled tax exemption reasons sourced directly from the Oracle Application Object Library lookup infrastructure.
The defining characteristic of this view is that it performs no joins beyond an implicit filter on FND_LOOKUPS. It simply restricts the ZX_EXEMPTION_REASON_CODE lookup type to rows where ENABLED_FLAG = 'Y', returning a clean list of active exemption reasons. This makes it a convenient reference for validation, list-of-values generation, and reporting where only currently valid reasons should appear.
Underlying Base Objects
The ETRM metadata documents the following referenced objects:
- FND_LOOKUPS (VIEW) — The primary and only data source. This is the standard Oracle Applications lookup view over the underlying
FND_LOOKUP_TYPESandFND_LOOKUP_VALUEStables, exposing lookup types, codes, meanings, and effective dates. - FND_GLOBAL (PACKAGE) — Documented as referenced, reflecting the standard EBS convention by which views and reports derive runtime context such as
USER_ID,RESP_ID, andORG_IDthrough the FND_GLOBAL package. Its presence is typical of Oracle-delivered seeded views and does not alter the straightforward lookup selection logic.
Because the view is defined solely over FND_LOOKUPS filtered to a single lookup type, it inherits the maintenance characteristics of the lookup framework: values are managed through the Application Developer responsibility under Lookups, and additions, end-dating, or disabling of lookup values are immediately reflected.
Key Columns
The view exposes the following columns, each carrying standard lookup semantics:
- MEANING — The user-facing description of the exemption reason (for example, a descriptive text such as a statutory or diplomatic exemption label). This is the value typically presented in lists of values and reports.
- LOOKUP_CODE — The internal, stored code for the exemption reason. This is the value persisted on transactional records and matched against tax configuration; it is the column most relevant to the search term
zx_exemption_reason_code. - ENABLED_FLAG — Indicates whether the lookup value is active. Since the view filters to
'Y', this column always returnsYin the result set, but it is retained for structural consistency. - START_DATE_ACTIVE — The date from which the exemption reason becomes valid.
- END_DATE_ACTIVE — The date on which the exemption reason ceases to be valid; a null value indicates no defined end date.
Common Use Cases and Queries
The view is most often used to populate exemption reason selection lists during order entry, to validate that a supplied reason remains active, and to drive reporting on tax exemption activity. A basic retrieval follows:
SELECT lookup_code, meaning FROM apps.aso_i_tax_exempt_reasons_v ORDER BY meaning;SELECT meaning FROM apps.aso_i_tax_exempt_reasons_v WHERE lookup_code = :exemption_reason;— used to translate a stored code into a display value.SELECT lookup_code FROM apps.aso_i_tax_exempt_reasons_v WHERE SYSDATE BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE);— an additional guard ensuring the reason is currently effective within its active date range.
Because the view already restricts to enabled values, consumers need not re-apply the ENABLED_FLAG predicate, though date-range checks remain advisable where exemption validity is time-sensitive. When joining exemption data to transactional tables, matching on LOOKUP_CODE against the stored zx_exemption_reason_code column is the standard pattern.
-
Lookup Type: ZX_EXEMPTION_REASON_CODE
12.2.2
product: ZX - E-Business Tax , meaning: eBTax Exemption Reason Code List , description: Exemption Reason Code List ,
-
Lookup Type: ZX_EXEMPTION_REASON_CODE
12.1.1
product: ZX - E-Business Tax , meaning: eBTax Exemption Reason Code List , description: Exemption Reason Code List ,
-
VIEW: APPS.ASO_I_TAX_EXEMPT_REASONS_V
12.2.2
-
VIEW: APPS.ZX_EXEMPTIONS_V
12.1.1
-
VIEW: APPS.ASO_I_TAX_EXEMPT_REASONS_V
12.1.1
-
VIEW: APPS.ZX_EXEMPTIONS_V
12.2.2
-
VIEW: APPS.PA_OUTPUT_TAX_REASON_V
12.1.1
-
VIEW: APPS.PA_OUTPUT_TAX_REASON_V
12.2.2
-
View: ZX_EXEMPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_EXEMPTIONS_V, object_name:ZX_EXEMPTIONS_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_EXEMPTIONS_V ,
-
View: PA_OUTPUT_TAX_REASON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OUTPUT_TAX_REASON_V, object_name:PA_OUTPUT_TAX_REASON_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_OUTPUT_TAX_REASON_V ,
-
View: ZX_EXEMPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_EXEMPTIONS_V, object_name:ZX_EXEMPTIONS_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_EXEMPTIONS_V ,
-
APPS.ZX_TCM_GET_DEF_EXEMPTION SQL Statements
12.1.1
-
APPS.ZX_TCM_GET_DEF_EXEMPTION SQL Statements
12.2.2
-
View: PA_OUTPUT_TAX_REASON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_OUTPUT_TAX_REASON_V, object_name:PA_OUTPUT_TAX_REASON_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_OUTPUT_TAX_REASON_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.PA_DRAFT_INVOICE_LINES_V
12.1.1
-
APPS.ZX_TCM_GET_EXEMPT_PKG SQL Statements
12.2.2
-
VIEW: APPS.PA_DRAFT_INVOICE_LINES_V
12.2.2
-
View: PA_DRAFT_INVOICE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DRAFT_INVOICE_LINES_V, object_name:PA_DRAFT_INVOICE_LINES_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_DRAFT_INVOICE_LINES_V ,
-
View: PA_DRAFT_INVOICE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DRAFT_INVOICE_LINES_V, object_name:PA_DRAFT_INVOICE_LINES_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_DRAFT_INVOICE_LINES_V ,
-
View: PA_DRAFT_INV_LINES_FORM_MRC_V
12.2.2
product: PA - Projects , description: This will select data from pa_draft_invoices, pa_mc_draft_inv_items, pa_draft_invoice_items , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.ZX_TCM_GET_DEF_EXEMPTION
12.2.2
-
View: PA_DRAFT_INV_LINES_FORM_MRC_V
12.1.1
product: PA - Projects , description: This will select data from pa_draft_invoices, pa_mc_draft_inv_items, pa_draft_invoice_items , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.RA_CUSTOMER_TRX_LINES_V
12.2.2
-
PACKAGE BODY: APPS.ZX_TCM_GET_DEF_EXEMPTION
12.1.1
-
APPS.ZX_TCM_GET_EXEMPT_PKG SQL Statements
12.1.1
-
APPS.OE_BULK_PROCESS_HEADER SQL Statements
12.1.1
-
APPS.OE_BULK_PROCESS_HEADER SQL Statements
12.2.2
-
View: RA_CUSTOMER_TRX_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_LINES_V, object_name:RA_CUSTOMER_TRX_LINES_V, status:VALID, product: AR - Receivables , description: (Release 115) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_LINES_V ,
-
PACKAGE BODY: APPS.ZX_TCM_GET_EXEMPT_PKG
12.2.2
-
APPS.OKS_ATTR_DEFAULTS_PVT SQL Statements
12.1.1
-
APPS.OKS_ATTR_DEFAULTS_PVT SQL Statements
12.2.2
-
APPS.OE_BULK_VALUE_TO_ID SQL Statements
12.1.1
-
APPS.OE_BULK_VALUE_TO_ID SQL Statements
12.2.2
-
APPS.ZX_TCM_GET_DEF_EXEMPTION dependencies on ZX_EXEMPTIONS
12.1.1
-
APPS.OE_BULK_VALUE_TO_ID dependencies on FND_LOOKUPS
12.1.1
-
PACKAGE BODY: APPS.ZX_TCM_GET_EXEMPT_PKG
12.1.1
-
APPS.ZX_TCM_GET_DEF_EXEMPTION dependencies on ZX_PARTY_TAX_PROFILE
12.1.1
-
APPS.ZX_TCM_GET_EXEMPT_PKG dependencies on FND_LOOKUPS
12.2.2
-
APPS.ZX_TCM_GET_DEF_EXEMPTION dependencies on FND_LOOKUPS
12.1.1
-
APPS.ZX_TCM_GET_DEF_EXEMPTION dependencies on ZX_EXEMPTIONS
12.2.2
-
APPS.ZX_TCM_GET_DEF_EXEMPTION dependencies on FND_LOOKUPS
12.2.2
-
APPS.ZX_TCM_GET_DEF_EXEMPTION dependencies on ZX_PARTY_TAX_PROFILE
12.2.2
-
APPS.OE_BULK_VALUE_TO_ID dependencies on FND_LOOKUPS
12.2.2
-
APPS.OE_BULK_PROCESS_HEADER dependencies on FND_LOOKUPS
12.2.2
-
APPS.ZX_TCM_GET_DEF_EXEMPTION dependencies on HZ_PARTY_SITES
12.1.1
-
APPS.OKS_ATTR_DEFAULTS_PVT dependencies on ZX_EXEMPTIONS
12.2.2
-
APPS.ZX_TCM_GET_EXEMPT_PKG dependencies on FND_LOOKUPS
12.1.1
-
APPS.ZX_TCM_GET_DEF_EXEMPTION dependencies on ZX_REGIMES_B
12.1.1