Search Results csi_counters_vl
Overview
CSI_COUNTERS_VL is a language (translation) view owned by the APPS schema within the CSI — Install Base product of Oracle E-Business Suite. Its documented purpose is to expose counter instance definitions together with their language-dependent descriptive attributes. In the ETRM metadata for 12.2.2 the object is registered with owner APPS and status VALID. The view combines the non-translated counter definition rows held in the base table CSI_COUNTERS_B with the translated name and description text held in CSI_COUNTERS_TL. The "_VL" suffix is the conventional Oracle EBS naming pattern for a view that presents a base ("_B") entity joined to its translation ("_TL") table, typically resolving to the session language so that consumers see descriptions in the appropriate language.
The view therefore plays a dual role: it is the primary read interface for reporting on counters (such as meter or usage counters attached to installed base instances) and it is a convenient integration and inquiry source where multilingual name and description values are required without an explicit join in the calling code.
Underlying Base Objects
The documented referents of the view are two synonyms: CSI_COUNTERS_B and CSI_COUNTERS_TL.
- CSI_COUNTERS_B — the base table holding the language-independent counter definition attributes. The view text selects from this table (aliased CCB) the full set of functional and descriptive columns, including COUNTER_ID, GROUP_ID, COUNTER_TYPE, INITIAL_READING, STEP_VALUE, tolerances, unit of measure, derivation and formula information, rollover readings, usage item, activity dates, the standard WHO columns, the OBJECT_VERSION_NUMBER, and the thirty descriptive flexfield (DFF) attribute columns ATTRIBUTE1 through ATTRIBUTE30.
- CSI_COUNTERS_TL — the translation table (aliased CCT). The view takes NAME and DESCRIPTION from this table, supplying the language-specific text for each counter definition. The join is made on the counter identifier, and the translated rows are filtered to the appropriate language so that a single row is returned per counter in the current session language.
The view therefore does not introduce independent data; it is a read-only projection over the base and translation tables, and it inherits their key constraints and relationships.
Key Columns
- COUNTER_ID — primary identifier of the counter instance; the join key to CSI_COUNTERS_TL and the reference used by related counter-value and reading tables.
- GROUP_ID — groups related counters for collective processing or presentation.
- NAME, DESCRIPTION — language-dependent text sourced from CSI_COUNTERS_TL, presented in the resolved session language.
- COUNTER_TYPE — classification of the counter (for example, how readings are captured or interpreted).
- INITIAL_READING, STEP_VALUE — the starting reading and the increment or step applied to readings.
- TOLERANCE_PLUS, TOLERANCE_MINUS, UOM_CODE — acceptable variance above and below a reading, and the unit of measure.
- DERIVE_COUNTER_ID, DERIVE_FUNCTION, DERIVE_PROPERTY_ID, FORMULA_TEXT, FORMULA_INCOMPLETE_FLAG — definition of derived counters and the formula used to compute them.
- ROLLOVER_LAST_READING, ROLLOVER_FIRST_READING — bounds that govern counter rollover.
- VALID_FLAG, START_DATE_ACTIVE, END_DATE_ACTIVE — validity and effective-dating controls.
- OBJECT_VERSION_NUMBER and the WHO columns (LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN) — concurrency and audit information.
- ATTRIBUTE1 … ATTRIBUTE30 — descriptive flexfield segments.
Common Use Cases and Queries
Typical uses include reporting on counter definitions in the user's language, feeding integration extracts that require descriptive text, and validating counter setup (tolerances, units, formulas, and effective dates).
List active counters with translated text:
SELECT counter_id, name, description, counter_type, uom_code FROM apps.csi_counters_vl WHERE valid_flag = 'Y' ORDER BY name;
Retrieve a specific counter definition:
SELECT counter_id, name, initial_reading, step_value, tolerance_plus, tolerance_minus FROM apps.csi_counters_vl WHERE counter_id = :p_counter_id;
Identify derived counters with completed formulas:
SELECT counter_id, name, derive_function, formula_text FROM apps.csi_counters_vl WHERE derive_counter_id IS NOT NULL AND formula_incomplete_flag = 'N';
Filter by effective dates to find currently valid definitions:
SELECT counter_id, name, start_date_active, end_date_active FROM apps.csi_counters_vl WHERE SYSDATE BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE);
Because the view resolves language automatically, it is preferred over joining CSI_COUNTERS_B and CSI_COUNTERS_TL directly in application queries and reports.
-
View: CSI_COUNTERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTERS_VL, object_name:CSI_COUNTERS_VL, status:VALID, product: CSI - Install Base , description: Counter instance view language , implementation_dba_data: APPS.CSI_COUNTERS_VL ,
-
View: CSI_COUNTERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_COUNTERS_VL, object_name:CSI_COUNTERS_VL, status:VALID, product: CSI - Install Base , description: Counter instance view language , implementation_dba_data: APPS.CSI_COUNTERS_VL ,
-
VIEW: APPS.CSI_CTR_RELATIONSHIPS_V
12.1.1
-
VIEW: APPS.CSI_CTR_RELATIONSHIPS_V
12.2.2
-
VIEW: APPS.MTL_BILLING_RULE_LINES_V
12.2.2
-
VIEW: APPS.CSI_COUNTERS_V
12.1.1
-
VIEW: APPS.CSI_COUNTERS_V
12.2.2
-
View: CSI_CTR_RELATIONSHIPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_RELATIONSHIPS_V, object_name:CSI_CTR_RELATIONSHIPS_V, status:VALID, product: CSI - Install Base , description: Counter relationships view , implementation_dba_data: APPS.CSI_CTR_RELATIONSHIPS_V ,
-
View: MTL_BILLING_RULE_LINES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_BILLING_RULE_LINES_V, object_name:MTL_BILLING_RULE_LINES_V, status:VALID, product: INV - Inventory , implementation_dba_data: APPS.MTL_BILLING_RULE_LINES_V ,
-
View: CSI_CTR_RELATIONSHIPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_RELATIONSHIPS_V, object_name:CSI_CTR_RELATIONSHIPS_V, status:VALID, product: CSI - Install Base , description: Counter relationships view , implementation_dba_data: APPS.CSI_CTR_RELATIONSHIPS_V ,
-
VIEW: APPS.CSI_CTR_ESTIMATE_METHODS_V
12.1.1
-
VIEW: APPS.CSI_CTR_ESTIMATE_METHODS_V
12.2.2
-
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 ,
-
SYNONYM: APPS.CSI_COUNTERS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_COUNTERS_TL, status:VALID,
-
SYNONYM: APPS.CSI_COUNTERS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_COUNTERS_TL, status:VALID,
-
VIEW: APPS.CSI_CP_COUNTERS_V
12.1.1
-
VIEW: APPS.CSI_COUNTER_READINGS_V
12.2.2
-
VIEW: APPS.CSI_CP_COUNTERS_V
12.2.2
-
VIEW: APPS.CSI_COUNTER_READINGS_V
12.1.1
-
PACKAGE BODY: APPS.CSI_CTR_INTERFACE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_CTR_INTERFACE_PUB, status:VALID,
-
VIEW: APPS.CSI_COUNTER_VALUES_V
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.AHL_REPORT_UTILS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_REPORT_UTILS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_FLEET_UTIL_HISTORY_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_FLEET_UTIL_HISTORY_PVT, status:VALID,
-
VIEW: APPS.CSI_COUNTER_VALUES_V
12.2.2
-
PACKAGE BODY: APPS.AHL_COMPLEX_MX_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_COMPLEX_MX_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_SMRINSTANCE_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_SMRINSTANCE_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_WARRANTY_CONTRACTS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_WARRANTY_CONTRACTS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UC_UTILIZATION_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UC_UTILIZATION_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UC_UTILIZATION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UC_UTILIZATION_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_SMRINSTANCE_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_SMRINSTANCE_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_CTR_INTERFACE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_CTR_INTERFACE_PUB, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.OKL_VSS_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_VSS_WF, status:VALID,
-
VIEW: APPS.CSI_COUNTERS_BC_V
12.1.1
-
View: CSI_CTR_ESTIMATE_METHODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_ESTIMATE_METHODS_V, object_name:CSI_CTR_ESTIMATE_METHODS_V, status:VALID, product: CSI - Install Base , description: Counter estimation methods view , implementation_dba_data: APPS.CSI_CTR_ESTIMATE_METHODS_V ,
-
PACKAGE BODY: APPS.OKL_VSS_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_VSS_WF, status:VALID,
-
PACKAGE BODY: APPS.CSI_COUNTER_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_COUNTER_PVT, status:VALID,
-
View: CSI_CTR_ESTIMATE_METHODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSI.CSI_CTR_ESTIMATE_METHODS_V, object_name:CSI_CTR_ESTIMATE_METHODS_V, status:VALID, product: CSI - Install Base , description: Counter estimation methods view , implementation_dba_data: APPS.CSI_CTR_ESTIMATE_METHODS_V ,
-
PACKAGE BODY: APPS.CSI_COUNTER_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_COUNTER_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_UMP_UNITMAINT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_UMP_UNITMAINT_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_COUNTER_READINGS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_COUNTER_READINGS_PVT, status:VALID,
-
PACKAGE BODY: APPS.AHL_RA_ANALYSER_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_RA_ANALYSER_PVT, status:VALID,
-
VIEW: APPS.CSI_COUNTERS_BC_V
12.2.2
-
PACKAGE BODY: APPS.AHL_RA_ANALYSER_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AHL_RA_ANALYSER_PVT, status:VALID,
-
PACKAGE BODY: APPS.CSI_COUNTER_READINGS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CSI_COUNTER_READINGS_PVT, status:VALID,
-
PACKAGE BODY: APPS.OKL_UBB_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OKL_UBB_PVT, status:VALID,