Search Results manager_flag
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: APPS.JTF_TTY_ALL_RESOURCES_V
12.2.2
-
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_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.JTF_RS_ROLES_B#
12.2.2
-
APPS.CN_ROLLUP_PVT SQL Statements
12.2.2
-
VIEW: APPS.CN_COMP_GROUP_ADMINS
12.2.2
-
APPS.BIL_TX_RES SQL Statements
12.1.1
-
APPS.CN_ROLLUP_PVT SQL Statements
12.1.1
-
VIEW: APPS.CN_COMP_GROUP_ADMINS
12.1.1
-
VIEW: APPS.CN_ROLES
12.2.2
-
VIEW: APPS.CN_ROLES
12.1.1
-
APPS.CN_SRP_HIER_PROC_PVT SQL Statements
12.2.2
-
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,
-
APPS.CN_SRP_HIER_PROC_PVT SQL Statements
12.1.1
-
View: EDW_HR_ASGN_ASSGNMNT_LCV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.EDW_HR_ASGN_ASSGNMNT_LCV, object_name:EDW_HR_ASGN_ASSGNMNT_LCV, status:VALID, product: HRI - Human Resources Intelligence , implementation_dba_data: APPS.EDW_HR_ASGN_ASSGNMNT_LCV ,
-
View: JTF_RS_DEFRESROLES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESROLES_VL, object_name:JTF_RS_DEFRESROLES_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used by Define Resource Form roles,gmbr_roles,tmbr_roles block , implementation_dba_data: APPS.JTF_RS_DEFRESROLES_VL ,
-
VIEW: APPS.EDW_HR_ASGN_ASSGNMNT_LCV
12.1.1
-
View: JTF_RS_DEFRESROLES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESROLES_VL, object_name:JTF_RS_DEFRESROLES_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used by Define Resource Form roles,gmbr_roles,tmbr_roles block , implementation_dba_data: APPS.JTF_RS_DEFRESROLES_VL ,
-
View: EDW_HR_ASGN_ASSGNMNT_LCV
12.2.2
product: HRI - Human Resources Intelligence (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.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,
-
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 ,
-
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: APPS.JTF_RS_DEFRESROLES_VL
12.2.2
-
VIEW: APPS.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,
-
VIEW: APPS.JTF_RS_DEFRESROLES_VL
12.1.1
-
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 ,
-
VIEW: APPS.CN_COMP_GROUP_MGRS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CN_COMP_GROUP_MGRS_V, status:VALID,
-
VIEW: APPS.CN_COMP_GROUP_ADMINS
12.2.2
owner:APPS, object_type:VIEW, object_name:CN_COMP_GROUP_ADMINS, status:VALID,
-
VIEW: APPS.CN_COMP_GROUP_ADMINS
12.1.1
owner:APPS, object_type:VIEW, object_name:CN_COMP_GROUP_ADMINS, status:VALID,
-
VIEW: APPS.CN_COMP_GROUP_MGRS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CN_COMP_GROUP_MGRS_V, status:VALID,
-
VIEW: APPS.CN_QM_SRP_GROUPS
12.2.2
owner:APPS, object_type:VIEW, object_name:CN_QM_SRP_GROUPS, 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 ,
-
APPS.EDW_HR_ASSGNMNT_M_C SQL Statements
12.1.1
-
APPS.PER_ORG_MAN_COUNT_NAME_PKG SQL Statements
12.2.2
-
VIEW: APPS.OKX_RESOURCE_ROLES_V
12.1.1
-
APPS.PER_ORG_MAN_COUNT_NAME_PKG SQL Statements
12.1.1
-
VIEW: APPS.CN_QM_SRP_GROUPS
12.1.1
owner:APPS, object_type:VIEW, object_name:CN_QM_SRP_GROUPS, status:VALID,
-
VIEW: APPS.JTF_RS_ROLE_DETAILS_VL
12.2.2
-
VIEW: APPS.CN_SRP_COMP_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:CN_SRP_COMP_GROUPS_V, status:VALID,
-
VIEW: HR.PER_ALL_ASSIGNMENTS_F#
12.2.2
-
VIEW: APPS.CN_SRP_COMP_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:CN_SRP_COMP_GROUPS_V, status:VALID,
-
VIEW: APPS.OKX_RESOURCE_ROLES_V
12.2.2
-
VIEW: JTF.JTF_RS_ROLES_B#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_RS_ROLES_B#, status:VALID,
-
PACKAGE BODY: APPS.PER_ORG_MAN_COUNT_NAME_PKG
12.1.1
-
VIEW: APPS.JTF_RS_ROLE_DETAILS_VL
12.1.1
-
VIEW: APPS.CN_QM_MGR_GROUPS
12.1.1
owner:APPS, object_type:VIEW, object_name:CN_QM_MGR_GROUPS, status:VALID,
-
PACKAGE BODY: APPS.PER_ORG_MAN_COUNT_NAME_PKG
12.2.2
-
VIEW: APPS.CN_QM_MGR_SRP_GROUPS
12.1.1
owner:APPS, object_type:VIEW, object_name:CN_QM_MGR_SRP_GROUPS, status:VALID,