Search Results data_value
Overview
APPS.CZ_UITEMPL_RTCOND_BINDSRC_LKV is a reporting and lookup view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments. It belongs to the Oracle ETRM (Enterprise Taxation and Regulatory Management) product family and is owned by the APPS schema. The view functions as a filtered lookup (LK) presentation layer, projecting a restricted subset of lookup value rows used to drive condition and binding source definitions within the user interface template framework.
The "_LKV" suffix denotes a "lookup view," a naming convention Oracle uses for read-only views that expose reference data. This particular object supplies the permissible entries that appear when a runtime condition or object setting must be bound to a source value. Rather than exposing the entire lookup repository, the view deliberately narrows the result set to a single list of values and excludes a specific reserved entry, making it a purpose-built source for user-interface configuration and validation logic.
Underlying Base Objects
The view is defined over a single documented base object: CZ_LOOKUP_VALUES_VL, itself a view in the APPS schema. CZ_LOOKUP_VALUES_VL is the "viewable language" variant of the core lookup values table, meaning it applies language-filtering logic (typically through a _TL or translation-aware join) so that each row is returned in the session language or the source language. Because CZ_UITEMPL_RTCOND_BINDSRC_LKV selects from a _VL view, it inherits that language-resolution behavior and returns values already localized to the caller's environment.
No additional tables or joins are introduced beyond this base view. The relationship is therefore one of simple delegation: the lookup view applies two predicates to the rows of CZ_LOOKUP_VALUES_VL, and all column semantics are inherited unchanged.
Key Columns
- LIST_NAME — The lookup type identifier. For this view the value is always constrained to 'RT_COND_OBJ_SETTINGS', labeling the entries as runtime condition object settings.
- DATA_VALUE — The internal value of each lookup entry, serving as the key used by binding logic. This is the column most commonly searched by users and the primary filter target in ad hoc queries.
- NUMERIC_ID_VALUE — An optional numeric identifier associated with the entry, used where downstream logic requires a numeric rather than textual key.
- VALUE_SEQ — The ordering sequence that governs presentation order of the lookup entries.
- DATA_TYPE_ID — Identifies the data type or class of the lookup value, supporting typed handling of the bound source.
- NULL_VALUE_FLAG — Indicates whether the entry represents a null-value or empty-selection option.
- VALUE_LABEL — The display label shown to users in the UI.
- VALUE_DESCRIPTION and VALUE_NOTES — Longer descriptive and annotative text for the entry.
- LANGUAGE and SOURCE_LANG — The language of the returned row and the original source language, respectively, as supplied by the _VL layer.
Two filters are baked into the view definition and cannot be removed by the caller: LIST_NAME must equal 'RT_COND_OBJ_SETTINGS', and DATA_VALUE must not equal 'OTHER_MODEL_NODE'. The latter exclusion removes a generic catch-all node that is unsuitable for direct binding selection.
Common Use Cases and Queries
The view is typically consumed by ETRM configuration logic and by administrators diagnosing why a particular binding source is or is not available in a template. It is well suited to ad hoc data validation, since the filter guarantees only relevant binding sources are returned.
A basic listing of available binding sources ordered for display:
SELECT DATA_VALUE, VALUE_LABEL, VALUE_SEQ FROM APPS.CZ_UITEMPL_RTCOND_BINDSRC_LKV ORDER BY VALUE_SEQ;
Targeted lookup for a known binding key, reflecting the user search for "data_value":
SELECT LIST_NAME, DATA_VALUE, VALUE_LABEL FROM APPS.CZ_UITEMPL_RTCOND_BINDSRC_LKV WHERE DATA_VALUE = :bind_value;
Type and null-handling audit across the entry set:
SELECT DATA_VALUE, DATA_TYPE_ID, NUMERIC_ID_VALUE, NULL_VALUE_FLAG FROM APPS.CZ_UITEMPL_RTCOND_BINDSRC_LKV ORDER BY VALUE_SEQ;
Because the view is read-only and language-filtered, it is safe for concurrent reporting use and requires no special privileges beyond SELECT on the APPS-owned object.
-
VIEW: APPS.CZ_UITEMPL_RTCOND_BINDSRC_LKV
12.2.2
-
TABLE: CZ.CZ_LOOKUP_VALUES
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_LOOKUP_VALUES, object_name:CZ_LOOKUP_VALUES, status:VALID,
-
APPS.CZ_LOOKUP_VALUES_PKG SQL Statements
12.1.1
-
APPS.CZ_LOOKUP_VALUES_PKG SQL Statements
12.2.2
-
View: CSS_DEF_PROD_SUMMARY_V
12.1.1
product: CSS - Support (obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.OPI_EDW_TRANSFORM_PKG
12.1.1
-
View: CSS_DEF_PROD_SUMMARY_V
12.2.2
product: CSS - Support (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: CZ_UITEMPL_RTCOND_BINDSRC_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UITEMPL_RTCOND_BINDSRC_LKV, object_name:CZ_UITEMPL_RTCOND_BINDSRC_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UITEMPL_RTCOND_BINDSRC_LKV ,
-
TABLE: CZ.CZ_LOOKUP_VALUES_TL
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_LOOKUP_VALUES_TL, object_name:CZ_LOOKUP_VALUES_TL, status:VALID,
-
VIEW: APPS.CZ_UITEMPL_RTCOND_BINDSRC_LKV
12.1.1
-
VIEW: IEC.IEC_O_ALG_DATA#
12.2.2
-
VIEW: CZ.CZ_PS_PROP_VALS#
12.2.2
-
VIEW: CZ.CZ_LOOKUP_VALUES_TL#
12.2.2
-
VIEW: CZ.CZ_LOOKUP_VALUES#
12.2.2
-
PACKAGE: APPS.OPI_EDW_TRANSFORM_PKG
12.1.1
-
View: CZ_UITEMPL_RTCOND_BINDSRC_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UITEMPL_RTCOND_BINDSRC_LKV, object_name:CZ_UITEMPL_RTCOND_BINDSRC_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UITEMPL_RTCOND_BINDSRC_LKV ,
-
TABLE: CZ.CZ_LOOKUP_VALUES
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_LOOKUP_VALUES, object_name:CZ_LOOKUP_VALUES, status:VALID,
-
View: CZ_MODEL_LOGICSTATE_PROPS_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MODEL_LOGICSTATE_PROPS_LKV, object_name:CZ_MODEL_LOGICSTATE_PROPS_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MODEL_LOGICSTATE_PROPS_LKV ,
-
View: CZ_MDLNODE_CPSRC_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MDLNODE_CPSRC_LKV, object_name:CZ_MDLNODE_CPSRC_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MDLNODE_CPSRC_LKV ,
-
View: CZ_UI_MSTTMP_SUPDIS_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_MSTTMP_SUPDIS_LKV, object_name:CZ_UI_MSTTMP_SUPDIS_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UI_MSTTMP_SUPDIS_LKV ,
-
View: CZ_OUTERTEMPLAMN_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_OUTERTEMPLAMN_LKV, object_name:CZ_OUTERTEMPLAMN_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_OUTERTEMPLAMN_LKV ,
-
VIEW: APPS.CZ_UI_MSTTMP_PAG_NOC_LKV
12.1.1
-
View: CZ_MENUITEMTYPES_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MENUITEMTYPES_LKV, object_name:CZ_MENUITEMTYPES_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MENUITEMTYPES_LKV ,
-
View: CZ_SUBTYPERESOURCE_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_SUBTYPERESOURCE_LKV, object_name:CZ_SUBTYPERESOURCE_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_SUBTYPERESOURCE_LKV ,
-
View: CZ_DRILLDOWNTXTYPES_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_DRILLDOWNTXTYPES_LKV, object_name:CZ_DRILLDOWNTXTYPES_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_DRILLDOWNTXTYPES_LKV ,
-
View: CZ_CREATEOPTIONPSNODETY_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CREATEOPTIONPSNODETY_LKV, object_name:CZ_CREATEOPTIONPSNODETY_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_CREATEOPTIONPSNODETY_LKV ,
-
View: CZ_ITEMTYPEOPERATOR_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_ITEMTYPEOPERATOR_LKV, object_name:CZ_ITEMTYPEOPERATOR_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_ITEMTYPEOPERATOR_LKV ,
-
View: CZ_SUBTYPECOMPONENT_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_SUBTYPECOMPONENT_LKV, object_name:CZ_SUBTYPECOMPONENT_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_SUBTYPECOMPONENT_LKV ,
-
View: CZ_CFGEXT_INST_SCOPE_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CFGEXT_INST_SCOPE_LKV, object_name:CZ_CFGEXT_INST_SCOPE_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_CFGEXT_INST_SCOPE_LKV ,
-
View: CZ_EFFECTIVITYTYPE_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EFFECTIVITYTYPE_LKV, object_name:CZ_EFFECTIVITYTYPE_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EFFECTIVITYTYPE_LKV ,
-
View: CZ_ACTIONSESSIONCTRL_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_ACTIONSESSIONCTRL_LKV, object_name:CZ_ACTIONSESSIONCTRL_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_ACTIONSESSIONCTRL_LKV ,
-
View: CZ_IMAGEUSAGECODES_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_IMAGEUSAGECODES_LKV, object_name:CZ_IMAGEUSAGECODES_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_IMAGEUSAGECODES_LKV ,
-
View: CZ_TEXTINPUTCAPPROPS_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_TEXTINPUTCAPPROPS_LKV, object_name:CZ_TEXTINPUTCAPPROPS_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_TEXTINPUTCAPPROPS_LKV ,
-
VIEW: APPS.CZ_UI_MSTTMP_BOMCON_UILAY_LKV
12.1.1
-
VIEW: APPS.CZ_UI_MSTTMP_PAG_DDNCTRL_LKV
12.1.1
-
View: CZ_CFGEXT_ARGS_SPEC_TYPE_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CFGEXT_ARGS_SPEC_TYPE_LKV, object_name:CZ_CFGEXT_ARGS_SPEC_TYPE_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_CFGEXT_ARGS_SPEC_TYPE_LKV ,
-
View: CZ_EXNEXPRTYPE_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_EXNEXPRTYPE_LKV, object_name:CZ_EXNEXPRTYPE_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_EXNEXPRTYPE_LKV ,
-
View: CZ_LAYOUT_UI_STYLE_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_LAYOUT_UI_STYLE_LKV, object_name:CZ_LAYOUT_UI_STYLE_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_LAYOUT_UI_STYLE_LKV ,
-
View: CZ_ACTIONSONMODELNODES_LKV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_ACTIONSONMODELNODES_LKV, object_name:CZ_ACTIONSONMODELNODES_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_ACTIONSONMODELNODES_LKV ,
-
View: CZ_CAPCONFIGSYSPROP_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CAPCONFIGSYSPROP_LKV, object_name:CZ_CAPCONFIGSYSPROP_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_CAPCONFIGSYSPROP_LKV ,
-
View: CZ_REPOSITORYCOPYMODELO_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_REPOSITORYCOPYMODELO_LKV, object_name:CZ_REPOSITORYCOPYMODELO_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_REPOSITORYCOPYMODELO_LKV ,
-
View: CZ_UI_ITEMSELECT_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_UI_ITEMSELECT_TYPES_V, object_name:CZ_UI_ITEMSELECT_TYPES_V, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_UI_ITEMSELECT_TYPES_V ,
-
View: CZ_PSNODERELATION_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODERELATION_LKV, object_name:CZ_PSNODERELATION_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODERELATION_LKV ,
-
View: CZ_CFGEXT_EVENT_SCOPE_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_CFGEXT_EVENT_SCOPE_LKV, object_name:CZ_CFGEXT_EVENT_SCOPE_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_CFGEXT_EVENT_SCOPE_LKV ,
-
View: CZ_PSNODETYPE_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_PSNODETYPE_LKV, object_name:CZ_PSNODETYPE_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_PSNODETYPE_LKV ,
-
View: CZ_REPOSITORYCOPYDESTIN_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_REPOSITORYCOPYDESTIN_LKV, object_name:CZ_REPOSITORYCOPYDESTIN_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_REPOSITORYCOPYDESTIN_LKV ,
-
View: CZ_MENUTYPES_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_MENUTYPES_LKV, object_name:CZ_MENUTYPES_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_MENUTYPES_LKV ,
-
View: CZ_TEXTINPUTCAPPROPS_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_TEXTINPUTCAPPROPS_LKV, object_name:CZ_TEXTINPUTCAPPROPS_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_TEXTINPUTCAPPROPS_LKV ,
-
View: CZ_VALIDRESULTFORCOMPON_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_VALIDRESULTFORCOMPON_LKV, object_name:CZ_VALIDRESULTFORCOMPON_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_VALIDRESULTFORCOMPON_LKV ,
-
View: CZ_RPOBJECTTYPES_LKV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CZ.CZ_RPOBJECTTYPES_LKV, object_name:CZ_RPOBJECTTYPES_LKV, status:VALID, product: CZ - Configurator , implementation_dba_data: APPS.CZ_RPOBJECTTYPES_LKV ,