Search Results zx_fc_codes_vl
Overview
The ZX_FC_CODES_VL view is a translation-enabled (VL, or "view language") database object owned by the APPS schema in Oracle E-Business Suite. It is catalogued under the FND — Application Object Library product/module within ETRM and carries a VALID status in both Oracle EBS 12.1.1 and 12.2.2. The view presents fiscal classification code definitions used by the E-Business Tax (EBTax) and related tax determination infrastructure, exposing the descriptive classification name alongside the operational classification attributes.
Because it is a VL view — a multilingual, translation-enabled view — it collapses the base (business) table and its translation table into a single logical source. The WHERE clause filters the translation table to only the row matching the session language, so consumers of the view always see the classification name in the language of the current session rather than all installed languages. This makes the view suitable for user-facing reports, list-of-values (LOV) definitions, and integration extracts where a single, session-appropriate name is required.
Underlying Base Objects
The view is defined over two documented base objects, both exposed to APPS through synonyms:
- ZX_FC_CODES_B — the base (non-translated) table holding the operational fiscal classification code data, including identifiers, codes, types, dates, and audit columns. It supplies the majority of the columns in the view.
- ZX_FC_CODES_TL — the translation table holding the language-specific classification name, keyed by CLASSIFICATION_ID and LANGUAGE.
The join is performed on CLASSIFICATION_ID, with the translation table restricted by T.LANGUAGE = USERENV('LANG'). The view also exposes B.ROWID as ROW_ID, which is a common EBS VL pattern that supports row identification for certain framework operations.
Key Columns
The column list is drawn primarily from ZX_FC_CODES_B, supplemented by one column from ZX_FC_CODES_TL:
- ROW_ID — the ROWID of the base table row, exposed for row-level identification.
- CLASSIFICATION_ID — the primary identifier of the classification code and the join key to the translation table.
- CLASSIFICATION_CODE — the code value used in tax classification and determination logic.
- CLASSIFICATION_TYPE_CODE — the category or type to which the code belongs.
- PARENT_CLASSIFICATION_ID / PARENT_CLASSIFICATION_CODE — hierarchical parent references for grouped or nested classifications.
- COUNTRY_CODE — the country to which the classification applies.
- EFFECTIVE_FROM / EFFECTIVE_TO — the date range during which the code is active; critical for date-effective lookups.
- COMPILED_FLAG — indicates the compiled state of the classification definition.
- CLASSIFICATION_NAME — the translated, session-language name from ZX_FC_CODES_TL.
- ATTRIBUTE1–ATTRIBUTE15 / ATTRIBUTE_CATEGORY — the standard EBS descriptive flexfield (DFF) columns.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, OBJECT_VERSION_NUMBER, REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_LOGIN_ID, RECORD_TYPE_CODE.
Common Use Cases and Queries
Typical scenarios include building fiscal classification LOVs, generating tax setup reports, and extracting classification definitions for integration or reconciliation. Because the view provides the translated name, it simplifies reporting that would otherwise require an explicit join to the TL table.
Example — list active classifications with names:
SELECT classification_id, classification_code, classification_name, classification_type_code, country_code, effective_from, effective_to FROM zx_fc_codes_vl WHERE SYSDATE BETWEEN NVL(effective_from, SYSDATE) AND NVL(effective_to, SYSDATE + 1) ORDER BY classification_name;
Example — resolve a code to its name and parent:
SELECT classification_code, classification_name, parent_classification_code, classification_type_code FROM zx_fc_codes_vl WHERE classification_code = :code;
When joins to translation-specific logic are required regardless of session language, query ZX_FC_CODES_B and ZX_FC_CODES_TL directly; for session-language reporting and LOVs, ZX_FC_CODES_VL is the preferred access path. Restricting by classification_type_code and country_code typically improves selectivity on large extracts.
-
View: ZX_FC_CODES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_CODES_VL, object_name:ZX_FC_CODES_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_FC_CODES_VL ,
-
View: ZX_FC_CODES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_CODES_VL, object_name:ZX_FC_CODES_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_FC_CODES_VL ,
-
VIEW: APPS.ZX_FC_USER_DEFINED_V
12.1.1
-
VIEW: APPS.ZX_FC_USER_DEFINED_V
12.2.2
-
VIEW: APPS.ZX_FC_INTENDED_USE_V
12.2.2
-
VIEW: APPS.ZX_FC_INTENDED_USE_V
12.1.1
-
View: ZX_FC_USER_DEFINED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_USER_DEFINED_V, object_name:ZX_FC_USER_DEFINED_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_FC_USER_DEFINED_V ,
-
View: ZX_FC_USER_DEFINED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_USER_DEFINED_V, object_name:ZX_FC_USER_DEFINED_V, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.ZX_FC_USER_DEFINED_V ,
-
SYNONYM: APPS.ZX_FC_CODES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ZX_FC_CODES_B, status:VALID,
-
SYNONYM: APPS.ZX_FC_CODES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ZX_FC_CODES_TL, status:VALID,
-
SYNONYM: APPS.ZX_FC_CODES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ZX_FC_CODES_TL, status:VALID,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
SYNONYM: APPS.ZX_FC_CODES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ZX_FC_CODES_B, status:VALID,
-
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: APPS.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,
-
VIEW: APPS.ZX_FC_USER_DEFINED_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_USER_DEFINED_V, object_name:ZX_FC_USER_DEFINED_V, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.ZX_FC_USER_DEFINED_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_USER_DEFINED_V, object_name:ZX_FC_USER_DEFINED_V, status:VALID,
-
VIEW: APPS.ZX_FC_CODES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_CODES_VL, object_name:ZX_FC_CODES_VL, status:VALID,
-
VIEW: APPS.ZX_FC_CODES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.ZX_FC_CODES_VL, object_name:ZX_FC_CODES_VL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
12.2.2 DBA Data
12.2.2
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,