Search Results cs_ctr_formula_bvars
Overview
CS_CTR_FORMULA_BVARS is a table in the CS (Service) product schema of Oracle E-Business Suite, present in both release 12.1.1 and 12.2.2. The object carries a status of VALID in the ETRM data dictionary, and its physical schema is documented with 29 columns and an owner of CS. The most significant characteristic recorded in the metadata is the descriptive statement "This table is not used." Despite this, the table persists in the delivered schema with a complete column set, indexes, and foreign key constraints, which is consistent with a legacy or superseded structure retained for schema compatibility rather than active application logic.
From a relational modeling perspective, the heuristic Data Vault classification for CS_CTR_FORMULA_BVARS is a link, derived from its foreign key structure. This suggests the table historically served as an associative entity connecting two instances of the CS_COUNTERS entity through the columns COUNTER_ID and MAPPED_COUNTER_ID, with BIND_VAR_NAME providing a qualifying or naming attribute for the association. Under this modeling interpretation, the table would have recorded the mapping between a counter and a mapped counter, together with a bind variable name used in a formula context. The presence of MAPPED_INV_ITEM_ID and READING_TYPE among the documented columns further indicates the original design intent related counter bindings to inventory items and reading semantics.
Key Information Stored
The table's documented columns include surrogate, business, and standard EBS audit attributes. The most important entries are:
- CTR_FORMULA_BVAR_ID — the surrogate primary key, enforced by the unique index CS_CTR_FORMULA_BVARS_U1 and by CS_CTR_FORMULA_BVARS_PK.
- COUNTER_ID — a foreign key reference to CS_COUNTERS; part of the business-key unique index CS_CTR_FORMULA_BVARS_UK1 along with BIND_VAR_NAME.
- BIND_VAR_NAME — the bind variable name associated with the counter; completes the UK1 business-key candidate.
- MAPPED_COUNTER_ID — a second foreign key reference to CS_COUNTERS; part of the business-key unique index CS_CTR_FORMULA_BVARS_UK2 together with COUNTER_ID.
- MAPPED_INV_ITEM_ID — an inventory item identifier recorded against the binding.
- READING_TYPE — the reading type applicable to the counter mapping.
- SECURITY_GROUP_ID — a foreign key to FND_SECURITY_GROUPS, supporting multi-organization data security.
- OBJECT_VERSION_NUMBER — the optimistic locking column used by the EBS framework.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATION_DATE, CREATED_BY — the standard who-column audit set.
- ATTRIBUTE1 through ATTRIBUTE15 and CONTEXT — the standard DFF (descriptive flexfield) columns for extensibility.
The existence of two distinct unique indexes (U1 on the surrogate key, UK1 and UK2 on business combinations) confirms that the table was designed with enforced business uniqueness rules in addition to the surrogate identifier.
Common Use Cases and Queries
Because the table is documented as unused, it should not appear in functional reporting for current implementations. Practical interaction is limited to schema inspection, upgrade impact analysis, and confirming that no custom code or concurrent program references it. A typical diagnostic query to verify whether any data has been written is:
- SELECT COUNT(*) FROM CS.CS_CTR_FORMULA_BVARS; — confirm whether the table contains rows in a given environment.
- SELECT CTR_FORMULA_BVAR_ID, COUNTER_ID, BIND_VAR_NAME, MAPPED_COUNTER_ID FROM CS.CS_CTR_FORMULA_BVARS ORDER BY CTR_FORMULA_BVAR_ID; — inspect legacy rows where present.
Join-based validation against the referenced entities follows the foreign keys, for example joining CS_COUNTERS on COUNTER_ID and again on MAPPED_COUNTER_ID to resolve both sides of the historical mapping. For reporting purposes, the recommended approach is to derive equivalent information from actively maintained counter and formula tables rather than relying on this structure.
Related Objects
The relationship data identifies the following significant dependencies through foreign keys and indexes:
- CS_COUNTERS — referenced twice: CS_CTR_FORMULA_BVARS.COUNTER_ID → CS_COUNTERS and CS_CTR_FORMULA_BVARS.MAPPED_COUNTER_ID → CS_COUNTERS. This dual reference is the basis for the link classification.
- FND_SECURITY_GROUPS — referenced by CS_CTR_FORMULA_BVARS.SECURITY_GROUP_ID, providing the security grouping used across EBS data.
- CS_CTR_FORMULA_BVARS_PK — the primary key constraint, in addition to unique indexes CS_CTR_FORMULA_BVARS_U1, CS_CTR_FORMULA_BVARS_UK1, and CS_CTR_FORMULA_BVARS_UK2.
No APIs, views, or additional dependent tables are documented for this object in the ETRM metadata. Any integration work should therefore treat CS_CTR_FORMULA_BVARS as a dormant legacy structure and confirm against the target release whether it remains populated before building queries against it.
-
Table: CS_CTR_FORMULA_BVARS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CTR_FORMULA_BVARS, object_name:CS_CTR_FORMULA_BVARS, status:VALID, product: CS - Service , description: This table is not used , implementation_dba_data: CS.CS_CTR_FORMULA_BVARS ,
-
Table: CS_CTR_FORMULA_BVARS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CTR_FORMULA_BVARS, object_name:CS_CTR_FORMULA_BVARS, status:VALID, product: CS - Service , description: This table is not used , implementation_dba_data: CS.CS_CTR_FORMULA_BVARS ,
-
VIEW: APPS.CS_CTR_FORMULA_BVARS_DFV
12.2.2
-
VIEW: APPS.CS_CTR_FORMULA_BVARS_DFV
12.1.1
-
SYNONYM: APPS.CS_CTR_FORMULA_BVARS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_CTR_FORMULA_BVARS, status:VALID,
-
Table: CS_COUNTERS
12.1.1
product: CS - Service , description: Counter templates and instances , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.CS_CTR_FORMULA_BVARS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_CTR_FORMULA_BVARS, status:VALID,
-
VIEW: CS.CS_CTR_FORMULA_BVARS#
12.2.2
owner:CS, object_type:VIEW, object_name:CS_CTR_FORMULA_BVARS#, status:VALID,
-
Table: CS_COUNTERS
12.2.2
product: CS - Service , description: Counter templates and instances , implementation_dba_data: Not implemented in this database ,
-
VIEW: CS.CS_CTR_FORMULA_BVARS#
12.2.2
-
TABLE: CS.CS_CTR_FORMULA_BVARS
12.1.1
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CTR_FORMULA_BVARS, object_name:CS_CTR_FORMULA_BVARS, status:VALID,
-
VIEW: APPS.CS_CTR_FORMULA_BVARS_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:CS_CTR_FORMULA_BVARS_DFV, status:VALID,
-
TABLE: CS.CS_CTR_FORMULA_BVARS
12.2.2
owner:CS, object_type:TABLE, fnd_design_data:CS.CS_CTR_FORMULA_BVARS, object_name:CS_CTR_FORMULA_BVARS, status:VALID,
-
PACKAGE BODY: APPS.CS_COUNTERS_EXT_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_COUNTERS_EXT_PVT, status:VALID,
-
VIEW: APPS.CS_CTR_FORMULA_BVARS_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:CS_CTR_FORMULA_BVARS_DFV, status:VALID,
-
PACKAGE BODY: APPS.CS_COUNTERS_EXT_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_COUNTERS_EXT_PVT, status:VALID,
-
APPS.CS_COUNTERS_EXT_PVT SQL Statements
12.1.1
-
View: CS_CTR_FORMULA_BVARS_V
12.1.1
product: CS - Service , description: Counter formula reference variable's view , implementation_dba_data: Not implemented in this database ,
-
APPS.CS_COUNTERS_EXT_PVT SQL Statements
12.2.2
-
View: CS_CTR_FORMULA_BVARS_V
12.2.2
product: CS - Service , description: Counter formula reference variable's view , implementation_dba_data: Not implemented in this database ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CS_COUNTERS_EXT_PVT dependencies on CS_CTR_FORMULA_BVARS
12.1.1
-
APPS.CS_COUNTERS_EXT_PVT dependencies on CS_CTR_FORMULA_BVARS
12.2.2
-
PACKAGE BODY: APPS.CS_COUNTERS_EXT_PVT
12.1.1
-
PACKAGE BODY: APPS.CS_COUNTERS_EXT_PVT
12.2.2
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - CS Tables and Views
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - CS Tables and Views
12.1.1
description: Table to store web conference details for an SR. ,
-
eTRM - CS Tables and Views
12.2.2