Search Results fnd_lookup_values_vl
Overview
XNC_ITEM_ACTION_PARS_VL is a language (VL) view belonging to the XNC – Sales for Communications product family, a module now marked obsolete in Oracle E-Business Suite. As documented, the view is "the join of the base table and translation table with all the columns from both table." In EBS terminology, a "_VL" view typically denotes a view that combines a "_B" (base) table with its corresponding "_TL" (translation) table, filtering the translation rows to the session language.
In practice, XNC_ITEM_ACTION_PARS_VL exposes the definition of item action parameters used to configure parameterized item actions within the XNC schema. Each row represents an individual parameter that can be attached to an item action, along with its display properties, default value, source configuration, and lookup-derived meanings. The view is not a transactional or reporting table in the usual sense; it acts as a reference and configuration data source that supports both functional page rendering and ad hoc queries that need human-readable (translated) descriptions rather than raw lookup codes.
Its role in reporting and integration is largely master-data oriented. It provides descriptive labels for lookup codes (such as parameter names, display flags, source types), enabling downstream reports, interfaces, and UI layers to present meaningful text instead of coded values. Because the view resolves lookups against FND_LOOKUP_VALUES_VL, it is a convenient single source for joining parameter metadata with its associated lookup meanings.
Underlying Base Objects
The view is defined over four distinct source objects (with translation further resolving language-specific descriptions):
- XNC_ITEM_ACTION_PARS_B — the base table holding item action parameter records and their attributes.
- XNC_ITEM_ACTION_PARS_TL — the translation table providing parameter descriptions per language, joined on ITEM_ACTION_PARAM_ID and filtered by T.LANGUAGE = USERENV('LANG').
- FND_LOOKUP_VALUES_VL — the standard Oracle lookups view, joined four times (aliases D, G, E, F) to derive meanings for parameter name, display flag, source type, and source name.
The documentation notes that no referenced base objects are recorded in the ETRM metadata, and the view is "not implemented in this database," meaning the object is not physically present in the documented environment. Where it exists, the join conditions rely on lookup types CSI_EXTEND_ATTRIB_POOL, XNC_IA_PARS_DISPLAY, and XNC_IA_PARS_SOURCE_TYPE.
Key Columns
- ITEM_ACTION_PARAM_ID / ITEM_ACTION_ID — primary identifiers linking the parameter to its parent item action.
- PARAMETER_NAME — internal parameter name, resolved against lookup type CSI_EXTEND_ATTRIB_POOL.
- PARAMETER_MEANING / PARAMETER_DESCRIPTION — translated meaning and description from the lookup and "_TL" table.
- MANDATORY_FLAG, DISPLAY_FLAG, SEQUENCE — control whether the parameter is required, visible, and its ordering. DISPLAY_FLAG maps to lookup XNC_IA_PARS_DISPLAY (DISPLAY_MEANING).
- DEFAULT_VALUE — the default value presented to users.
- SOURCE_TYPE_CODE / SOURCE_TYPE_MEANING — coded and descriptive information about the parameter's value source, resolved against XNC_IA_PARS_SOURCE_TYPE. SOURCE_NAME and SOURCE_MEANING give the specific source detail, using a DECODE to return a blank string when no meaning exists.
- INSTALL_BASE_FLAG, SUBSCRIPTION_FLAG, USER_INSTRUCTION, PARAMETER_SYNCHRONOUS_FLAG — behavioral indicators controlling install-base scope, subscription applicability, user guidance, and synchronous processing.
- START_DATE_ACTIVE / END_DATE_ACTIVE — effective dating for the parameter definition.
- ATTRIBUTE1–ATTRIBUTE15, CONTEXT — the standard EBS descriptive flexfield (DFF) columns.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical usage centers on configuration reporting and interface validation. Analysts query the view to list parameters for a given item action, to confirm which parameters are mandatory or displayed, or to reconcile lookup meanings. The presence of the CSI_EXTEND_ATTRIB_POOL lookup join means the view is frequently referenced in scenarios involving extend-attribute pool parameters. A sample query retrieving parameters for a specific action is shown below.
- List all parameters for an item action:
SELECT ITEM_ACTION_PARAM_ID, PARAMETER_NAME, PARAMETER_MEANING, MANDATORY_FLAG, DEFAULT_VALUE, DISPLAY_MEANING, SOURCE_TYPE_MEANING, SEQUENCE FROM XNC_ITEM_ACTION_PARS_VL WHERE ITEM_ACTION_ID = :action_id ORDER BY SEQUENCE; - Find mandatory parameters only:
SELECT PARAMETER_NAME, PARAMETER_MEANING, DEFAULT_VALUE FROM XNC_ITEM_ACTION_PARS_VL WHERE MANDATORY_FLAG = 'Y' AND START_DATE_ACTIVE <= SYSDATE; - Resolve source configuration details:
SELECT PARAMETER_NAME, SOURCE_TYPE_MEANING, SOURCE_NAME, SOURCE_MEANING FROM XNC_ITEM_ACTION_PARS_VL WHERE SOURCE_TYPE_CODE IS NOT NULL;
Because translation is filtered on the session language, queries return labels in the runtime language of the connecting user, making the view suitable for both user-facing reports and localized interface integrations.
-
View: XNC_ITEM_ACTION_PARS_VL
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view is the join of the base table and translation table with all the columns from both table. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ITEM_ACTION_PARS_VL
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view is the join of the base table and translation table with all the columns from both table. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_QUOTE_PARAMS_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_PARAMS_V retrieves parameter definition information for an item on a quote line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_QUOTE_PARAMS_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_QUOTE_PARAMS_V retrieves parameter definition information for an item on a quote line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ITEM_TYPE_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_ITEM_TYPE_V retrieves the Communications item type and other item details for an Inventory Item and Organization. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ITEM_TYPE_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_ITEM_TYPE_V retrieves the Communications item type and other item details for an Inventory Item and Organization. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_PROV_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_PROV_V retrieves provisioning data applied to an order line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_PROV_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_PROV_V retrieves provisioning data applied to an order line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORDER_PROV_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view gives parameters name and value for a given Order Line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORDER_PROV_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view gives parameters name and value for a given Order Line. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ITEM_ACTIONS_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: This view is intended to provide the various action, sub action , and resulet prcedures related to a Product , which is the join of MTL_SYSTEM_ITEMS_KFV and XNC_ITEM_ACTIONS_VL , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ITEM_ACTIONS_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: This view is intended to provide the various action, sub action , and resulet prcedures related to a Product , which is the join of MTL_SYSTEM_ITEMS_KFV and XNC_ITEM_ACTIONS_VL , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_IB_ACCT_NAV
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Installed Base tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_IB_ACCT_NAV
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Installed Base tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_IB_ACCT_ACT_NAV
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Installed Base tree , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORD_IB_ACCT_ACT_NAV
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: View used to define the attribute fields for an AK object for construction of the Installed Base tree , implementation_dba_data: Not implemented in this database ,