Search Results jts_config_version_flows
Overview
JTS_CONFIG_VERSION_FLOWS is a configuration association table within the Oracle E-Business Suite CRM Self Service Administration module (product code JTS). The object records the relationship between a configuration version and the specific flows that belong to that version. In the ETRM 12.1.1 documented schema, the table is owned by the JTS schema and contains 10 columns.
The ETRM metadata explicitly notes that this object is not implemented in this database, and the product is classified as Obsolete. Consequently, the table exists in legacy data models and historical reference documentation rather than as an active component of a current 12.1.1 or 12.2.2 deployment. Organizations upgrading from earlier releases may still encounter residual definitions, but no runtime behavior should be expected.
From a Data Vault modeling perspective, the ETRM heuristic classification for this table is standalone. This suggests it is best modeled as an independent structure rather than as a hub, link, or satellite. Despite carrying two foreign key references, the mined classification treats the table as a self-contained association entity rather than a hub-to-hub link.
Key Information Stored
The table's most significant columns are as follows:
- VERSION_ID — Identifies the parent configuration version. This is also a foreign key to VEA_VERSIONS and forms part of the composite unique key.
- FLOW_ID — Identifies the individual flow associated with the version. Together with VERSION_ID, it constitutes the business-key candidate.
- COMPLETE_FLAG — Indicates whether the flow configuration for the version has been completed, providing a processing or readiness status.
- SECURITY_GROUP_ID — Foreign key to FND_SECURITY_GROUPS, enforcing data-level security and access partitioning.
- CREATION_DATE — Timestamp recording when the association row was first created.
- CREATED_BY — The application user who created the record.
- LAST_UPDATE_DATE — Timestamp of the most recent modification.
- LAST_UPDATED_BY — The user who performed the most recent update.
- LAST_UPDATE_LOGIN — Login session identifier associated with the last update.
- OBJECT_VERSION_NUMBER — Optimistic locking token used to detect concurrent modification.
The documented unique index JTS_CONFIG_VERSION_FLOWS_U1 covers (VERSION_ID, FLOW_ID), establishing these two columns as the business-key candidate that guarantees one flow entry per configuration version. No separate surrogate primary key column is documented in the ETRM excerpt; the composite unique index serves as the principal identifier.
Common Use Cases and Queries
Because the object is obsolete, use cases are largely historical, migration-related, or audit-driven. Typical scenarios include:
- Reconstructing which flows were deployed within a given configuration version prior to an upgrade.
- Auditing incomplete configurations where COMPLETE_FLAG is not set.
- Validating referential integrity between legacy configuration data and its parent versions.
A representative query listing flows and their completion status for a specific version:
SELECT version_id, flow_id, complete_flag, creation_date
FROM jts_config_version_flows
WHERE version_id = :p_version_id;
A reporting query joining parent version metadata:
SELECT v.version_id, v.version_name, f.flow_id, f.complete_flag
FROM jts_config_version_flows f, vea_versions v
WHERE f.version_id = v.version_id
AND f.security_group_id = :p_security_group_id;
Related Objects
The following objects are most significant to JTS_CONFIG_VERSION_FLOWS, based on documented FK relationships and the standard EBS audit/security columns:
- VEA_VERSIONS — Referenced via JTS_CONFIG_VERSION_FLOWS.VERSION_ID; the parent configuration version.
- FND_SECURITY_GROUPS — Referenced via SECURITY_GROUP_ID; governs row-level access.
- FND_USER — Implicitly referenced through CREATED_BY and LAST_UPDATED_BY.
- FND_LOGINS — Implicitly referenced through LAST_UPDATE_LOGIN.
- JTS_CONFIG_VERSION_FLOWS_U1 — The unique index enforcing the (VERSION_ID, FLOW_ID) business key.
Given the obsolete status, no active PL/SQL APIs or public views are documented as depending on this table in current releases.
-
Table: JTS_CONFIG_VERSION_FLOWS
12.2.2
product: JTS - CRM Self Service Administration (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
Table: JTS_CONFIG_VERSION_FLOWS
12.1.1
owner:JTS, object_type:TABLE, fnd_design_data:JTS.JTS_CONFIG_VERSION_FLOWS, object_name:JTS_CONFIG_VERSION_FLOWS, status:VALID, product: JTS - CRM Self Service Administration , implementation_dba_data: JTS.JTS_CONFIG_VERSION_FLOWS ,
-
APPS.JTS_CONFIG_VERSION_FLOW_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.JTS_CONFIG_VERSION_FLOWS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTS_CONFIG_VERSION_FLOWS, status:VALID,
-
PACKAGE BODY: APPS.JTS_CONFIG_VERSION_FLOW_PVT
12.1.1
-
12.1.1 DBA Data
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 FND Design Data
12.1.1
-
TABLE: JTS.JTS_CONFIG_VERSION_FLOWS
12.1.1
owner:JTS, object_type:TABLE, fnd_design_data:JTS.JTS_CONFIG_VERSION_FLOWS, object_name:JTS_CONFIG_VERSION_FLOWS, status:VALID,
-
PACKAGE BODY: APPS.JTS_SETUP_FLOW_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTS_SETUP_FLOW_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTS_CONFIG_VERSION_FLOW_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTS_CONFIG_VERSION_FLOW_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTS_CONFIG_VER_STATUS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTS_CONFIG_VER_STATUS_PVT, status:VALID,
-
PACKAGE: APPS.JTS_CONFIG_VERSION_FLOW_PVT
12.1.1
-
PACKAGE: APPS.JTS_SETUP_FLOW_PVT
12.1.1
-
APPS.JTS_SETUP_FLOW_PVT SQL Statements
12.1.1
-
APPS.JTS_CONFIG_VER_STATUS_PVT SQL Statements
12.1.1
-
eTRM - JTS Tables and Views
12.1.1
description: Stores subflow hierarchy as shown in Setup Summary Page. Translated Table. ,
-
PACKAGE: APPS.JTS_CONFIG_VERSION_PVT
12.1.1
-
PACKAGE BODY: APPS.JTS_SETUP_FLOW_PVT
12.1.1
-
PACKAGE BODY: APPS.JTS_CONFIG_VER_STATUS_PVT
12.1.1
-
APPS.JTS_CONFIG_VERSION_FLOW_PVT dependencies on JTS_CONFIG_VERSION_FLOWS
12.1.1
-
APPS.JTS_CONFIG_VER_STATUS_PVT dependencies on JTS_CONFIG_VERSION_FLOWS
12.1.1
-
APPS.JTS_SETUP_FLOW_PVT dependencies on JTS_CONFIG_VERSION_FLOWS
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_CONFIG_VERSION_FLOW_PVT dependencies on FND_GLOBAL
12.1.1
-
APPS.JTS_SETUP_FLOW_PVT dependencies on FND_USER
12.1.1
-
APPS.JTS_CONFIG_VERSION_FLOW_PVT dependencies on FND_API
12.1.1
-
APPS.JTS_CONFIG_VERSION_FLOW_PVT dependencies on FND_USER
12.1.1
-
APPS.JTS_CONFIG_VERSION_FLOW_PVT dependencies on APP_EXCEPTION
12.1.1
-
APPS.JTS_CONFIG_VERSION_FLOW_PVT dependencies on JTS_SETUP_FLOWS_B
12.1.1
-
APPS.JTS_CONFIG_VERSION_FLOW_PVT dependencies on JTS_SETUP_FLOW_PVT
12.1.1
-
APPS.JTS_CONFIG_VERSION_FLOW_PVT dependencies on JTS_SETUP_FLOW_PVT
12.1.1
-
APPS.JTS_SETUP_FLOW_PVT dependencies on JTS_SETUP_FLOWS_B
12.1.1
-
APPS.JTS_SETUP_FLOW_PVT dependencies on JTS_SETUP_FLOWS_VL
12.1.1
-
12.1.1 DBA Data
12.1.1