Search Results intended_use
Overview
The APPS.ZX_FC_INTENDED_USE_V view is a reporting and integration object within the Oracle E-Business Suite (EBS) tax and configuration framework, spanning releases 12.1.1 and 12.2.2. It exposes the set of valid "Intended Use" classifications that the EBS tax engine (E-Business Tax / ZX schema) recognizes when determining tax applicability and tax registration rules for goods and services. Intended Use is a first-party classification type consumed by tax configuration setups, notably in the context of country-specific tax rules and product fiscal classifications.
The view consolidates two distinct sources of Intended Use codes into a single, uniform result set: inventory category-based definitions and standalone classification codes. This UNION structure allows downstream consumers — tax setup forms, validation logic, and custom reporting — to query one object rather than resolving both the EBS Inventory category hierarchy and the tax classification code tables separately. Because the object is owned by APPS and defined as a view, it is read-only and carries no independent storage.
The view is defined with a single, consistent four-column projection (CODE, NAME, COUNTRY_CODE, EFFECTIVE_FROM, EFFECTIVE_TO), which makes it suitable for LOV (List of Values) population and lookup validation.
Underlying Base Objects
The view is defined over six documented base objects, joined across the Inventory category and E-Business Tax schemas:
- ZX_FC_TYPES_B (synonym) — Supplies the fiscal classification type definition. The view filters where
CLASSIFICATION_TYPE_CODE = 'INTENDED_USE', and joinsOWNER_ID_NUMto the category set'sCATEGORY_SET_ID. - MTL_CATEGORY_SETS_B (synonym) — Provides
CATEGORY_SET_IDandSTRUCTURE_ID, linking the classification type to a specific Inventory category structure. - FND_ID_FLEX_STRUCTURES_VL (view) — Resolves the key flexfield structure metadata; the view filters on
APPLICATION_ID = 401andID_FLEX_CODE = 'MCAT'(the Item Categories flexfield). It also suppliesCONCATENATED_SEGMENT_DELIMITER, used to strip delimiters from category codes. - MTL_CATEGORIES_B_KFV (view) — The key flexfield "concatenated segments" view of category definitions; joined on
STRUCTURE_IDand restricted toENABLED_FLAG = 'Y'. - MTL_CATEGORIES_TL (synonym) — The translated category descriptions, joined on
CATEGORY_IDand restricted to the session language viaUSERENV('LANG'). - ZX_FC_CODES_VL (view) — Supplies the second UNION branch of standalone classification codes filtered to
CLASSIFICATION_TYPE_CODE = 'INTENDED_USE', and is the sole source of theCOUNTRY_CODEvalue.
The first branch returns Intended Use values derived from Inventory categories; the second returns Intended Use values defined directly as tax fiscal classification codes. The UNION combines them into one master lookup.
Key Columns
- CODE — The Intended Use identifier. In the category branch this is the concatenated category segments with the flexfield delimiter removed (via
REPLACE); in the code branch it isCLASSIFICATION_CODE. - NAME — The descriptive name. Category-branch values come from
MTL_CATEGORIES_TL.DESCRIPTION(language-sensitive); code-branch values come fromCLASSIFICATION_NAME. - COUNTRY_CODE — The country to which the Intended Use applies. It is always
NULLfor category-based entries and populated only fromZX_FC_CODES_VLfor standalone codes. - EFFECTIVE_FROM — Start date of validity; sourced from
ZX_FC_TYPES_B.EFFECTIVE_FROMorZX_FC_CODES_VL.EFFECTIVE_FROM. - EFFECTIVE_TO — End date of validity; category-branch value is
MTL_CATEGORIES_B_KFV.END_DATE_ACTIVE, code-branch value isZX_FC_CODES_VL.EFFECTIVE_TO. A NULL generally indicates no expiration.
Common Use Cases and Queries
Typical usage includes populating Intended Use selection lists, validating user-entered values against enabled classifications, and building tax setup reconciliations.
- Retrieve all enabled Intended Use codes with names:
SELECT code, name, effective_from, effective_to FROM apps.zx_fc_intended_use_v ORDER BY code;
- Restrict to currently effective entries:
SELECT code, name, country_code FROM apps.zx_fc_intended_use_v WHERE TRUNC(SYSDATE) BETWEEN NVL(effective_from, TRUNC(SYSDATE)) AND NVL(effective_to, TRUNC(SYSDATE)); - Isolate country-specific (non-category) definitions:
SELECT code, name, country_code FROM apps.zx_fc_intended_use_v WHERE country_code IS NOT NULL;
Because the view strips category delimiters and applies language filtering, it returns values in the format expected by tax classification fields, making it the preferred lookup object for Intended Use validation in both 12.1.1 and 12.2.2 environments.
-
VIEW: APPS.ZX_FC_INTENDED_USE_V
12.1.1
-
VIEW: APPS.ZX_FC_INTENDED_USE_V
12.2.2
-
VIEW: INL.INL_CHARGE_LINES#
12.2.2
-
View: ZX_FC_INTENDED_USE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_INTENDED_USE_V, object_name:ZX_FC_INTENDED_USE_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_FC_INTENDED_USE_V ,
-
VIEW: INL.INL_SHIP_LINES_ALL#
12.2.2
-
View: ZX_FC_INTENDED_USE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_INTENDED_USE_V, object_name:ZX_FC_INTENDED_USE_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_FC_INTENDED_USE_V ,
-
VIEW: APPS.INL_EBTAX_LINES_V
12.2.2
-
View: INL_EBTAX_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_EBTAX_LINES_V, object_name:INL_EBTAX_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows EBTAX Line information. , implementation_dba_data: APPS.INL_EBTAX_LINES_V ,
-
VIEW: APPS.INL_EBTAX_LINES_V
12.1.1
-
View: INL_EBTAX_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_EBTAX_LINES_V, object_name:INL_EBTAX_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows EBTAX Line information. , implementation_dba_data: APPS.INL_EBTAX_LINES_V ,
-
VIEW: INL.INL_SHIP_LINES_INT#
12.2.2
-
View: INL_ADJ_CHARGE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_CHARGE_LINES_V, object_name:INL_ADJ_CHARGE_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows adjusted information on Charge Lines. , implementation_dba_data: APPS.INL_ADJ_CHARGE_LINES_V ,
-
View: INL_ADJ_SHIP_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_SHIP_LINES_V, object_name:INL_ADJ_SHIP_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows adjusted information on Shipment Lines. , implementation_dba_data: APPS.INL_ADJ_SHIP_LINES_V ,
-
View: INL_ADJ_CHARGE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_CHARGE_LINES_V, object_name:INL_ADJ_CHARGE_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows adjusted information on Charge Lines. , implementation_dba_data: APPS.INL_ADJ_CHARGE_LINES_V ,
-
VIEW: APPS.INL_ADJ_CHARGE_LINES_V
12.2.2
-
VIEW: APPS.INL_ADJ_CHARGE_LINES_V
12.1.1
-
VIEW: APPS.INL_ADJ_SHIP_LINES_V
12.2.2
-
VIEW: INL.INL_CHARGE_LINES#
12.2.2
owner:INL, object_type:VIEW, object_name:INL_CHARGE_LINES#, status:VALID,
-
View: INL_ADJ_SHIP_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_SHIP_LINES_V, object_name:INL_ADJ_SHIP_LINES_V, status:VALID, product: INL - Oracle Landed Cost Management , implementation_dba_data: APPS.INL_ADJ_SHIP_LINES_V ,
-
VIEW: AP.AP_SELF_ASSESSED_TAX_DIST_ALL#
12.2.2
-
VIEW: ZX.ZX_REC_NREC_DIST#
12.2.2
-
VIEW: APPS.ZX_REC_NREC_DIST_QUOTE_V
12.1.1
-
VIEW: APPS.ZX_REC_NREC_DIST_QUOTE_V
12.2.2
-
TYPE: APPS.POR_TAX_OBJECT_TYPE
12.2.2
owner:APPS, object_type:TYPE, object_name:POR_TAX_OBJECT_TYPE, status:VALID,
-
TYPE: APPS.POR_TAX_OBJECT_TYPE
12.1.1
owner:APPS, object_type:TYPE, object_name:POR_TAX_OBJECT_TYPE, status:VALID,
-
VIEW: APPS.INL_ADJ_SHIP_LINES_V
12.1.1
-
TYPE: APPS.POR_TAX_DIST_OBJECT_TYPE
12.2.2
owner:APPS, object_type:TYPE, object_name:POR_TAX_DIST_OBJECT_TYPE, status:VALID,
-
TYPE: APPS.POR_TAX_DIST_OBJECT_TYPE
12.1.1
owner:APPS, object_type:TYPE, object_name:POR_TAX_DIST_OBJECT_TYPE, status:VALID,
-
VIEW: APPS.INL_ADJ_CHARGE_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_CHARGE_LINES_V, object_name:INL_ADJ_CHARGE_LINES_V, status:VALID,
-
VIEW: APPS.INL_ADJ_SHIP_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_SHIP_LINES_V, object_name:INL_ADJ_SHIP_LINES_V, status:VALID,
-
VIEW: INL.INL_SHIP_LINES_ALL#
12.2.2
owner:INL, object_type:VIEW, object_name:INL_SHIP_LINES_ALL#, status:VALID,
-
VIEW: APPS.INL_EBTAX_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_EBTAX_LINES_V, object_name:INL_EBTAX_LINES_V, status:VALID,
-
View: ZX_REC_NREC_DIST_QUOTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_REC_NREC_DIST_QUOTE_V, object_name:ZX_REC_NREC_DIST_QUOTE_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_REC_NREC_DIST_QUOTE_V ,
-
View: ZX_REC_NREC_DIST_QUOTE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_REC_NREC_DIST_QUOTE_V, object_name:ZX_REC_NREC_DIST_QUOTE_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_REC_NREC_DIST_QUOTE_V ,
-
VIEW: AP.AP_INVOICE_DISTRIBUTIONS_ALL#
12.2.2
-
VIEW: AP.AP_INVOICE_DISTS_ARCH#
12.2.2
-
VIEW: APPS.INL_EBTAX_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_EBTAX_LINES_V, object_name:INL_EBTAX_LINES_V, status:VALID,
-
VIEW: AP.AP_INV_DISTS_UPDATE#
12.2.2
-
View: INL_CHARGE_OVERALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_CHARGE_OVERALL_V, object_name:INL_CHARGE_OVERALL_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows overall information on Charges. , implementation_dba_data: APPS.INL_CHARGE_OVERALL_V ,
-
VIEW: APPS.INL_CHARGE_OVERALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_CHARGE_OVERALL_V, object_name:INL_CHARGE_OVERALL_V, status:VALID,
-
VIEW: APPS.INL_ADJ_CHARGE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_ADJ_CHARGE_LINES_V, object_name:INL_ADJ_CHARGE_LINES_V, status:VALID,
-
View: INL_CHARGE_OVERALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_CHARGE_OVERALL_V, object_name:INL_CHARGE_OVERALL_V, status:VALID, product: INL - Oracle Landed Cost Management , description: This view shows overall information on Charges. , implementation_dba_data: APPS.INL_CHARGE_OVERALL_V ,
-
TABLE: INL.INL_CHARGE_LINES
12.1.1
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_CHARGE_LINES, object_name:INL_CHARGE_LINES, status:VALID,
-
VIEW: INL.INL_SHIP_LINES_INT#
12.2.2
owner:INL, object_type:VIEW, object_name:INL_SHIP_LINES_INT#, status:VALID,
-
VIEW: APPS.INL_CHARGE_OVERALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INL.INL_CHARGE_OVERALL_V, object_name:INL_CHARGE_OVERALL_V, status:VALID,
-
TABLE: INL.INL_CHARGE_LINES
12.2.2
owner:INL, object_type:TABLE, fnd_design_data:INL.INL_CHARGE_LINES, object_name:INL_CHARGE_LINES, status:VALID,
-
TABLE: AP.AP_PPA_INVOICE_DISTS_GT1
12.2.2
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_PPA_INVOICE_DISTS_GT1, object_name:AP_PPA_INVOICE_DISTS_GT1, status:VALID,
-
TABLE: AP.AP_PPA_INVOICE_DISTS_GT
12.1.1
owner:AP, object_type:TABLE, fnd_design_data:SQLAP.AP_PPA_INVOICE_DISTS_GT, object_name:AP_PPA_INVOICE_DISTS_GT, status:VALID,
-
VIEW: APPS.ZX_REC_NREC_DIST_QUOTE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_REC_NREC_DIST_QUOTE_V, object_name:ZX_REC_NREC_DIST_QUOTE_V, status:VALID,
-
VIEW: APPS.ZX_REC_NREC_DIST_QUOTE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_REC_NREC_DIST_QUOTE_V, object_name:ZX_REC_NREC_DIST_QUOTE_V, status:VALID,