Search Results csi_counter_properties_vl
Overview
CSI_COUNTER_PROPERTIES_VL is a language-enabled (VL) view owned by the APPS schema within the Oracle E-Business Suite Install Base module (CSI). It exposes the user-facing attributes of counter properties defined against counters in the enterprise asset and install base model. A counter property represents a measurable or descriptive attribute associated with a counter — for example, a name, a data type, a default value, a unit of measure, and a valid operating range. The view joins the base table, which stores the language-independent property definition, to the translation table, which stores the language-dependent name and description. Filtering on the current session language ensures that consumers see only the textual attributes relevant to their locale.
Because it is a VL view, CSI_COUNTER_PROPERTIES_VL is the appropriate object for reports, concurrent programs, Discoverer workbooks, and integration extracts that must present counter property names and descriptions in the runtime language. Direct queries against the underlying _B table would return no translatable text, and queries against the _TL table alone would lack the operational attributes. This view therefore serves as the canonical read interface for counter property metadata in APPS.
Underlying Base Objects
The view is defined over two documented base objects, referenced through synonym definitions:
- CSI_COUNTER_PROPERTIES_B — the base (language-independent) table holding the counter property identifier, counter reference, data type, nullability, default, minimum and maximum values, unit of measure, effective dates, object version number, WHO audit columns, descriptive flexfield attributes, migration flag, LOV type, security group, and the source counter property template identifier.
- CSI_COUNTER_PROPERTIES_TL — the translation table supplying the NAME and DESCRIPTION columns keyed by COUNTER_PROPERTY_ID and LANGUAGE.
The join predicate links COUNTER_PROPERTY_ID across both tables and restricts rows to CCPT.LANGUAGE = USERENV('LANG'), the session language derived from the user environment. In Oracle EBS 12.1.1 and 12.2.2 the view resides in the APPS schema and is reported as VALID.
Key Columns
- COUNTER_PROPERTY_ID — primary identifier of the counter property; the join key between the base and translation tables.
- NAME / DESCRIPTION — translated textual attributes sourced from the
_TLtable. - COUNTER_ID — the counter to which the property belongs.
- PROPERTY_DATA_TYPE — the datatype of the property value (for example character or numeric).
- IS_NULLABLE — indicates whether a value is mandatory.
- DEFAULT_VALUE, MINIMUM_VALUE, MAXIMUM_VALUE — default and permissible bounds for the property.
- UOM_CODE — unit of measure associated with the property.
- START_DATE_ACTIVE / END_DATE_ACTIVE — effective dating for the property definition.
- OBJECT_VERSION_NUMBER — optimistic locking column used by the application framework.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 — descriptive flexfield segments.
- MIGRATED_FLAG, PROPERTY_LOV_TYPE, SECURITY_GROUP_ID, CREATED_FROM_CTR_PROP_TMPL_ID — migration status, list-of-values classification, multi-org security grouping, and the template from which the property was created.
- WHO columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical uses include reporting counter property definitions by counter or counter template, validating property configuration against data type and range constraints, and extracting property metadata for integrations with condition monitoring or telemetry systems. The following query lists all active properties for a given counter:
SELECT counter_property_id, name, description, property_data_type,
default_value, minimum_value, maximum_value, uom_code
FROM apps.csi_counter_properties_vl
WHERE counter_id = :p_counter_id
AND TRUNC(SYSDATE) BETWEEN start_date_active AND NVL(end_date_active, TRUNC(SYSDATE));
A second common pattern inspects mandatory properties missing a default:
SELECT name, property_data_type, is_nullable
FROM apps.csi_counter_properties_vl
WHERE is_nullable = 'N' AND default_value IS NULL;
Because the view applies the USERENV('LANG') predicate internally, callers should not add their own language filters; doing so risks conflicting with the seeded translation row. Joining to CSI_COUNTERS_B on COUNTER_ID provides counter context when the report requires both counter and property detail.
-
View: CSI_COUNTER_PROPERTIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_VL, object_name:CSI_COUNTER_PROPERTIES_VL, status:VALID, product: CSI - Install Base , description: Counter instance property view language , implementation_dba_data: APPS.CSI_COUNTER_PROPERTIES_VL ,
-
View: CSI_COUNTER_PROPERTIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_VL, object_name:CSI_COUNTER_PROPERTIES_VL, status:VALID, product: CSI - Install Base , description: Counter instance property view language , implementation_dba_data: APPS.CSI_COUNTER_PROPERTIES_VL ,
-
VIEW: APPS.CSI_COUNTER_DER_FILTERS_V
12.1.1
-
VIEW: APPS.CSI_COUNTER_DER_FILTERS_V
12.2.2
-
VIEW: APPS.CSI_CTR_PROPERTY_READINGS_V
12.1.1
-
VIEW: APPS.CSI_CTR_PROPERTY_READINGS_V
12.2.2
-
SYNONYM: APPS.CSI_COUNTER_PROPERTIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_COUNTER_PROPERTIES_TL, status:VALID,
-
VIEW: APPS.CSI_COUNTER_PROPERTIES_V
12.2.2
-
VIEW: APPS.CSI_COUNTER_PROPERTIES_V
12.1.1
-
SYNONYM: APPS.CSI_COUNTER_PROPERTIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_COUNTER_PROPERTIES_TL, status:VALID,
-
VIEW: APPS.CSI_CTR_PROPERTIES_BC_V
12.2.2
-
SYNONYM: APPS.CSI_COUNTER_PROPERTIES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_COUNTER_PROPERTIES_B, status:VALID,
-
VIEW: APPS.CSI_CTR_PROPERTIES_BC_V
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.CSI_COUNTER_PROPERTIES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_COUNTER_PROPERTIES_B, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CSI_COUNTERS_V
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.CSI_COUNTER_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_COUNTER_PVT, status:VALID,
-
View: CSI_COUNTER_DER_FILTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_DER_FILTERS_V, object_name:CSI_COUNTER_DER_FILTERS_V, status:VALID, product: CSI - Install Base , description: Counter derived filters view , implementation_dba_data: APPS.CSI_COUNTER_DER_FILTERS_V ,
-
View: CSI_COUNTER_DER_FILTERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_DER_FILTERS_V, object_name:CSI_COUNTER_DER_FILTERS_V, status:VALID, product: CSI - Install Base , description: Counter derived filters view , implementation_dba_data: APPS.CSI_COUNTER_DER_FILTERS_V ,
-
View: CSI_CTR_PROPERTY_READINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTY_READINGS_V, object_name:CSI_CTR_PROPERTY_READINGS_V, status:VALID, product: CSI - Install Base , description: Counter property readings view , implementation_dba_data: APPS.CSI_CTR_PROPERTY_READINGS_V ,
-
VIEW: APPS.CSI_COUNTERS_V
12.2.2
-
PACKAGE BODY: APPS.CSI_COUNTER_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_COUNTER_PVT, status:VALID,
-
View: CSI_CTR_PROPERTY_READINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTY_READINGS_V, object_name:CSI_CTR_PROPERTY_READINGS_V, status:VALID, product: CSI - Install Base , description: Counter property readings view , implementation_dba_data: APPS.CSI_CTR_PROPERTY_READINGS_V ,
-
View: CSI_COUNTER_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_V, object_name:CSI_COUNTER_PROPERTIES_V, status:VALID, product: CSI - Install Base , description: Counter instance property view , implementation_dba_data: APPS.CSI_COUNTER_PROPERTIES_V ,
-
View: CSI_COUNTER_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_V, object_name:CSI_COUNTER_PROPERTIES_V, status:VALID, product: CSI - Install Base , description: Counter instance property view , implementation_dba_data: APPS.CSI_COUNTER_PROPERTIES_V ,
-
View: CSI_CTR_PROPERTIES_BC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTIES_BC_V, object_name:CSI_CTR_PROPERTIES_BC_V, status:VALID, product: CSI - Install Base , description: Backward compatible views for CS_COUNTER_PROPERTIES , implementation_dba_data: APPS.CSI_CTR_PROPERTIES_BC_V ,
-
View: CSI_CTR_PROPERTIES_BC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTIES_BC_V, object_name:CSI_CTR_PROPERTIES_BC_V, status:VALID, product: CSI - Install Base , description: Backward compatible views for CS_COUNTER_PROPERTIES , implementation_dba_data: APPS.CSI_CTR_PROPERTIES_BC_V ,
-
View: CSI_COUNTERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTERS_V, object_name:CSI_COUNTERS_V, status:VALID, product: CSI - Install Base , description: Counter instance view , implementation_dba_data: APPS.CSI_COUNTERS_V ,
-
View: CSI_COUNTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTERS_V, object_name:CSI_COUNTERS_V, status:VALID, product: CSI - Install Base , description: Counter instance view , implementation_dba_data: APPS.CSI_COUNTERS_V ,
-
VIEW: APPS.CSI_COUNTER_DER_FILTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_DER_FILTERS_V, object_name:CSI_COUNTER_DER_FILTERS_V, status:VALID,
-
VIEW: APPS.CSI_COUNTER_PROPERTIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_VL, object_name:CSI_COUNTER_PROPERTIES_VL, status:VALID,
-
VIEW: APPS.CSI_COUNTER_PROPERTIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_V, object_name:CSI_COUNTER_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CSI_CTR_PROPERTIES_BC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTIES_BC_V, object_name:CSI_CTR_PROPERTIES_BC_V, status:VALID,
-
VIEW: APPS.CSI_CTR_PROPERTIES_BC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTIES_BC_V, object_name:CSI_CTR_PROPERTIES_BC_V, status:VALID,
-
VIEW: APPS.CSI_COUNTER_DER_FILTERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_DER_FILTERS_V, object_name:CSI_COUNTER_DER_FILTERS_V, status:VALID,
-
VIEW: APPS.CSI_COUNTER_PROPERTIES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_VL, object_name:CSI_COUNTER_PROPERTIES_VL, status:VALID,
-
VIEW: APPS.CSI_CTR_PROPERTY_READINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTY_READINGS_V, object_name:CSI_CTR_PROPERTY_READINGS_V, status:VALID,
-
VIEW: APPS.CSI_COUNTER_PROPERTIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_V, object_name:CSI_COUNTER_PROPERTIES_V, status:VALID,
-
VIEW: APPS.CSI_CTR_PROPERTY_READINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTY_READINGS_V, object_name:CSI_CTR_PROPERTY_READINGS_V, status:VALID,
-
VIEW: APPS.CSI_COUNTERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTERS_V, object_name:CSI_COUNTERS_V, status:VALID,
-
VIEW: APPS.CSI_COUNTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTERS_V, object_name:CSI_COUNTERS_V, status:VALID,
-
APPS.CSI_COUNTER_PVT SQL Statements
12.2.2
-
APPS.CSI_COUNTER_PVT SQL Statements
12.1.1
-
APPS.CSI_COUNTER_PVT dependencies on CSI_COUNTER_PROPERTIES_VL
12.1.1
-
APPS.CSI_COUNTER_PVT dependencies on CSI_COUNTER_PROPERTIES_VL
12.2.2
-
eTRM - CSI Tables and Views
12.1.1
description: Temporary table that holds the unprocessed XNP messages during data correction process. ,
-
eTRM - CSI Tables and Views
12.2.2
description: Temporary table that holds the unprocessed XNP messages during data correction process. ,