Search Results jts_configurations_b
Overview
The table JTS_CONFIGURATIONS_B resides in the JTS schema and belongs to the CRM Self Service Administration product within Oracle E-Business Suite, available in releases 12.1.1 and 12.2.2. It stores configuration data and serves as the starting point for configuration management as presented on the My Configuration page of the self-service administrative interface. In practical terms, each row in this table represents a named configuration definition that the application uses to drive the display and behavior of configuration records accessible to end users.
The ETRM metadata classifies this object as standalone, with no foreign keys pointing outward except a reference to FND_SECURITY_GROUPS through SECURITY_GROUP_ID. From a Data Vault modeling perspective, this object is best characterized as a hub: it holds a durable business key (CONFIG_NAME) plus a surrogate identifier (CONFIGURATION_ID), which is the classic pattern for a hub entity. The remaining descriptive and audit columns behave as satellite-style attributes attached to that hub, though the physical implementation follows the standard EBS single-table convention rather than a normalized Data Vault schema.
Key Information Stored
The table contains 27 documented columns. The most significant are:
- CONFIGURATION_ID — the surrogate primary key, enforced by unique index JTS_CONFIGURATIONS_B_U1. This is the internal identifier used by all dependent records.
- CONFIG_NAME — the business-key candidate, enforced by unique index JTS_CONFIGURATIONS_B_U2. This is the human-readable name shown on the My Configuration page.
- FLOW_ID — identifies the workflow or processing flow associated with the configuration.
- RECORD_MODE — indicates the operational mode under which the configuration record is processed.
- OBJECT_VERSION_NUMBER — supports optimistic locking and concurrent update control, a standard EBS 12.2.x pattern.
- SECURITY_GROUP_ID — the foreign key to FND_SECURITY_GROUPS, controlling which security group may access the configuration.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the standard EBS descriptive flexfield columns, reserved for customer-defined extensions.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — the standard WHO audit columns that track record provenance and change history.
Common Use Cases and Queries
Typical usage centers on configuration lookup, security validation, and audit reporting. A simple retrieval by business key follows this pattern:
SELECT configuration_id, config_name, flow_id, record_mode FROM jts.jts_configurations_b WHERE config_name = :p_name;SELECT c.config_name, g.security_group_name FROM jts.jts_configurations_b c, fnd_security_groups g WHERE c.security_group_id = g.security_group_id;SELECT config_name, creation_date, created_by, last_update_date FROM jts.jts_configurations_b WHERE last_update_date >= :p_since ORDER BY last_update_date DESC;
Reporting scenarios include inventorying all defined configurations per security group, auditing changes for compliance, and diagnosing missing or misconfigured entries when the My Configuration page does not render expected records. Because CONFIG_NAME is uniquely indexed, direct joins between external reference data and this table are reliable without risk of fan-out.
Related Objects
The following objects are most significant in relation to JTS_CONFIGURATIONS_B:
- FND_SECURITY_GROUPS — joined on SECURITY_GROUP_ID; governs access to each configuration.
- JTS_CONFIGURATIONS_TL — the translated (language) companion table, typical for EBS objects whose names are localized, joined on CONFIGURATION_ID.
- JTS_CONFIGURATIONS_VL — the multi-language view combining the base and translation tables.
- JTS_CONFIGURATIONS_B_U1 and JTS_CONFIGURATIONS_B_U2 — the unique indexes on CONFIGURATION_ID and CONFIG_NAME that define the primary and business keys.
- FND_USER and FND_LOGINS — referenced indirectly through CREATED_BY, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN for audit traceability.
Together, these objects define how configuration definitions are stored, secured, localized, and audited within the JTS self-service administrative framework.
-
Table: JTS_CONFIGURATIONS_B
12.1.1
owner:JTS, object_type:TABLE, fnd_design_data:JTS.JTS_CONFIGURATIONS_B, object_name:JTS_CONFIGURATIONS_B, status:VALID, product: JTS - CRM Self Service Administration , description: Stores Configurations data. This is the starting point for configurations Management as delineated in My Configuration page. , implementation_dba_data: JTS.JTS_CONFIGURATIONS_B ,
-
Table: JTS_CONFIGURATIONS_B
12.2.2
product: JTS - CRM Self Service Administration (Obsolete) , description: Stores Configurations data. This is the starting point for configurations Management as delineated in My Configuration page. , implementation_dba_data: Not implemented in this database ,
-
APPS.JTS_CONFIGURATION_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.JTS_CONFIGURATIONS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTS_CONFIGURATIONS_B, status:VALID,
-
APPS.JTS_CONFIGURATIONS_PKG SQL Statements
12.1.1
-
VIEW: APPS.JTS_CONFIGURATIONS_VL
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.JTS_CONFIGURATIONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTS_CONFIGURATIONS_PKG, status:VALID,
-
TABLE: JTS.JTS_CONFIGURATIONS_B
12.1.1
owner:JTS, object_type:TABLE, fnd_design_data:JTS.JTS_CONFIGURATIONS_B, object_name:JTS_CONFIGURATIONS_B, status:VALID,
-
PACKAGE BODY: APPS.JTS_CONFIGURATION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTS_CONFIGURATION_PVT, status:VALID,
-
View: JTS_CONFIGURATIONS_VL
12.2.2
product: JTS - CRM Self Service Administration (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
eTRM - JTS Tables and Views
12.1.1
description: Stores subflow hierarchy as shown in Setup Summary Page. Translated Table. ,
-
PACKAGE BODY: APPS.JTS_CONFIGURATIONS_PKG
12.1.1
-
View: JTS_CONFIGURATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTS.JTS_CONFIGURATIONS_VL, object_name:JTS_CONFIGURATIONS_VL, status:VALID, product: JTS - CRM Self Service Administration , implementation_dba_data: APPS.JTS_CONFIGURATIONS_VL ,
-
PACKAGE BODY: APPS.JTS_CONFIG_VERSION_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTS_CONFIG_VERSION_PVT, status:VALID,
-
VIEW: APPS.JTS_CONFIGURATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTS.JTS_CONFIGURATIONS_VL, object_name:JTS_CONFIGURATIONS_VL, status:VALID,
-
PACKAGE BODY: APPS.JTS_CONFIGURATION_PVT
12.1.1
-
PACKAGE: APPS.JTS_CONFIGURATIONS_PKG
12.1.1
-
eTRM - JTS Tables and Views
12.1.1
description: Stores subflow hierarchy as shown in Setup Summary Page. Translated Table. ,
-
APPS.JTS_CONFIGURATION_PVT dependencies on JTS_CONFIGURATIONS_B
12.1.1
-
APPS.JTS_CONFIGURATIONS_PKG dependencies on JTS_CONFIGURATIONS_B
12.1.1
-
APPS.JTS_CONFIG_VERSION_PVT dependencies on JTS_CONFIGURATIONS_B
12.1.1
-
APPS.JTS_CONFIGURATIONS_PKG dependencies on JTS_CONFIGURATIONS_TL
12.1.1
-
APPS.JTS_CONFIGURATIONS_PKG dependencies on JTS_CONFIGURATIONS_PKG
12.1.1
-
APPS.JTS_CONFIGURATION_PVT dependencies on FND_GLOBAL
12.1.1
-
APPS.JTS_CONFIGURATION_PVT dependencies on FND_API
12.1.1
-
12.1.1 DBA Data
12.1.1