Search Results rrs_site_group_versions
Overview
RRS.RRS_SITE_GROUP_VERSIONS is a table within the Oracle E-Business Suite Release 12.1.1 / 12.2.2 RRS – Site Management module (also referenced in the Oracle ETRM / eTRM Technical Reference Manual). It stores versioned records associated with site groups, allowing the system to retain historical or staged copies of site group definitions. Each row represents a discrete version of a site group, keyed by a surrogate identifier and linked back to its parent site group.
From a data-modeling perspective, the mined foreign-key structure suggests a satellite-leaning classification under Data Vault heuristics. In other words, this table behaves more like a satellite — capturing descriptive, versioned attributes that depend on a business key (the site group) — rather than a hub or a pure link. This is a modeling suggestion only, derived from the FK relationships and column layout, and should be validated against actual usage patterns.
The table is owned by the RRS schema, carries a status of VALID, and is documented with 10 physical columns. Its primary key is defined as SITE_GROUP_VERSION_ID and is exposed through the unique index RRS_SITE_GROUP_VERSIONS_U1.
Key Information Stored
The table's most significant columns fall into three functional groups:
- SITE_GROUP_VERSION_ID — The surrogate primary key. Sourced from the sequence
RSN_PK. This is the unique, system-generated identifier for each version record and is the column exposed in theRRS_SITE_GROUP_VERSIONS_U1unique index. - SITE_GROUP_ID — The foreign key back to
RRS_SITE_GROUP_VERSIONS(self-referencing per the documented FK). This ties each version record to its owning site group, forming the business-key lineage. It is the primary join column for any query reconstructing site group history. - VERSION_NUMBER — The ordinal version indicator for the site group. Distinguishes successive revisions and supports ordered retrieval of the latest or prior version.
- SOURCE_VERSION_ID — References the version from which this record was copied or derived, enabling version lineage tracing.
- OBJECT_VERSION_NUMBER — The standard Oracle EBS optimistic-locking column used for concurrent update control across the application framework.
The remaining columns are the standard EBS "Who" audit set — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN — which provide ownership and change-tracking metadata for every version row.
Common Use Cases and Queries
Typical scenarios for this table include:
- Retrieving the current version of a site group — selecting the row with the highest
VERSION_NUMBERfor a givenSITE_GROUP_ID. - Auditing version history — listing all versions of a site group ordered by
VERSION_NUMBERalong with the audit columns to establish who changed what and when. - Tracing version lineage — following
SOURCE_VERSION_IDchains to determine which prior version a record descended from.
A representative query retrieves the latest version per site group:
SELECT sgv.SITE_GROUP_VERSION_ID,
sgv.SITE_GROUP_ID,
sgv.VERSION_NUMBER,
sgv.LAST_UPDATED_BY,
sgv.LAST_UPDATE_DATE
FROM RRS.RRS_SITE_GROUP_VERSIONS sgv
WHERE sgv.VERSION_NUMBER = (
SELECT MAX(v.VERSION_NUMBER)
FROM RRS.RRS_SITE_GROUP_VERSIONS v
WHERE v.SITE_GROUP_ID = sgv.SITE_GROUP_ID);
For historical reporting, remove the MAX restriction and order by SITE_GROUP_ID, VERSION_NUMBER. Because OBJECT_VERSION_NUMBER supports optimistic locking, reporting extracts should filter on it only when analyzing concurrency, not as a key.
Related Objects
The following objects are significant to RRS_SITE_GROUP_VERSIONS:
- RRS_SITE_GROUP_VERSIONS (self-reference) — The documented FK
SITE_GROUP_IDpoints back into this table, supporting version lineage and hierarchical version grouping. - RRS_SITE_GROUP_VERSIONS_U1 — The unique index on
SITE_GROUP_VERSION_ID, enforcing the primary key and serving as the business-key candidate index. - RSN_PK — The sequence/adapter that supplies
SITE_GROUP_VERSION_IDvalues. - Site Group master objects — The parent site group definition tables that the
SITE_GROUP_IDlogically relates to; these provide the descriptive context for each version. - Standard EBS audit framework — The FND-based audit columns and concurrent manager processes that populate
CREATED_BY,LAST_UPDATED_BY, and related fields.
Note that the documented metadata is limited to the FK SITE_GROUP_ID and the unique index, so additional relationships should be confirmed against the RRS site-management data model in the implementation's ETRM.
-
Table: RRS_SITE_GROUP_VERSIONS
12.1.1
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_SITE_GROUP_VERSIONS, object_name:RRS_SITE_GROUP_VERSIONS, status:VALID, product: RRS - Site Management , implementation_dba_data: RRS.RRS_SITE_GROUP_VERSIONS ,
-
Table: RRS_SITE_GROUP_VERSIONS
12.2.2
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_SITE_GROUP_VERSIONS, object_name:RRS_SITE_GROUP_VERSIONS, status:VALID, product: RRS - Site Management , description: This table contains the versioned information of cluster or hierarchy. , implementation_dba_data: RRS.RRS_SITE_GROUP_VERSIONS ,
-
VIEW: RRS.RRS_SITE_GROUP_VERSIONS#
12.2.2
owner:RRS, object_type:VIEW, object_name:RRS_SITE_GROUP_VERSIONS#, status:VALID,
-
APPS.RRS_HIERARCHY_INFO SQL Statements
12.2.2
-
SYNONYM: APPS.RRS_SITE_GROUP_VERSIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:RRS_SITE_GROUP_VERSIONS, status:VALID,
-
SYNONYM: APPS.RRS_SITE_GROUP_VERSIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:RRS_SITE_GROUP_VERSIONS, status:VALID,
-
VIEW: RRS.RRS_SITE_GROUP_VERSIONS#
12.2.2
-
TABLE: RRS.RRS_SITE_GROUP_VERSIONS
12.1.1
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_SITE_GROUP_VERSIONS, object_name:RRS_SITE_GROUP_VERSIONS, status:VALID,
-
Table: RRS_SITE_GROUPS_B
12.2.2
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_SITE_GROUPS_B, object_name:RRS_SITE_GROUPS_B, status:VALID, product: RRS - Site Management , description: This table primarily stores the Site Group information, eg. Cluster and Hierarchy , implementation_dba_data: RRS.RRS_SITE_GROUPS_B ,
-
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
-
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
-
12.2.2 DBA Data
12.2.2
-
TABLE: RRS.RRS_SITE_GROUP_VERSIONS
12.2.2
owner:RRS, object_type:TABLE, fnd_design_data:RRS.RRS_SITE_GROUP_VERSIONS, object_name:RRS_SITE_GROUP_VERSIONS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.RRS_HIERARCHY_INFO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_HIERARCHY_INFO, status:VALID,
-
PACKAGE BODY: APPS.RRS_HIERARCHY_CRUD_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_HIERARCHY_CRUD_PKG, status:VALID,
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_SITE_INFO, status:VALID,
-
PACKAGE BODY: APPS.RRS_ATTR_PANE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_ATTR_PANE, status:VALID,
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RRS_SITE_INFO, status:VALID,
-
APPS.RRS_SITE_INFO SQL Statements
12.2.2
-
eTRM - RRS Tables and Views
12.1.1
description: This table stores all the translatable information related to Trade Area Groups. ,
-
PACKAGE BODY: APPS.RRS_HIERARCHY_INFO
12.2.2
-
eTRM - RRS Tables and Views
12.2.2
description: This table stores all the translatable information related to Trade Area Groups. ,
-
APPS.RRS_SITE_INFO SQL Statements
12.1.1
-
APPS.RRS_HIERARCHY_CRUD_PKG SQL Statements
12.2.2
-
APPS.RRS_ATTR_PANE SQL Statements
12.2.2
-
APPS.RRS_SITE_INFO dependencies on RRS_SITE_GROUP_VERSIONS
12.2.2
-
APPS.RRS_HIERARCHY_CRUD_PKG dependencies on RRS_SITE_GROUP_VERSIONS
12.2.2
-
APPS.RRS_ATTR_PANE dependencies on RRS_SITE_GROUP_VERSIONS
12.2.2
-
APPS.RRS_SITE_INFO dependencies on RRS_SITE_GROUP_VERSIONS
12.1.1
-
APPS.RRS_HIERARCHY_INFO dependencies on RRS_SITE_GROUP_VERSIONS
12.2.2
-
Foreign Keys
12.1.1
-
APPS.RRS_HIERARCHY_CRUD_PKG dependencies on RRS_SITE_GROUP_VERSIONS_S
12.2.2
-
PACKAGE BODY: APPS.RRS_HIERARCHY_CRUD_PKG
12.2.2
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.2.2
-
APPS.RRS_HIERARCHY_INFO dependencies on RRS_SITE_GROUPS_B
12.2.2
-
APPS.RRS_HIERARCHY_INFO dependencies on RRS_SITE_GROUPS_TL
12.2.2
-
APPS.RRS_HIERARCHY_INFO dependencies on RRS_SITE_GROUPS_VL
12.2.2
-
APPS.RRS_HIERARCHY_CRUD_PKG dependencies on DUAL
12.2.2
-
APPS.RRS_ATTR_PANE dependencies on RRS_SITE_GROUPS_VL
12.2.2
-
APPS.RRS_HIERARCHY_INFO dependencies on RRS_LOOKUPS_V
12.2.2
-
eTRM - RRS Tables and Views
12.1.1
description: This table stores all the translatable information related to Trade Area Groups. ,
-
PACKAGE BODY: APPS.RRS_SITE_INFO
12.1.1
-
PACKAGE BODY: APPS.RRS_ATTR_PANE
12.2.2