Search Results jtf_rs_roles_b
Overview
The JTF_RS_ROLES_B table is a core data object within the Oracle E-Business Suite CRM Foundation (JTF) module. It serves as the base table for storing the fundamental, non-translatable attributes that define a role within the application's resource management framework. A role in this context is a classification or a job function that can be assigned to resources (e.g., employees, partners) to define their responsibilities and access capabilities. This table is central to the role-based security and organizational modeling features of Oracle CRM, enabling the association of resources with specific functions and the management of hierarchical relationships between roles.
Key Information Stored
The table's primary identifier is the ROLE_ID column, which is the system-generated primary key for every unique role. While the provided ETRM excerpt does not list all columns, typical columns in such a base table include ROLE_NAME (a unique identifier for the role), START_DATE_ACTIVE, END_DATE_ACTIVE for managing the role's lifecycle, and CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY for auditing. The table stores the essential, language-independent data for a role, while translatable attributes like the role's description are stored in the related JTF_RS_ROLES_TL (Translation) table.
Common Use Cases and Queries
This table is primarily accessed for administrative setup, security reporting, and data validation. Common operational scenarios include generating a list of all active roles for assignment purposes, validating role IDs during data migration, and auditing role creation. A typical query would join the base table with its translation table to retrieve a user-friendly report. For example, to list all active roles with their descriptions in a specific language, one might use:
- SELECT b.ROLE_ID, b.ROLE_NAME, tl.ROLE_DESCRIPTION
- FROM JTF.JTF_RS_ROLES_B b,
- JTF.JTF_RS_ROLES_TL tl
- WHERE b.ROLE_ID = tl.ROLE_ID
- AND tl.LANGUAGE = USERENV('LANG')
- AND SYSDATE BETWEEN NVL(b.START_DATE_ACTIVE, SYSDATE) AND NVL(b.END_DATE_ACTIVE, SYSDATE);
Related Objects
The JTF_RS_ROLES_B table has defined foreign key relationships with several other critical tables in the resource manager schema, as documented in the ETRM. These relationships are:
- JTF_RS_JOB_ROLES: Links roles to specific job definitions via the JTF_RS_JOB_ROLES.ROLE_ID column.
- JTF_RS_ROLES_TL: Stores translated descriptions and names for the role, joined on JTF_RS_ROLES_TL.ROLE_ID.
- JTF_RS_ROLE_RELATIONS: Manages hierarchical or associative relationships between different roles (e.g., parent-child role structures), linked through JTF_RS_ROLE_RELATIONS.ROLE_ID.
These relationships illustrate that JTF_RS_ROLES_B is a master table for role data, which is referenced to define job-role mappings, provide multilingual support, and establish role hierarchies.
-
Table: JTF_RS_ROLES_B
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_ROLES_B, object_name:JTF_RS_ROLES_B, status:VALID, product: JTF - CRM Foundation , description: Base Table JTF_RS_ROLES_B stores general information about a given Role. , implementation_dba_data: JTF.JTF_RS_ROLES_B ,
-
Table: JTF_RS_ROLES_B
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_ROLES_B, object_name:JTF_RS_ROLES_B, status:VALID, product: JTF - CRM Foundation , description: Base Table JTF_RS_ROLES_B stores general information about a given Role. , implementation_dba_data: JTF.JTF_RS_ROLES_B ,
-
Table: JTF_RS_ROLES_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_ROLES_TL, object_name:JTF_RS_ROLES_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_RS_ROLES_B. It is used to store all columns and data that are needed for Multi-Language Support. , implementation_dba_data: JTF.JTF_RS_ROLES_TL ,
-
Table: JTF_RS_ROLES_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_ROLES_TL, object_name:JTF_RS_ROLES_TL, status:VALID, product: JTF - CRM Foundation , description: Translation table for JTF_RS_ROLES_B. It is used to store all columns and data that are needed for Multi-Language Support. , implementation_dba_data: JTF.JTF_RS_ROLES_TL ,
-
Table: JTF_RS_JOB_ROLES
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_JOB_ROLES, object_name:JTF_RS_JOB_ROLES, status:VALID, product: JTF - CRM Foundation , description: This table stores the relations between roles and jobs. Primary key is job_role_id. , implementation_dba_data: JTF.JTF_RS_JOB_ROLES ,
-
Table: JTF_RS_JOB_ROLES
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_JOB_ROLES, object_name:JTF_RS_JOB_ROLES, status:VALID, product: JTF - CRM Foundation , description: This table stores the relations between roles and jobs. Primary key is job_role_id. , implementation_dba_data: JTF.JTF_RS_JOB_ROLES ,
-
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_RS_ROLES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_ROLES_VL, object_name:JTF_RS_ROLES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View forJTF_RS_ROLES_B and JTF_RS_ROLES_TL. , implementation_dba_data: APPS.JTF_RS_ROLES_VL ,
-
View: JTF_RS_ROLES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_ROLES_VL, object_name:JTF_RS_ROLES_VL, status:VALID, product: JTF - CRM Foundation , description: MLS View forJTF_RS_ROLES_B and JTF_RS_ROLES_TL. , implementation_dba_data: APPS.JTF_RS_ROLES_VL ,
-
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 ,
-
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_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.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_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 ,
-
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_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_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 ,