Search Results tax_exempt_reason_code
Overview
The OE_AK_T_EXEMPT_REASON_V view is a lightweight, read-only database object owned by the APPS schema in Oracle E-Business Suite. It is registered under the Order Management (ONT) product family and carries a VALID status in both the 12.1.1 and 12.2.2 releases. Its purpose is narrow and well defined: it exposes the list of valid tax exemption reason codes that are available to the Order Management application. The name incorporates the "AK" convention historically used by Oracle's Application Toolkit and descriptive flexfield infrastructure, but the view itself functions as a simple lookup access layer. Rather than requiring callers to know the internal structure of the lookups table, the view returns a single, clean column that application code, concurrent programs, and external integrations can consume directly.
Underlying Base Objects
The view is defined over a single base object, OE_LOOKUPS, which is itself a view rather than a physical table. The documented view text is:
SELECT LOOKUP_CODE FROM OE_LOOKUPS WHERE LOOKUP_TYPE = 'TAX_EXEMPT_REASON_CODE'
This definition filters OE_LOOKUPS to the row set where the lookup type equals TAX_EXEMPT_REASON_CODE. In practice, OE_LOOKUPS resolves to the underlying Oracle Applications lookup tables (typically FND_LOOKUP_VALUES, filtered for the Order Management lookup types). Because the view is a projection with a hard-coded predicate rather than a join across multiple entities, there is no referential dependency on order headers, lines, or tax detail tables. Its relationship to the base objects is therefore strictly one-to-many in the lookup sense: one lookup type yields many exemption reason codes.
Key Columns
The view exposes exactly one column, documented as TAX_EXEMPT_REASON_CODE:
- TAX_EXEMPT_REASON_CODE — The lookup code value drawn from the
LOOKUP_CODEcolumn ofOE_LOOKUPS. Each row represents one selectable reason for a tax exemption. Typical values in a standard installation include codes for resale, government, charitable, and similar statutory categories, though the exact set is customer-maintainable through the Application Lookups setup form.
Because only the code is returned, the view does not carry the associated meaning, description, enabled flag, display sequence, or effective dates that exist in the fuller lookup structures. Callers needing descriptive text must join back to FND_LOOKUP_VALUES or query OE_LOOKUPS directly.
Common Use Cases and Queries
The primary scenario is populating a list of values or validating an exemption reason supplied through an order import, an order entry screen, or an external tax integration. The view is also useful for reconciliation reporting, confirming which codes are defined in a given environment before a data migration.
A typical query to enumerate all available exemption reasons:
SELECT TAX_EXEMPT_REASON_CODE FROM APPS.OE_AK_T_EXEMPT_REASON_V ORDER BY 1;
To confirm that a specific code is valid before inserting an order line interface record:
SELECT TAX_EXEMPT_REASON_CODE FROM APPS.OE_AK_T_EXEMPT_REASON_V WHERE TAX_EXEMPT_REASON_CODE = 'RESALE';
To obtain the human-readable meaning alongside each code, the view is joined to the underlying lookup values:
SELECT v.TAX_EXEMPT_REASON_CODE, l.MEANING FROM APPS.OE_AK_T_EXEMPT_REASON_V v, APPS.FND_LOOKUP_VALUES l WHERE l.LOOKUP_TYPE = 'TAX_EXEMPT_REASON_CODE' AND l.LOOKUP_CODE = v.TAX_EXEMPT_REASON_CODE AND l.VIEW_APPLICATION_ID = 0;
Because the object is a view over lookup data, no DML is permitted; maintenance of the exemption reason list is performed through the Application Developer responsibility or the Order Management setup menu, not through this object.
-
View: OE_AK_T_EXEMPT_REASON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_T_EXEMPT_REASON_V, object_name:OE_AK_T_EXEMPT_REASON_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_T_EXEMPT_REASON_V ,
-
View: OE_AK_T_EXEMPT_REASON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_T_EXEMPT_REASON_V, object_name:OE_AK_T_EXEMPT_REASON_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_T_EXEMPT_REASON_V ,
-
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 ,
-
View: OE_AK_LINE_PRCADJS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_LINE_PRCADJS_V, object_name:OE_AK_LINE_PRCADJS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_LINE_PRCADJS_V ,
-
View: OE_AK_HEADER_PRCADJS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_HEADER_PRCADJS_V, object_name:OE_AK_HEADER_PRCADJS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_HEADER_PRCADJS_V ,
-
View: OE_AK_LINE_PRCADJS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_LINE_PRCADJS_V, object_name:OE_AK_LINE_PRCADJS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_LINE_PRCADJS_V ,
-
View: OE_AK_HEADER_PRCADJS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_HEADER_PRCADJS_V, object_name:OE_AK_HEADER_PRCADJS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_HEADER_PRCADJS_V ,
-
View: OE_CRM_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
View: OE_CRM_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_HEADERS_V, object_name:OE_CRM_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_headers_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_HEADERS_V ,
-
View: OE_RA_CUSTOMERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RA_CUSTOMERS_V, object_name:OE_RA_CUSTOMERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_RA_CUSTOMERS_V ,
-
View: OE_RA_CUSTOMERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_RA_CUSTOMERS_V, object_name:OE_RA_CUSTOMERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_RA_CUSTOMERS_V ,
-
View: OE_TAX_LINES_SUMMARY_V
12.1.1
product: ONT - Order Management , description: This view is used by Tax Engine to calculate the Tax on order line. , implementation_dba_data: Not implemented in this database ,
-
View: OE_TAX_LINES_SUMMARY_V
12.2.2
product: ONT - Order Management , description: This view is used by Tax Engine to calculate the Tax on order line. , implementation_dba_data: Not implemented in this database ,
-
View: OE_TAX_LINES_SUMMARY_V_V
12.2.2
product: ONT - Order Management , description: view is used by Tax Engine to calculate the Tax on order line when theexternal TaxVendor "Vertex" is used. , implementation_dba_data: Not implemented in this database ,
-
View: OE_TAX_LINES_SUMMARY_V_A
12.1.1
product: ONT - Order Management , description: This view is used by Tax Engine to calculate the Tax on order line when theexternal Tax Vendor "Taxware" is used. , implementation_dba_data: Not implemented in this database ,
-
View: OE_TAX_LINES_SUMMARY_V_A
12.2.2
product: ONT - Order Management , description: This view is used by Tax Engine to calculate the Tax on order line when theexternal Tax Vendor "Taxware" is used. , implementation_dba_data: Not implemented in this database ,
-
View: OE_CRM_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_LINES_V, object_name:OE_CRM_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_lines_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_LINES_V ,
-
View: OE_TAX_LINES_SUMMARY_V_V
12.1.1
product: ONT - Order Management , description: view is used by Tax Engine to calculate the Tax on order line when theexternal TaxVendor "Vertex" is used. , implementation_dba_data: Not implemented in this database ,
-
View: OE_CRM_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CRM_ORDER_LINES_V, object_name:OE_CRM_ORDER_LINES_V, status:VALID, product: ONT - Order Management , description: Compatible view provoded for CRM usage only. The view is based on oe_order_lines_all table. , implementation_dba_data: APPS.OE_CRM_ORDER_LINES_V ,
-
View: OE_ORD_PRC_ADJ_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORD_PRC_ADJ_HIST_V, object_name:OE_ORD_PRC_ADJ_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORD_PRC_ADJ_HIST_V ,
-
View: OE_LINE_PRC_ADJ_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_PRC_ADJ_HIST_V, object_name:OE_LINE_PRC_ADJ_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_LINE_PRC_ADJ_HIST_V ,
-
View: OE_LINE_PRC_ADJ_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_PRC_ADJ_HIST_V, object_name:OE_LINE_PRC_ADJ_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_LINE_PRC_ADJ_HIST_V ,
-
View: OE_ORD_PRC_ADJ_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORD_PRC_ADJ_HIST_V, object_name:OE_ORD_PRC_ADJ_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORD_PRC_ADJ_HIST_V ,
-
View: OE_PRICE_ADJS_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJS_HISTORY_V, object_name:OE_PRICE_ADJS_HISTORY_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve Price Adjustments history. This is used by the history form. , implementation_dba_data: APPS.OE_PRICE_ADJS_HISTORY_V ,
-
View: OE_PRICE_ADJS_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJS_HISTORY_V, object_name:OE_PRICE_ADJS_HISTORY_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve Price Adjustments history. This is used by the history form. , implementation_dba_data: APPS.OE_PRICE_ADJS_HISTORY_V ,
-
View: OE_ORDER_LINES_AUDIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_AUDIT_V, object_name:OE_ORDER_LINES_AUDIT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_AUDIT_V ,
-
View: OE_ORDER_LINES_AUDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_LINES_AUDIT_V, object_name:OE_ORDER_LINES_AUDIT_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_ORDER_LINES_AUDIT_V ,
-
View: OE_PRICE_ADJUSTMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJUSTMENTS_V, object_name:OE_PRICE_ADJUSTMENTS_V, status:VALID, product: ONT - Order Management , description: This is a view on table OE_PRICE_ADJUSTMENTS. , implementation_dba_data: APPS.OE_PRICE_ADJUSTMENTS_V ,
-
View: OE_PRICE_ADJUSTMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PRICE_ADJUSTMENTS_V, object_name:OE_PRICE_ADJUSTMENTS_V, status:VALID, product: ONT - Order Management , description: This is a view on table OE_PRICE_ADJUSTMENTS. , implementation_dba_data: APPS.OE_PRICE_ADJUSTMENTS_V ,
-
View: OE_LINE_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_LINE_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_LINE_ACKS_V, object_name:OE_LINE_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Lines , implementation_dba_data: APPS.OE_LINE_ACKS_V ,
-
View: OE_AK_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_HEADERS_V, object_name:OE_AK_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_HEADERS_V ,
-
View: OE_AK_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_HEADERS_V, object_name:OE_AK_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_HEADERS_V ,
-
View: OEFV_ORDER_LINES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
View: OEFV_ORDER_LINES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OEFV_ORDER_LINES, object_name:OEFV_ORDER_LINES, status:VALID, product: ONT - Order Management , description: Full BIS View for Order lines , implementation_dba_data: APPS.OEFV_ORDER_LINES ,
-
View: OE_BLANKET_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HEADERS_V, object_name:OE_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HEADERS_V ,
-
View: OE_BLANKET_HDRS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HDRS_HIST_V, object_name:OE_BLANKET_HDRS_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HDRS_HIST_V ,
-
View: OE_BLANKET_HDRS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HDRS_HIST_V, object_name:OE_BLANKET_HDRS_HIST_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HDRS_HIST_V ,
-
View: OE_BLANKET_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_BLANKET_HEADERS_V, object_name:OE_BLANKET_HEADERS_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_BLANKET_HEADERS_V ,
-
View: OE_ORDER_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OE_ORDER_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_V, object_name:OE_ORDER_HEADERS_V, status:VALID, product: ONT - Order Management , description: View for Order header used in sales order form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_V ,
-
View: OE_HEADER_ACKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADER_ACKS_V, object_name:OE_HEADER_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Headers. , implementation_dba_data: APPS.OE_HEADER_ACKS_V ,
-
View: OE_AK_ORDER_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
View: OE_AK_ORDER_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_AK_ORDER_LINES_V, object_name:OE_AK_ORDER_LINES_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_AK_ORDER_LINES_V ,
-
View: OE_HEADER_ACKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_HEADER_ACKS_V, object_name:OE_HEADER_ACKS_V, status:VALID, product: ONT - Order Management , description: Information about the acknowledgements for Order Headers. , implementation_dba_data: APPS.OE_HEADER_ACKS_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_ORDER_HEADERS_HIST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_ORDER_HEADERS_HIST_V, object_name:OE_ORDER_HEADERS_HIST_V, status:VALID, product: ONT - Order Management , description: This view is used to retrieve the Order History. This is used by the history form. , implementation_dba_data: APPS.OE_ORDER_HEADERS_HIST_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,
-
View: OE_SCH_RSV_SET_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_SCH_RSV_SET_LINES_V, object_name:OE_SCH_RSV_SET_LINES_V, status:VALID, product: ONT - Order Management , description: View used by the new form for scheduling across orders with Reservation set information , implementation_dba_data: APPS.OE_SCH_RSV_SET_LINES_V ,