Search Results csi_ctr_property_lov_type
Overview
APPS.CSI_CTR_PROPERTY_TEMPLATE_V is a reporting view in Oracle E-Business Suite that exposes counter property template definitions used by the Enterprise Territory and Resource Management (ETRM) / Customer Intelligence (CSI) counter model. A "counter" in CSI represents a measurable entity — a usage metric, a tracked quantity, or an instance-level attribute — and each counter definition owns a set of properties that describe its data type, allowable values, and validation constraints. This view flattens those property template rows and decorates them with decoded lookup meanings and unit-of-measure descriptions, making it suitable for direct query, LOV population, and integration extraction without requiring the caller to join multiple base objects.
The object is a view, not a table, and therefore carries no storage of its own; it is a read-only projection over the counter property template base data. This makes it safe for reporting and inquiry purposes, but it must not be used as a DML target. It is relevant in both 12.1.1 and 12.2.2, where the underlying column set and decode logic remain consistent with the documented ETRM metadata.
Underlying Base Objects
The view is defined over four documented objects:
- CSI_CTR_PROP_TEMPLATE_VL (VIEW) — the primary source, supplying the base property template rows (aliased CCPB). This is the multi-language base view behind the counter property template entity.
- FND_LOOKUPS (VIEW) — referenced twice. One instance (FL) resolves the default value code and its meaning; a second inline inline-derived instance (FL1) is restricted to
LOOKUP_TYPE = 'CSI_CTR_PROPERTY_LOV_TYPE'and supplies the human-readable meaning of the property LOV type. - MTL_UNITS_OF_MEASURE (SYNONYM) — supplies the unit-of-measure description (aliased MUM) for any property carrying a UOM code.
- FND_GLOBAL (PACKAGE) — provides session context (such as security group and user identity) used within the view's access filtering.
All joins to FND_LOOKUPS and MTL_UNITS_OF_MEASURE are outer joins, so property rows are returned even when no matching lookup or unit of measure exists.
Key Columns
- COUNTER_PROPERTY_ID / COUNTER_ID — primary identifier of the property and the counter to which it belongs.
- NAME / DESCRIPTION — the property's displayed name and descriptive text.
- PROPERTY_DATA_TYPE — the datatype that governs valid input (for example character, number, or date).
- PROPERTY_LOV_TYPE — the lookup type that drives value-list behavior; this is the column relevant to searches for csi_ctr_property_lov_type.
- PROPERTY_LOV_NAME — decoded meaning of PROPERTY_LOV_TYPE via FND_LOOKUPS.
- IS_NULLABLE, MINIMUM_VALUE, MAXIMUM_VALUE — validation constraints defining whether the property may be null and its permitted numeric range.
- DEFAULT_VALUE / DEFAULT_VALUE_CODE — the default applied when no value is supplied, and its decoded code.
- UOM_CODE / UNIT_OF_MEASURE — unit-of-measure code and its description.
- START_DATE_ACTIVE / END_DATE_ACTIVE — the effective date window controlling whether the property template is active.
- SECURITY_GROUP_ID, OBJECT_VERSION_NUMBER, MIGRATED_FLAG — multi-tenant security, optimistic locking, and migration indicators.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard audit columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the standard EBS descriptive flexfield columns.
Common Use Cases and Queries
The view is typically queried to drive value lists, to audit property definitions, and to migrate counter configuration between environments. A simple listing for a given counter might read:
SELECT counter_property_id, name, property_data_type, property_lov_name, default_valueFROM apps.csi_ctr_property_template_vWHERE counter_id = :counter_idAND SYSDATE BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE + 1);
To inspect available LOV types specifically, developers join or filter on PROPERTY_LOV_TYPE and read PROPERTY_LOV_NAME, which resolves via the CSI_CTR_PROPERTY_LOV_TYPE lookup. Because the joins to FND_LOOKUPS and MTL_UNITS_OF_MEASURE are outer, rows with null LOV types or UOM codes are preserved — important when validating incomplete configurations. The view should be accessed with the APPS schema (or a synonym) and treated strictly as read-only.
-
Lookup Type: CSI_CTR_PROPERTY_LOV_TYPE
12.1.1
product: CSI - Install Base , meaning: Counter Properties LOV Type , description: Counter Properties LOV Type ,
-
Lookup Type: CSI_CTR_PROPERTY_LOV_TYPE
12.2.2
product: CSI - Install Base , meaning: Counter Properties LOV Type , description: Counter Properties LOV Type ,
-
VIEW: APPS.CSI_CTR_PROPERTY_TEMPLATE_V
12.1.1
-
VIEW: APPS.CSI_COUNTER_PROPERTIES_V
12.2.2
-
VIEW: APPS.CSI_COUNTER_PROPERTIES_V
12.1.1
-
VIEW: APPS.CSI_CTR_PROPERTY_TEMPLATE_V
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
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_PROPERTY_TEMPLATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTY_TEMPLATE_V, object_name:CSI_CTR_PROPERTY_TEMPLATE_V, status:VALID, product: CSI - Install Base , description: Counter property template view , implementation_dba_data: APPS.CSI_CTR_PROPERTY_TEMPLATE_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_CTR_PROPERTY_TEMPLATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_PROPERTY_TEMPLATE_V, object_name:CSI_CTR_PROPERTY_TEMPLATE_V, status:VALID, product: CSI - Install Base , description: Counter property template view , implementation_dba_data: APPS.CSI_CTR_PROPERTY_TEMPLATE_V ,
-
APPS.CSM_LOOKUP_EVENT_PKG SQL Statements
12.1.1
-
TABLE: CSI.CSI_CTR_PROPERTY_TEMPLATE_B
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_CTR_PROPERTY_TEMPLATE_B, object_name:CSI_CTR_PROPERTY_TEMPLATE_B, status:VALID,
-
TABLE: CSI.CSI_COUNTER_PROPERTIES_B
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_B, object_name:CSI_COUNTER_PROPERTIES_B, status:VALID,
-
TABLE: CSI.CSI_COUNTER_PROPERTIES_B
12.1.1
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_COUNTER_PROPERTIES_B, object_name:CSI_COUNTER_PROPERTIES_B, status:VALID,
-
TABLE: CSI.CSI_CTR_PROPERTY_TEMPLATE_B
12.2.2
owner:CSI, object_type:TABLE, fnd_design_data:CSI.CSI_CTR_PROPERTY_TEMPLATE_B, object_name:CSI_CTR_PROPERTY_TEMPLATE_B, 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_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,
-
APPS.CSM_LOOKUP_EVENT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CSM_LOOKUP_EVENT_PKG
12.1.1
-
PACKAGE BODY: APPS.CSM_LOOKUP_EVENT_PKG
12.2.2
-
PACKAGE BODY: APPS.CSI_COUNTER_TEMPLATE_PVT
12.2.2
-
PACKAGE BODY: APPS.CSI_COUNTER_TEMPLATE_PVT
12.1.1
-
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. ,
-
APPS.CSI_COUNTER_TEMPLATE_PVT dependencies on CSI_CTR_GEN_UTILITY_PVT
12.1.1
-
APPS.CSI_COUNTER_TEMPLATE_PVT dependencies on CSI_CTR_GEN_UTILITY_PVT
12.2.2