Search Results role_type_code
Overview
APPS.JTF_TTY_ALL_RESOURCES_V is a reporting view in the Oracle E-Business Suite CRM resource management schema. It presents a denormalized, flattened picture of telesales resources and the sales groups and roles to which they belong, joining resource master data to group membership and role assignments in a single query block. The view is a "TTY" (telesales) construct: it exposes only resources that are assigned roles of type SALES, TELESALES or FIELDSALES, and filters each join by the effective date ranges on the underlying records so that only currently active assignments appear.
Because it resolves all of the date-effective logic internally, the view is suitable for direct consumption by reports, concurrent programs, BI Publisher data models and integration extracts that need an "as of today" roster of telesales resources together with their group and role context. It is not a base entity for transaction processing; it is a read-only convenience layer for inquiry and reporting.
Underlying Base Objects
The ETRM metadata documents four referenced base objects, all of which are themselves views (VL variants expose translated or validated columns):
- JTF_RS_RESOURCE_EXTNS_VL — the resource extension view holding resource name, resource identifier and the resource-level date-effective columns (START_DATE_ACTIVE, END_DATE_ACTIVE).
- JTF_RS_GROUPS_VL — the resource group view supplying GROUP_NAME and GROUP_ID.
- JTF_RS_ROLES_VL — the role view supplying ROLE_NAME, ROLE_CODE, ROLE_ID, ROLE_TYPE_CODE, ACTIVE_FLAG and MANAGER_FLAG.
- JTF_RS_GROUP_MBR_ROLE_VL — the group membership/role association view that links a group to a resource and to a role, and carries its own START_DATE_ACTIVE and END_DATE_ACTIVE.
The joins are driven from JTF_RS_GROUP_MBR_ROLE_VL to the resource, group and role views on RESOURCE_ID, GROUP_ID and ROLE_ID respectively. The view therefore depends on the resource-to-group membership model being populated; a resource with no group role membership will not appear.
Key Columns
- RESOURCE_NAME, RESOURCE_ID — the display name and primary key of the telesales resource.
- GROUP_NAME, GROUP_ID — the sales group to which the resource is assigned for the active membership period.
- ROLE_NAME, ROLE_CODE — the role held by the resource within that group, restricted to roles of type SALES, TELESALES or FIELDSALES.
- MANAGER_FLAG — the flag carried on the role record (JTF_RS_ROLES_VL.MANAGER_FLAG) indicating whether the role is a managerial one. This is the column users typically search for when they want to separate manager-level resources from individual contributors in a group.
All effective-date columns from the base objects are consumed in the WHERE clause and are not projected, so the result set is implicitly "active as of SYSDATE".
Common Use Cases and Queries
Typical usages include building telesales organization charts, identifying group managers, validating role assignments prior to territory or lead routing changes, and feeding downstream extracts with a current resource-and-role mapping.
To list all active telesales resources with their group and role:
- SELECT resource_name, group_name, role_name, role_code, manager_flag FROM apps.jtf_tty_all_resources_v ORDER BY group_name, manager_flag DESC, resource_name;
To isolate managers within a group:
- SELECT resource_name, resource_id, group_name, role_name FROM apps.jtf_tty_all_resources_v WHERE manager_flag = 'Y' AND group_name = :p_group_name;
To count resources by role type per group:
- SELECT group_name, role_code, COUNT(DISTINCT resource_id) resource_count FROM apps.jtf_tty_all_resources_v GROUP BY group_name, role_code;
Because date filtering is embedded, no additional SYSDATE predicates are required. Users should note that the view reflects only role types SALES, TELESALES and FIELDSALES and only active roles (ACTIVE_FLAG = 'Y'), which should be taken into account when reconciling against base JTF_RS_ROLES_VL data.
-
VIEW: APPS.JTF_TTY_ALL_RESOURCES_V
12.1.1
-
VIEW: QPR.QPR_USR_ASSIGNMENTS#
12.2.2
-
VIEW: APPS.JTF_TTY_ALL_RESOURCES_V
12.2.2
-
VIEW: JTF.JTF_RS_DEFAULT_GROUPS_INT#
12.2.2
-
VIEW: JTF.JTF_RS_SRP_GROUPS_INT#
12.2.2
-
View: JTF_TTY_ALL_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_ALL_RESOURCES_V, object_name:JTF_TTY_ALL_RESOURCES_V, status:VALID, product: JTF - CRM Foundation , description: View for all resources , implementation_dba_data: APPS.JTF_TTY_ALL_RESOURCES_V ,
-
View: JTF_TTY_ALL_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_ALL_RESOURCES_V, object_name:JTF_TTY_ALL_RESOURCES_V, status:VALID, product: JTF - CRM Foundation , description: View for all resources , implementation_dba_data: APPS.JTF_TTY_ALL_RESOURCES_V ,
-
VIEW: JTF.JTF_RS_ROLES_B#
12.2.2
-
VIEW: APPS.CN_ROLES
12.2.2
-
TABLE: QPR.QPR_USR_ASSIGNMENTS
12.2.2
owner:QPR, object_type:TABLE, object_name:QPR_USR_ASSIGNMENTS, status:VALID,
-
VIEW: APPS.CN_ROLES
12.1.1
-
VIEW: JTF.JTF_RS_SRP_GROUPS_INT#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_RS_SRP_GROUPS_INT#, status:VALID,
-
View: OKX_RESOURCE_ROLES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_RESOURCE_ROLES_V, object_name:OKX_RESOURCE_ROLES_V, status:VALID, product: OKX - Contracts Integration , description: Information about role and resource associations , implementation_dba_data: APPS.OKX_RESOURCE_ROLES_V ,
-
TABLE: JTF.MLOG$_JTF_RS_ROLES_B
12.2.2
owner:JTF, object_type:TABLE, object_name:MLOG$_JTF_RS_ROLES_B, status:VALID,
-
VIEW: APPS.JTF_RS_SRP_GROUPS_V
12.2.2
-
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 ,
-
APPS.AS_AUTOCREATE_OPP SQL Statements
12.2.2
-
TABLE: QPR.QPR_USR_ASSIGNMENTS
12.1.1
owner:QPR, object_type:TABLE, object_name:QPR_USR_ASSIGNMENTS, status:VALID,
-
VIEW: JTF.JTF_RS_DEFAULT_GROUPS_INT#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_RS_DEFAULT_GROUPS_INT#, status:VALID,
-
View: IGS_AD_PANEL_MEMBRS_V
12.2.2
product: IGS - Student System (Obsolete) , description: iew of IGS_AD_PANEL_MEMBRS table. Show the Panel Members of the Panel. , implementation_dba_data: Not implemented in this database ,
-
View: JTF_RS_ROLE_DETAILS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_ROLE_DETAILS_VL, object_name:JTF_RS_ROLE_DETAILS_VL, status:VALID, product: JTF - CRM Foundation , description: This View shows Roles and its details like Role type, Role name, etc. , implementation_dba_data: APPS.JTF_RS_ROLE_DETAILS_VL ,
-
TABLE: JTF.MLOG$_JTF_RS_ROLES_B
12.1.1
owner:JTF, object_type:TABLE, object_name:MLOG$_JTF_RS_ROLES_B, status:VALID,
-
View: OKX_RESOURCE_ROLES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKX.OKX_RESOURCE_ROLES_V, object_name:OKX_RESOURCE_ROLES_V, status:VALID, product: OKX - Contracts Integration , description: Information about role and resource associations , implementation_dba_data: APPS.OKX_RESOURCE_ROLES_V ,
-
VIEW: APPS.JTF_RS_SRP_GROUPS_V
12.1.1
-
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 ,
-
APPS.AS_AUTOCREATE_OPP SQL Statements
12.1.1
-
VIEW: QPR.QPR_USR_ASSIGNMENTS#
12.2.2
owner:QPR, object_type:VIEW, object_name:QPR_USR_ASSIGNMENTS#, status:VALID,
-
View: JTF_RS_ROLE_DETAILS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_ROLE_DETAILS_VL, object_name:JTF_RS_ROLE_DETAILS_VL, status:VALID, product: JTF - CRM Foundation , description: This View shows Roles and its details like Role type, Role name, etc. , implementation_dba_data: APPS.JTF_RS_ROLE_DETAILS_VL ,
-
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: APPS.JTF_RS_ROLE_DETAILS_VL
12.2.2
-
VIEW: APPS.OKX_RESOURCE_ROLES_V
12.1.1
-
View: IGS_AD_PANEL_MEMBRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PANEL_MEMBRS_V, object_name:IGS_AD_PANEL_MEMBRS_V, status:VALID, product: IGS - Student System , description: iew of IGS_AD_PANEL_MEMBRS table. Show the Panel Members of the Panel. , implementation_dba_data: APPS.IGS_AD_PANEL_MEMBRS_V ,
-
VIEW: APPS.AST_RS_GRP_VALID_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RS_GRP_VALID_V, object_name:AST_RS_GRP_VALID_V, status:VALID,
-
TABLE: JTF.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,
-
VIEW: APPS.IGS_AD_PANEL_MEMBRS_V
12.1.1
-
VIEW: JTF.JTF_RS_ROLES_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_RS_ROLES_B#, status:VALID,
-
VIEW: APPS.OKX_RESOURCE_ROLES_V
12.2.2
-
TABLE: IGS.IGS_AD_PANEL_MEMBRS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_PANEL_MEMBRS, object_name:IGS_AD_PANEL_MEMBRS, status:VALID,
-
VIEW: APPS.AST_RS_GRP_VALID_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_RS_GRP_VALID_V, object_name:AST_RS_GRP_VALID_V, status:VALID,
-
VIEW: APPS.JTF_RS_ROLE_DETAILS_VL
12.1.1
-
TABLE: JTF.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,
-
VIEW: APPS.JTF_RS_GROUP_DTLS_VL
12.1.1
-
VIEW: APPS.JTF_RS_GROUP_DTLS_VL
12.2.2
-
View: IGS_AD_PNMEMBR_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PNMEMBR_DTLS_V, object_name:IGS_AD_PNMEMBR_DTLS_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_PNMEMBR_DTLS. Shows the Application instances assigned for a panel member along with the Panel member Interview location and decision details. , implementation_dba_data: APPS.IGS_AD_PNMEMBR_DTLS_V ,
-
VIEW: APPS.JTF_RS_ROLE_RELATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_ROLE_RELATIONS_VL, object_name:JTF_RS_ROLE_RELATIONS_VL, status:VALID,
-
TABLE: JTF.JTF_RS_SRP_GROUPS_INT
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_SRP_GROUPS_INT, object_name:JTF_RS_SRP_GROUPS_INT, status:VALID,
-
TABLE: JTF.JTF_RS_DEFAULT_GROUPS_INT
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_DEFAULT_GROUPS_INT, object_name:JTF_RS_DEFAULT_GROUPS_INT, status:VALID,
-
View: OE_CUST_SITE_PHONE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUST_SITE_PHONE_V, object_name:OE_CUST_SITE_PHONE_V, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_CUST_SITE_PHONE_V ,
-
VIEW: APPS.OE_CUSTOMER_SITE_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_CUSTOMER_SITE_CONTACTS_V, object_name:OE_CUSTOMER_SITE_CONTACTS_V, status:VALID,