Search Results jtf_rs_group_members
Overview
The JTF_RS_GROUP_MEMBERS table is a core data structure within the Oracle E-Business Suite CRM Foundation (JTF) module. It functions as the definitive repository for all assignments of resources to groups, a fundamental concept for organizing and managing sales, service, and support personnel within the application. Its primary role is to maintain the many-to-many relationship between resources (individuals) and the groups to which they belong, enabling critical business processes such as team-based task assignment, territory management, and collaborative workflow routing. The integrity of this relationship is enforced by its primary key and foreign key constraints, making it a central hub for resource group management in both EBS 12.1.1 and 12.2.2.
Key Information Stored
The table's structure is designed to capture the essential elements of a group membership. The primary key, GROUP_MEMBER_ID, uniquely identifies each membership record. The two critical foreign key columns establish the core relationship: GROUP_ID links to JTF_RS_GROUPS_B to identify the specific group, and RESOURCE_ID links to JTF_RS_RESOURCE_EXTNS to identify the individual resource member. Additional columns, while not explicitly detailed in the provided metadata, typically include attributes such as START_DATE_ACTIVE and END_DATE_ACTIVE to manage the temporal validity of the membership, and CREATED_BY/CREATION_DATE for auditing purposes. The table's design ensures referential integrity and supports the tracking of active group compositions.
Common Use Cases and Queries
This table is central to queries that determine team composition and resource availability. A common reporting use case is to list all members of a specific group for task assignment or contact lists. For example, to find all active resources in a group named 'West Sales Team', a query would join JTF_RS_GROUP_MEMBERS with JTF_RS_GROUPS_B and JTF_RS_RESOURCE_EXTNS. Another critical use case is validating resource authorization, where the system checks if a user's associated resource is a member of a group permitted to perform a certain action or access specific data. Developers often query this table when building custom workflows or approvals that must route through a defined team structure. A basic pattern for retrieving group members is:
- SELECT res.resource_name, grp.group_name FROM jtf_rs_group_members mem, jtf_rs_resource_extns res, jtf_rs_groups_b grp WHERE mem.resource_id = res.resource_id AND mem.group_id = grp.group_id AND grp.group_name = '&GROUP_NAME' AND sysdate BETWEEN mem.start_date_active AND nvl(mem.end_date_active, sysdate+1);
Related Objects
As indicated by its foreign key relationships, JTF_RS_GROUP_MEMBERS is integrally connected to several other key CRM Foundation tables. It is a child of JTF_RS_GROUPS_B (defining the group) and JTF_RS_RESOURCE_EXTNS (defining the resource). It is also a parent table to several important entities: JTF_RS_ACTIVE_GRP_MBRS (which likely provides a filtered view of active memberships), JTF_RS_GROUP_MEMBERS_AUD (for tracking historical changes to memberships), and JTF_RS_ROLE_RELATIONS (where a group member can be assigned a specific role within the group context). This network of relationships underscores the table's position as a critical junction point in the resource management data model, influencing role assignments, audit trails, and real-time group membership views.
-
Table: JTF_RS_GROUP_MEMBERS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUP_MEMBERS, object_name:JTF_RS_GROUP_MEMBERS, status:VALID, product: JTF - CRM Foundation , description: This table stores the resources who are assigned to be group members. Primary key is Group_member_id. , implementation_dba_data: JTF.JTF_RS_GROUP_MEMBERS ,
-
Table: JTF_RS_GROUP_MEMBERS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUP_MEMBERS, object_name:JTF_RS_GROUP_MEMBERS, status:VALID, product: JTF - CRM Foundation , description: This table stores the resources who are assigned to be group members. Primary key is Group_member_id. , implementation_dba_data: JTF.JTF_RS_GROUP_MEMBERS ,
-
Table: JTF_RS_GROUP_MEMBERS_AUD
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUP_MEMBERS_AUD, object_name:JTF_RS_GROUP_MEMBERS_AUD, status:VALID, product: JTF - CRM Foundation , description: Table which stores audit information for a Group Members. , implementation_dba_data: JTF.JTF_RS_GROUP_MEMBERS_AUD ,
-
Table: JTF_RS_GROUP_MEMBERS_AUD
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_GROUP_MEMBERS_AUD, object_name:JTF_RS_GROUP_MEMBERS_AUD, status:VALID, product: JTF - CRM Foundation , description: Table which stores audit information for a Group Members. , implementation_dba_data: JTF.JTF_RS_GROUP_MEMBERS_AUD ,
-
Table: JTF_RS_ACTIVE_GRP_MBRS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_ACTIVE_GRP_MBRS, object_name:JTF_RS_ACTIVE_GRP_MBRS, status:VALID, product: JTF - CRM Foundation , description: This Table contains only active group membership detais. , implementation_dba_data: JTF.JTF_RS_ACTIVE_GRP_MBRS ,
-
Table: JTF_RS_ACTIVE_GRP_MBRS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_ACTIVE_GRP_MBRS, object_name:JTF_RS_ACTIVE_GRP_MBRS, status:VALID, product: JTF - CRM Foundation , description: This Table contains only active group membership detais. , implementation_dba_data: JTF.JTF_RS_ACTIVE_GRP_MBRS ,
-
View: JTF_TTY_MY_DIRECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_MY_DIRECTS_V, object_name:JTF_TTY_MY_DIRECTS_V, status:VALID, product: JTF - CRM Foundation , description: Shows all the direct reports of a salesperson , implementation_dba_data: APPS.JTF_TTY_MY_DIRECTS_V ,
-
Table: JTF_RS_ROLE_RELATIONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_ROLE_RELATIONS, object_name:JTF_RS_ROLE_RELATIONS, status:VALID, product: JTF - CRM Foundation , description: This table stores the association between resources and roles. Primary key is Resource_id and Role_id. Each resource can be assigned to multiple roles. , implementation_dba_data: JTF.JTF_RS_ROLE_RELATIONS ,
-
Table: JTF_RS_ROLE_RELATIONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_ROLE_RELATIONS, object_name:JTF_RS_ROLE_RELATIONS, status:VALID, product: JTF - CRM Foundation , description: This table stores the association between resources and roles. Primary key is Resource_id and Role_id. Each resource can be assigned to multiple roles. , implementation_dba_data: JTF.JTF_RS_ROLE_RELATIONS ,
-
View: JTF_TTY_SRCH_MY_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_SRCH_MY_RESOURCES_V, object_name:JTF_TTY_SRCH_MY_RESOURCES_V, status:VALID, product: JTF - CRM Foundation , description: Shows all the direct and indirect reports of a salesperson , implementation_dba_data: APPS.JTF_TTY_SRCH_MY_RESOURCES_V ,
-
View: JTF_TTY_MY_DIRECTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_MY_DIRECTS_V, object_name:JTF_TTY_MY_DIRECTS_V, status:VALID, product: JTF - CRM Foundation , description: Shows all the direct reports of a salesperson , implementation_dba_data: APPS.JTF_TTY_MY_DIRECTS_V ,
-
View: JTF_TTY_SRCH_MY_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_SRCH_MY_RESOURCES_V, object_name:JTF_TTY_SRCH_MY_RESOURCES_V, status:VALID, product: JTF - CRM Foundation , description: Shows all the direct and indirect reports of a salesperson , implementation_dba_data: APPS.JTF_TTY_SRCH_MY_RESOURCES_V ,
-
View: JTF_RS_GROUP_MBR_ROLE_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_MBR_ROLE_VL, object_name:JTF_RS_GROUP_MBR_ROLE_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used in define group form member_roles block. , implementation_dba_data: APPS.JTF_RS_GROUP_MBR_ROLE_VL ,
-
View: JTF_RS_GROUP_MBR_ROLE_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_MBR_ROLE_VL, object_name:JTF_RS_GROUP_MBR_ROLE_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used in define group form member_roles block. , implementation_dba_data: APPS.JTF_RS_GROUP_MBR_ROLE_VL ,
-
View: JTF_RS_DEFRESGROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESGROUPS_VL, object_name:JTF_RS_DEFRESGROUPS_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used by Define Resource Form Group Tab , implementation_dba_data: APPS.JTF_RS_DEFRESGROUPS_VL ,
-
View: JTF_RS_GROUP_MEMBERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_MEMBERS_VL, object_name:JTF_RS_GROUP_MEMBERS_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used in define group form members block. , implementation_dba_data: APPS.JTF_RS_GROUP_MEMBERS_VL ,
-
View: JTF_RS_GROUP_MEMBERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_MEMBERS_VL, object_name:JTF_RS_GROUP_MEMBERS_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used in define group form members block. , implementation_dba_data: APPS.JTF_RS_GROUP_MEMBERS_VL ,
-
View: JTF_RS_DEFRESGROUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESGROUPS_VL, object_name:JTF_RS_DEFRESGROUPS_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used by Define Resource Form Group Tab , implementation_dba_data: APPS.JTF_RS_DEFRESGROUPS_VL ,
-
View: JTF_TTY_MY_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_MY_RESOURCES_V, object_name:JTF_TTY_MY_RESOURCES_V, status:VALID, product: JTF - CRM Foundation , description: Shows all the direct and indirect reports of a salesperson , implementation_dba_data: APPS.JTF_TTY_MY_RESOURCES_V ,
-
View: JTF_TTY_MY_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_MY_RESOURCES_V, object_name:JTF_TTY_MY_RESOURCES_V, status:VALID, product: JTF - CRM Foundation , description: Shows all the direct and indirect reports of a salesperson , implementation_dba_data: APPS.JTF_TTY_MY_RESOURCES_V ,
-
View: JTF_TASK_SECURITY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_SECURITY_V, object_name:JTF_TASK_SECURITY_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to get the group or team resources granting full access to a login resource and group/team or employee resources granting a certain level of access to a login resource. , implementation_dba_data: APPS.JTF_TASK_SECURITY_V ,
-
View: JTF_TASK_SECURITY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASK_SECURITY_V, object_name:JTF_TASK_SECURITY_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to get the group or team resources granting full access to a login resource and group/team or employee resources granting a certain level of access to a login resource. , implementation_dba_data: APPS.JTF_TASK_SECURITY_V ,
-
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 ,
-
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 ,
-
View: JTF_RS_GROUP_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_DTLS_VL, object_name:JTF_RS_GROUP_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the groups details including name and manager , implementation_dba_data: APPS.JTF_RS_GROUP_DTLS_VL ,
-
View: JTF_RS_GROUP_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GROUP_DTLS_VL, object_name:JTF_RS_GROUP_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the groups details including name and manager , implementation_dba_data: APPS.JTF_RS_GROUP_DTLS_VL ,
-
View: JTF_RS_SRP_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_SRP_GROUPS_V, object_name:JTF_RS_SRP_GROUPS_V, status:VALID, product: JTF - CRM Foundation , description: View for fetching the Default (Primary) group for a Salesrep. , implementation_dba_data: APPS.JTF_RS_SRP_GROUPS_V ,
-
View: JTF_TTY_GEO_TERR_OWNER_LOV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_GEO_TERR_OWNER_LOV_V, object_name:JTF_TTY_GEO_TERR_OWNER_LOV_V, status:VALID, product: JTF - CRM Foundation , description: View for owners of Geography Territories , implementation_dba_data: APPS.JTF_TTY_GEO_TERR_OWNER_LOV_V ,
-
View: JTF_RS_SRP_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_SRP_GROUPS_V, object_name:JTF_RS_SRP_GROUPS_V, status:VALID, product: JTF - CRM Foundation , description: View for fetching the Default (Primary) group for a Salesrep. , implementation_dba_data: APPS.JTF_RS_SRP_GROUPS_V ,
-
View: JTF_TTY_GEO_TERR_OWNER_LOV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_GEO_TERR_OWNER_LOV_V, object_name:JTF_TTY_GEO_TERR_OWNER_LOV_V, status:VALID, product: JTF - CRM Foundation , description: View for owners of Geography Territories , implementation_dba_data: APPS.JTF_TTY_GEO_TERR_OWNER_LOV_V ,
-
Table: JTF_RS_RESOURCE_EXTNS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS, object_name:JTF_RS_RESOURCE_EXTNS, status:VALID, product: JTF - CRM Foundation , description: This is table stores all important information about Resources. These Resources are coming from HR or HZ or Vonder table etc. Primary key is resource_id. Resource_number, user_id sre also unique keys. , implementation_dba_data: JTF.JTF_RS_RESOURCE_EXTNS ,
-
Table: JTF_RS_RESOURCE_EXTNS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS, object_name:JTF_RS_RESOURCE_EXTNS, status:VALID, product: JTF - CRM Foundation , description: This is table stores all important information about Resources. These Resources are coming from HR or HZ or Vonder table etc. Primary key is resource_id. Resource_number, user_id sre also unique keys. , implementation_dba_data: JTF.JTF_RS_RESOURCE_EXTNS ,