Search Results tax_control_flag
Overview
APPS.SO_TAX_STATUSES_V is a lightweight reporting and integration view within the Oracle E-Business Suite Applications (APPS) schema. Its purpose is to expose the valid tax control / tax exemption statuses used by Oracle Receivables and related order-to-cash flows in a denormalized, presentation-ready form. Rather than requiring downstream reports, concurrent programs, or external integrations to understand the internal encoding of Oracle Receivables lookup types, the view surfaces only those lookup codes associated with the tax control flag, pairing each code with its human-readable display value. In releases 12.1.1 and 12.2.2 the view remains a thin wrapper over the Receivables lookup infrastructure and therefore carries no independent data storage of its own.
Underlying Base Objects
The view is defined entirely over a single referenced object, AR_LOOKUPS. The documented ETRM view text is:
SELECT MEANING TAX_EXEMPT_FLAG_DISPLAY, LOOKUP_CODE TAX_EXEMPT_FLAG FROM AR_LOOKUPS WHERE LOOKUP_TYPE = 'TAX_CONTROL_FLAG'
AR_LOOKUPS is the Receivables lookup table that stores seeded and user-defined lookup codes across many lookup types. This view filters that table to the single lookup type TAX_CONTROL_FLAG, which is the lookup type that governs the tax control / tax exemption status values available on customer, site, and transaction records. Because the view selects from AR_LOOKUPS without joins, its rows change whenever the underlying lookup values for that type are added, end-dated, or disabled. The view therefore functions as a filtered projection of the AR_LOOKUPS lookup type set rather than as a materialized or cached structure.
Key Columns
The view exposes two columns, both derived directly from AR_LOOKUPS:
- TAX_EXEMPT_FLAG_DISPLAY — Maps to AR_LOOKUPS.MEANING. This is the descriptive, user-facing label for the tax control status (for example, a "Tax Exempt" or "Taxable" style meaning), suitable for display in reports, LOVs, and integration payloads.
- TAX_EXEMPT_FLAG — Maps to AR_LOOKUPS.LOOKUP_CODE. This is the internal code value that is stored against the tax control flag field on transactional and party records, and is the value that business logic and validations typically evaluate.
Although AR_LOOKUPS contains additional attributes such as description, enabled flag, start and end dates, tag, and attribute columns, the view deliberately restricts output to these two columns. Consequently, the view does not expose enablement or date-range information directly; consumers that need to distinguish currently active lookups from disabled or end-dated ones must query AR_LOOKUPS itself rather than relying on this view.
Common Use Cases and Queries
The view is principally used to populate selection lists and decode reports, and to provide a stable interface for external systems that must translate between tax status codes and their display meanings. A typical reporting query retrieves all tax control statuses for a picklist or validation reference:
SELECT tax_exempt_flag, tax_exempt_flag_display FROM apps.so_tax_statuses_v ORDER BY tax_exempt_flag_display;
A common integration pattern joins the view to tax or customer data to render descriptive status text alongside stored codes:
SELECT t.customer_id, s.tax_exempt_flag_display FROM apps.so_tax_statuses_v s, apps.ra_customers t WHERE t.tax_control_flag = s.tax_exempt_flag;
Because the view is a simple filter over a seeded lookup type, it requires no special grants beyond the standard APPS synonym and is safe to query in read-only reporting environments. When additional lookup attributes such as description or enabled status are required, the recommended approach is to query AR_LOOKUPS directly with the same LOOKUP_TYPE = 'TAX_CONTROL_FLAG' predicate and applicable enabled and date filters.
-
Lookup Type: TAX_CONTROL_FLAG
12.1.1
product: AR - Receivables , meaning: Tax Control Flag , description: Override of Tax calculation ,
-
Lookup Type: TAX_CONTROL_FLAG
12.2.2
product: AR - Receivables , meaning: Tax Control Flag , description: Override of Tax calculation ,
-
VIEW: APPS.SO_TAX_STATUSES_V
12.1.1
-
VIEW: APPS.ASO_I_TAX_STATUSES_V
12.2.2
-
VIEW: APPS.ASO_I_TAX_STATUSES_V
12.1.1
-
VIEW: APPS.SO_TAX_STATUSES_V
12.2.2
-
View: SO_TAX_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_TAX_STATUSES_V, object_name:SO_TAX_STATUSES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_TAX_STATUSES_V ,
-
View: SO_TAX_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OE.SO_TAX_STATUSES_V, object_name:SO_TAX_STATUSES_V, status:VALID, product: OE - Order Entry , implementation_dba_data: APPS.SO_TAX_STATUSES_V ,
-
View: ASO_I_TAX_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_TAX_STATUSES_V, object_name:ASO_I_TAX_STATUSES_V, status:VALID, product: ASO - Order Capture , description: View based on AR lookups , implementation_dba_data: APPS.ASO_I_TAX_STATUSES_V ,
-
View: ASO_I_TAX_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_TAX_STATUSES_V, object_name:ASO_I_TAX_STATUSES_V, status:VALID, product: ASO - Order Capture , description: View based on AR lookups , implementation_dba_data: APPS.ASO_I_TAX_STATUSES_V ,
-
APPS.AR_DEPOSIT_VAL_PVT SQL Statements
12.1.1
-
APPS.AR_DEPOSIT_VAL_PVT SQL Statements
12.2.2
-
VIEW: APPS.IGI_RA_CUSTOMER_TRX_PARTIAL_V
12.2.2
-
VIEW: APPS.IGI_RA_CUSTOMER_TRX_PARTIAL_V
12.1.1
-
VIEW: APPS.PA_DRAFT_INVOICE_LINES_ALL_V
12.2.2
-
VIEW: APPS.ASO_I_TAX_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_TAX_STATUSES_V, object_name:ASO_I_TAX_STATUSES_V, status:VALID,
-
VIEW: APPS.ASO_I_TAX_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ASO.ASO_I_TAX_STATUSES_V, object_name:ASO_I_TAX_STATUSES_V, status:VALID,
-
VIEW: APPS.PA_DRAFT_INVOICE_LINES_ALL_V
12.1.1
-
APPS.AR_MO_CACHE_UTILS SQL Statements
12.1.1
-
APPS.AR_MO_CACHE_UTILS SQL Statements
12.2.2
-
View: PA_DRAFT_INVOICE_LINES_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DRAFT_INVOICE_LINES_ALL_V, object_name:PA_DRAFT_INVOICE_LINES_ALL_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_DRAFT_INVOICE_LINES_ALL_V ,
-
View: PA_DRAFT_INVOICE_LINES_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PA_DRAFT_INVOICE_LINES_ALL_V, object_name:PA_DRAFT_INVOICE_LINES_ALL_V, status:VALID, product: PA - Projects , description: 10SC Only , implementation_dba_data: APPS.PA_DRAFT_INVOICE_LINES_ALL_V ,
-
View: ICX_SO_HEADERS_V
12.1.1
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
View: ICX_SO_HEADERS_V
12.2.2
product: ICX - Oracle iProcurement , description: Order Entry Header View , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.RA_CUSTOMER_TRX_LINES_V
12.1.1
-
VIEW: APPS.RA_CUSTOMER_TRX_LINES_V
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: 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 ,
-
VIEW: APPS.RA_CUSTOMER_TRX_PARTIAL_V
12.2.2
-
VIEW: APPS.RA_CUSTOMER_TRX_PARTIAL_V
12.1.1
-
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 ,
-
View: RA_CUSTOMER_TRX_LINES_V
12.1.1
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 ,
-
View: SO_HEADERS_RMA_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS_RMA_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.RA_CUSTOMER_TRX_PART_CB_V
12.1.1
-
VIEW: APPS.RA_CUSTOMER_TRX_PART_CB_V
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
View: SO_HEADERS_V
12.1.1
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
View: SO_HEADERS_V
12.2.2
product: OE - Order Entry , implementation_dba_data: Not implemented in this database ,
-
12.2.2 FND Design Data
12.2.2
-
View: RA_CUSTOMER_TRX_PARTIAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PARTIAL_V, object_name:RA_CUSTOMER_TRX_PARTIAL_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_PARTIAL_V ,
-
View: RA_CUSTOMER_TRX_PARTIAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PARTIAL_V, object_name:RA_CUSTOMER_TRX_PARTIAL_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_PARTIAL_V ,
-
PACKAGE BODY: APPS.AR_MO_CACHE_UTILS
12.1.1
-
APPS.OE_OE_FORM_HEADER SQL Statements
12.2.2
-
PACKAGE BODY: APPS.AR_MO_CACHE_UTILS
12.2.2
-
View: RA_CUSTOMER_TRX_PART_CB_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PART_CB_V, object_name:RA_CUSTOMER_TRX_PART_CB_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_PART_CB_V ,
-
View: RA_CUSTOMER_TRX_PART_CB_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUSTOMER_TRX_PART_CB_V, object_name:RA_CUSTOMER_TRX_PART_CB_V, status:VALID, product: AR - Receivables , description: (Release 115 Only) , implementation_dba_data: APPS.RA_CUSTOMER_TRX_PART_CB_V ,
-
APPS.OE_OE_FORM_HEADER SQL Statements
12.1.1
-
VIEW: APPS.RA_CUST_TRX_LN_ALL_MRC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUST_TRX_LN_ALL_MRC_V, object_name:RA_CUST_TRX_LN_ALL_MRC_V, status:VALID,
-
VIEW: APPS.RA_CUST_TRX_LN_ALL_MRC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AR.RA_CUST_TRX_LN_ALL_MRC_V, object_name:RA_CUST_TRX_LN_ALL_MRC_V, status:VALID,