Search Results jtf_rs_groups_aud_b
Overview
JTF_RS_GROUPS_AUD_B is the base audit table in the JTF (CRM Foundation) schema of Oracle E-Business Suite, storing historical change records for resource groups maintained by the Resource Manager (JTF_RS) module. Every time an attribute of a group defined in JTF_RS_GROUPS_B is modified, the prior and resulting values are captured as OLD and NEW column pairs in this table, producing a full chronological audit trail. The object is owned by the JTF schema, is documented as VALID in both release 12.1.1 and 12.2.2, and is composed of 24 columns in the ETRM physical schema.
From a Data Vault modeling perspective, the FK structure suggests that JTF_RS_GROUPS_AUD_B behaves as a satellite rather than a hub or link. Its primary key, GROUP_AUDIT_ID, is purely a surrogate audit-record identifier with no independent business meaning, while the meaningful parent key SET (GROUP_ID → JTF_RS_GROUPS_B, SECURITY_GROUP_ID → FND_SECURITY_GROUPS) points outward to existing entities. This is characteristic of descriptive satellite history applied to a group hub.
Key Information Stored
The table captures attribute-level audit pairs. The most significant columns are:
- GROUP_AUDIT_ID — the surrogate primary key (JTF_RS_GROUPS_AUD_B_PK, also enforced by unique index JTF_RS_GROUPS_AUD_B_U1). It uniquely identifies each audit row and is the join key to the translation table.
- GROUP_ID — the foreign key to JTF_RS_GROUPS_B identifying the audited group.
- SECURITY_GROUP_ID — foreign key to FND_SECURITY_GROUPS, providing multi-tenant / data-security partitioning for the audit record.
- NEW_/OLD_GROUP_NUMBER — the group's business number before and after the change.
- NEW_/OLD_EXCLUSIVE_FLAG — whether the group is exclusive, before and after.
- NEW_/OLD_START_DATE_ACTIVE and NEW_/OLD_END_DATE_ACTIVE — effective-dating of the group record.
- NEW_/OLD_ACCOUNTING_CODE — accounting classification of the group.
- NEW_/OLD_EMAIL_ADDRESS — group contact email.
- NEW_/OLD_TIME_ZONE — the group's default time zone.
- NEW_/OLD_OBJECT_VERSION_NUMBER — the optimistic-locking version at the time of change.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO-column audit metadata.
Because every functional attribute is represented as a NEW/OLD pair, a single row is typically populated with a value in either the NEW or OLD side depending on whether the operation was an insert, update, or delete.
Common Use Cases and Queries
The table is primarily consumed for audit reporting, compliance, and troubleshooting "who changed what, when." Typical queries join back to the live group table and to FND_USER via the WHO columns:
- Reconstructing the change history of a specific group:
SELECT * FROM JTF_RS_GROUPS_AUD_B WHERE group_id = :p_group_id ORDER BY creation_date DESC; - Reporting changes within a date range for SOX or internal audit evidence:
SELECT group_id, new_group_number, old_group_number, created_by, creation_date FROM JTF_RS_GROUPS_AUD_B WHERE creation_date BETWEEN :start_date AND :end_date; - Identifying which user performed a change:
SELECT a.group_id, a.created_by, u.user_name FROM JTF_RS_GROUPS_AUD_B a, FND_USER u WHERE a.created_by = u.user_id; - Fetching translated descriptions of an audit row via JTF_RS_GROUPS_AUD_TL on GROUP_AUDIT_ID.
- Cross-checking active-date or exclusive-flag edits by comparing OLD and NEW columns.
These patterns are commonly embedded in custom concurrent programs, OAF-based audit discovery pages, and BI Publisher extracts.
Related Objects
- JTF_RS_GROUPS_B — the base (non-translatable) group table; joined on JTF_RS_GROUPS_AUD_B.GROUP_ID = JTF_RS_GROUPS_B.GROUP_ID.
- JTF_RS_GROUPS_AUD_TL — the translation table for audit rows; references JTF_RS_GROUPS_AUD_B via GROUP_AUDIT_ID.
- JTF_RS_GROUPS_TL — translation companion for the base group table, relevant when resolving names for reported audit records.
- FND_SECURITY_GROUPS — referenced through SECURITY_GROUP_ID, controlling data visibility.
- FND_USER — resolved through CREATED_BY / LAST_UPDATED_BY for operator attribution.
- FND_LOGINS — optionally joined on LAST_UPDATE_LOGIN for session-level tracing.
- Resource Manager APIs (JTF_RS_GROUPS_PUB / JTF_RS_GROUP_UTIL) — the DML entry points whose changes are captured here.
Together these objects form the audit lineage for CRM resource groups, with JTF_RS_GROUPS_AUD_B acting as the central satellite fact of the group history.
-
Table: JTF_RS_GROUPS_AUD_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_B, object_name:JTF_RS_GROUPS_AUD_B, status:VALID, product: JTF - CRM Foundation , description: Base Table which stores audit information for a Group. , implementation_dba_data: JTF.JTF_RS_GROUPS_AUD_B ,
-
Table: JTF_RS_GROUPS_AUD_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_B, object_name:JTF_RS_GROUPS_AUD_B, status:VALID, product: JTF - CRM Foundation , description: Base Table which stores audit information for a Group. , implementation_dba_data: JTF.JTF_RS_GROUPS_AUD_B ,
-
VIEW: JTF.JTF_RS_GROUPS_AUD_B#
12.2.2
-
APPS.JTF_RS_GROUPS_AUD_PKG SQL Statements
12.2.2
-
VIEW: JTF.JTF_RS_GROUPS_AUD_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_RS_GROUPS_AUD_B#, status:VALID,
-
SYNONYM: APPS.JTF_RS_GROUPS_AUD_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_GROUPS_AUD_B, status:VALID,
-
SYNONYM: APPS.JTF_RS_GROUPS_AUD_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_GROUPS_AUD_B, status:VALID,
-
VIEW: APPS.JTF_RS_GROUPS_AUD_VL
12.1.1
-
VIEW: APPS.JTF_RS_GROUPS_AUD_VL
12.2.2
-
APPS.JTF_RS_GROUPS_AUD_PKG SQL Statements
12.1.1
-
Table: JTF_RS_GROUPS_AUD_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_TL, object_name:JTF_RS_GROUPS_AUD_TL, status:VALID, product: JTF - CRM Foundation , description: Translation Table which stores audit information for a Group. , implementation_dba_data: JTF.JTF_RS_GROUPS_AUD_TL ,
-
View: JTF_RS_GROUPS_AUD_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_VL, object_name:JTF_RS_GROUPS_AUD_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View forJTF_RS_GROUPS_AUD_B andJTF_RS_GROUPS_AUD_TL. , implementation_dba_data: APPS.JTF_RS_GROUPS_AUD_VL ,
-
PACKAGE BODY: APPS.JTF_RS_GROUPS_AUD_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_RS_GROUPS_AUD_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_RS_GROUPS_AUD_PKG
12.1.1
-
PACKAGE BODY: APPS.JTF_RS_GROUPS_AUD_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_RS_GROUPS_AUD_PVT, status:VALID,
-
PACKAGE BODY: APPS.JTF_RS_GROUPS_AUD_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_RS_GROUPS_AUD_PVT, status:VALID,
-
Table: JTF_RS_GROUPS_AUD_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_TL, object_name:JTF_RS_GROUPS_AUD_TL, status:VALID, product: JTF - CRM Foundation , description: Translation Table which stores audit information for a Group. , implementation_dba_data: JTF.JTF_RS_GROUPS_AUD_TL ,
-
PACKAGE BODY: APPS.JTF_RS_GROUPS_AUD_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_RS_GROUPS_AUD_PKG, status:VALID,
-
TABLE: JTF.JTF_RS_GROUPS_AUD_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_B, object_name:JTF_RS_GROUPS_AUD_B, status:VALID,
-
TABLE: JTF.JTF_RS_GROUPS_AUD_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_B, object_name:JTF_RS_GROUPS_AUD_B, status:VALID,
-
PACKAGE BODY: APPS.JTF_RS_GROUPS_AUD_PKG
12.2.2
-
View: JTF_RS_GROUPS_AUD_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_VL, object_name:JTF_RS_GROUPS_AUD_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View forJTF_RS_GROUPS_AUD_B andJTF_RS_GROUPS_AUD_TL. , implementation_dba_data: APPS.JTF_RS_GROUPS_AUD_VL ,
-
Table: JTF_RS_GROUPS_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_B, object_name:JTF_RS_GROUPS_B, status:VALID, product: JTF - CRM Foundation , description: Base Table JTF_RS_GROUPS_B stores general information about a given Group. , implementation_dba_data: JTF.JTF_RS_GROUPS_B ,
-
Table: JTF_RS_GROUPS_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUPS_B, object_name:JTF_RS_GROUPS_B, status:VALID, product: JTF - CRM Foundation , description: Base Table JTF_RS_GROUPS_B stores general information about a given Group. , implementation_dba_data: JTF.JTF_RS_GROUPS_B ,
-
VIEW: APPS.JTF_RS_GROUPS_AUD_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_VL, object_name:JTF_RS_GROUPS_AUD_VL, status:VALID,
-
VIEW: APPS.JTF_RS_GROUPS_AUD_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUPS_AUD_VL, object_name:JTF_RS_GROUPS_AUD_VL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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
-
APPS.JTF_RS_GROUPS_AUD_PKG dependencies on JTF_RS_GROUPS_AUD_B
12.2.2
-
APPS.JTF_RS_GROUPS_AUD_PVT dependencies on JTF_RS_GROUPS_AUD_B
12.1.1
-
APPS.JTF_RS_GROUPS_AUD_PKG dependencies on JTF_RS_GROUPS_AUD_B
12.1.1
-
APPS.JTF_RS_GROUPS_AUD_PVT dependencies on JTF_RS_GROUPS_AUD_B
12.2.2
-
APPS.JTF_RS_GROUPS_AUD_PKG dependencies on JTF_RS_GROUPS_AUD_TL
12.1.1
-
APPS.JTF_RS_GROUPS_AUD_PKG dependencies on JTF_RS_GROUPS_AUD_TL
12.2.2
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,