Search Results jtf_rs_resource_extns
Overview
The JTF_RS_RESOURCE_EXTNS table is a core master data table within the Oracle E-Business Suite CRM Foundation (JTF) module. It serves as the central repository for storing comprehensive information about "Resources," which are the fundamental entities representing people or entities that perform work within the CRM ecosystem. As indicated in the ETRM documentation, these resources can originate from various source systems, including Human Resources (HR), Trading Community Architecture (HZ for parties), or external vendors. Its primary role is to provide a unified, extensible view of all resources, enabling their assignment, management, and tracking across numerous CRM and related applications such as Marketing (AMS), Sales, and Service. The table is critical for resource-centric operations and security.
Key Information Stored
The table's structure is designed to capture essential identifying and descriptive attributes for each resource. The primary key is the RESOURCE_ID, which uniquely identifies each record. As per the documentation, RESOURCE_NUMBER and USER_ID are also enforced as unique keys, linking the resource to a system user. Other significant columns, inferred from the foreign key relationships and standard implementation, include CATEGORY (classifying the resource type, linked to JTF_OBJECTS_B), CONTACT_ID (linking to a party contact in HZ_ORG_CONTACTS), and SUPPORT_SITE_ID (linking to a physical address in HZ_PARTY_SITES). The table typically also stores the resource's name, email, active status, start and end dates, and various classification attributes.
Common Use Cases and Queries
This table is central to reporting and operations involving resource data. Common use cases include generating resource directories, assigning owners to CRM objects like campaigns and leads, setting up team hierarchies, and driving resource-based security models. A fundamental query retrieves active resources for a given category:
SELECT resource_id, resource_name, user_id, category FROM jtf_rs_resource_extns WHERE sysdate BETWEEN start_date_active AND NVL(end_date_active, sysdate) AND category = 'EMPLOYEE';
Another frequent pattern joins to user and party tables to create a comprehensive contact list:
SELECT res.resource_name, res.email_address, ps.party_site_name FROM jtf_rs_resource_extns res, hz_party_sites ps WHERE res.support_site_id = ps.party_site_id(+);
It is also heavily queried by the application's resource management APIs and user interfaces.
Related Objects
JTF_RS_RESOURCE_EXTNS has extensive relationships across the EBS suite, as evidenced by the provided foreign key metadata. Key documented relationships include:
- Primary Source/Domain Tables: JTF_OBJECTS_B (via CATEGORY), HZ_PARTY_SITES (via SUPPORT_SITE_ID), HZ_ORG_CONTACTS (via CONTACT_ID).
- Major Dependent CRM Tables: A wide array of Marketing (AMS) tables reference it as an owner, coordinator, or approver, including AMS_CAMPAIGNS_ALL_B (OWNER_USER_ID), AMS_EVENT_HEADERS_ALL_B (OWNER_USER_ID, COORDINATOR_ID), and AMS_DM_MODELS_ALL_B (OWNER_USER_ID).
- Other Dependent Tables: AMS_ACT_ACCESS_DENORM (RESOURCE_ID), AMS_ACT_RESOURCES (RESOURCE_ID), AMS_CELLS_ALL_B (OWNER_ID).
These relationships underscore its role as the authoritative source for resource identifiers linked to transactional data.
-
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 ,
-
View: JTF_TERR_QLFY_RSC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_QLFY_RSC_V, object_name:JTF_TERR_QLFY_RSC_V, status:VALID, product: JTF - CRM Foundation , description: This view stores all the informations about resources, groups and teams . , implementation_dba_data: APPS.JTF_TERR_QLFY_RSC_V ,
-
View: JTF_TERR_QLFY_RSC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_QLFY_RSC_V, object_name:JTF_TERR_QLFY_RSC_V, status:VALID, product: JTF - CRM Foundation , description: This view stores all the informations about resources, groups and teams . , implementation_dba_data: APPS.JTF_TERR_QLFY_RSC_V ,
-
Table: JTF_RS_RESOURCE_DENORM
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_DENORM, object_name:JTF_RS_RESOURCE_DENORM, status:VALID, product: JTF - CRM Foundation , description: This is a denormalized table for Resources. It stores hierarchial information about resources. , implementation_dba_data: JTF.JTF_RS_RESOURCE_DENORM ,
-
Table: JTF_RS_RESOURCE_DENORM
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_DENORM, object_name:JTF_RS_RESOURCE_DENORM, status:VALID, product: JTF - CRM Foundation , description: This is a denormalized table for Resources. It stores hierarchial information about resources. , implementation_dba_data: JTF.JTF_RS_RESOURCE_DENORM ,
-
View: JTF_TERR_RSC_LANG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_RSC_LANG_V, object_name:JTF_TERR_RSC_LANG_V, status:VALID, product: JTF - CRM Foundation , description: This shows a resource's language(s). , implementation_dba_data: APPS.JTF_TERR_RSC_LANG_V ,
-
View: JTF_TERR_RSC_LANG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_RSC_LANG_V, object_name:JTF_TERR_RSC_LANG_V, status:VALID, product: JTF - CRM Foundation , description: This shows a resource's language(s). , implementation_dba_data: APPS.JTF_TERR_RSC_LANG_V ,
-
Table: JTF_RS_RESOURCE_EXTNS_INT
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS_INT, object_name:JTF_RS_RESOURCE_EXTNS_INT, status:VALID, product: JTF - CRM Foundation , description: This interface table is used for population of Resource entity in JTF_RS_RESOURCE_EXTNS and JTF_RS_RESOURCE_EXTNS_TL tables. , implementation_dba_data: JTF.JTF_RS_RESOURCE_EXTNS_INT ,
-
Table: JTF_TTY_NAMED_ACCT_RSC
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_NAMED_ACCT_RSC, object_name:JTF_TTY_NAMED_ACCT_RSC, status:VALID, product: JTF - CRM Foundation , description: Contains Named Account assignments. , implementation_dba_data: JTF.JTF_TTY_NAMED_ACCT_RSC ,
-
Table: JTF_TTY_ALIGNMENTS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_ALIGNMENTS, object_name:JTF_TTY_ALIGNMENTS, status:VALID, product: JTF - CRM Foundation , description: Contains basic Alignment information , implementation_dba_data: JTF.JTF_TTY_ALIGNMENTS ,
-
Table: JTF_TTY_NAMED_ACCT_RSC
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_NAMED_ACCT_RSC, object_name:JTF_TTY_NAMED_ACCT_RSC, status:VALID, product: JTF - CRM Foundation , description: Contains Named Account assignments. , implementation_dba_data: JTF.JTF_TTY_NAMED_ACCT_RSC ,
-
Table: JTF_TTY_RSC_ACCT_SUMM
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_RSC_ACCT_SUMM, object_name:JTF_TTY_RSC_ACCT_SUMM, status:VALID, product: JTF - CRM Foundation , description: This table stores summarized data for sales RM bin , implementation_dba_data: JTF.JTF_TTY_RSC_ACCT_SUMM ,
-
Table: JTF_RS_RESOURCE_VALUES
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_VALUES, object_name:JTF_RS_RESOURCE_VALUES, status:VALID, product: JTF - CRM Foundation , description: This table stores resource values. Resource_param_value_id is the primary key. , implementation_dba_data: JTF.JTF_RS_RESOURCE_VALUES ,
-
Table: JTF_TTY_TERR_GRP_OWNERS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_TERR_GRP_OWNERS, object_name:JTF_TTY_TERR_GRP_OWNERS, status:VALID, product: JTF - CRM Foundation , description: This table stores owner information for territory groups , implementation_dba_data: JTF.JTF_TTY_TERR_GRP_OWNERS ,
-
Table: JTF_RS_REP_MANAGERS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_REP_MANAGERS, object_name:JTF_RS_REP_MANAGERS, status:VALID, product: JTF - CRM Foundation , description: Denormalized table that stores the reporting hierarchy of group members , implementation_dba_data: JTF.JTF_RS_REP_MANAGERS ,
-
Table: JTF_TTY_ACCT_RSC_DN
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_ACCT_RSC_DN, object_name:JTF_TTY_ACCT_RSC_DN, status:VALID, product: JTF - CRM Foundation , description: This table stores named account assignments in denormalized manner , implementation_dba_data: JTF.JTF_TTY_ACCT_RSC_DN ,
-
Table: JTF_TTY_TERR_GRP_OWNERS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_TERR_GRP_OWNERS, object_name:JTF_TTY_TERR_GRP_OWNERS, status:VALID, product: JTF - CRM Foundation , description: This table stores owner information for territory groups , implementation_dba_data: JTF.JTF_TTY_TERR_GRP_OWNERS ,
-
Table: JTF_TTY_ALIGNMENTS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_ALIGNMENTS, object_name:JTF_TTY_ALIGNMENTS, status:VALID, product: JTF - CRM Foundation , description: Contains basic Alignment information , implementation_dba_data: JTF.JTF_TTY_ALIGNMENTS ,
-
Table: JTF_RS_REP_MANAGERS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_REP_MANAGERS, object_name:JTF_RS_REP_MANAGERS, status:VALID, product: JTF - CRM Foundation , description: Denormalized table that stores the reporting hierarchy of group members , implementation_dba_data: JTF.JTF_RS_REP_MANAGERS ,
-
Table: JTF_RS_RESOURCE_VALUES
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_VALUES, object_name:JTF_RS_RESOURCE_VALUES, status:VALID, product: JTF - CRM Foundation , description: This table stores resource values. Resource_param_value_id is the primary key. , implementation_dba_data: JTF.JTF_RS_RESOURCE_VALUES ,
-
Table: JTF_TTY_RSC_ACCT_SUMM
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_RSC_ACCT_SUMM, object_name:JTF_TTY_RSC_ACCT_SUMM, status:VALID, product: JTF - CRM Foundation , description: This table stores summarized data for sales RM bin , implementation_dba_data: JTF.JTF_TTY_RSC_ACCT_SUMM ,
-
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 ,
-
Table: JTF_TERR_RSC_ALL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TERR_RSC_ALL, object_name:JTF_TERR_RSC_ALL, status:VALID, product: JTF - CRM Foundation , description: Stores the resources that are assigned to a territory. , implementation_dba_data: JTF.JTF_TERR_RSC_ALL ,
-
Table: JTF_TTY_ACCT_RSC_DN
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_ACCT_RSC_DN, object_name:JTF_TTY_ACCT_RSC_DN, status:VALID, product: JTF - CRM Foundation , description: This table stores named account assignments in denormalized manner , implementation_dba_data: JTF.JTF_TTY_ACCT_RSC_DN ,
-
Table: JTF_RS_RESOURCE_EXTN_AUD
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTN_AUD, object_name:JTF_RS_RESOURCE_EXTN_AUD, status:VALID, product: JTF - CRM Foundation , description: The table that stores audit information for Resources , implementation_dba_data: JTF.JTF_RS_RESOURCE_EXTN_AUD ,
-
Table: JTF_TERR_RSC_ALL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TERR_RSC_ALL, object_name:JTF_TERR_RSC_ALL, status:VALID, product: JTF - CRM Foundation , description: Stores the resources that are assigned to a territory. , implementation_dba_data: JTF.JTF_TERR_RSC_ALL ,
-
Table: JTF_CAL_ADDRESSES
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_CAL_ADDRESSES, object_name:JTF_CAL_ADDRESSES, status:VALID, product: JTF - CRM Foundation , description: This table is used to store addresses of private contacts, the table is design to make Palm sync possible in the future. , implementation_dba_data: JTF.JTF_CAL_ADDRESSES ,
-
Table: JTF_RS_TEAM_MEMBERS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_TEAM_MEMBERS, object_name:JTF_RS_TEAM_MEMBERS, status:VALID, product: JTF - CRM Foundation , description: This table stores the resources who are assigned to be team members. Primary key is Team_member_id. , implementation_dba_data: JTF.JTF_RS_TEAM_MEMBERS ,
-
Table: JTF_RS_RESOURCE_EXTN_AUD
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTN_AUD, object_name:JTF_RS_RESOURCE_EXTN_AUD, status:VALID, product: JTF - CRM Foundation , description: The table that stores audit information for Resources , implementation_dba_data: JTF.JTF_RS_RESOURCE_EXTN_AUD ,
-
Table: JTF_CAL_ADDRESSES
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_CAL_ADDRESSES, object_name:JTF_CAL_ADDRESSES, status:VALID, product: JTF - CRM Foundation , description: This table is used to store addresses of private contacts, the table is design to make Palm sync possible in the future. , implementation_dba_data: JTF.JTF_CAL_ADDRESSES ,
-
Table: JTF_RS_TEAM_MEMBERS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_TEAM_MEMBERS, object_name:JTF_RS_TEAM_MEMBERS, status:VALID, product: JTF - CRM Foundation , description: This table stores the resources who are assigned to be team members. Primary key is Team_member_id. , implementation_dba_data: JTF.JTF_RS_TEAM_MEMBERS ,
-
Table: JTF_TTY_ALIGN_PTERR
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_ALIGN_PTERR, object_name:JTF_TTY_ALIGN_PTERR, status:VALID, product: JTF - CRM Foundation , description: Stores the Resources used in the Alignment and their proposed quotas , implementation_dba_data: JTF.JTF_TTY_ALIGN_PTERR ,
-
Table: JTF_TTY_ALIGN_PTERR
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TTY_ALIGN_PTERR, object_name:JTF_TTY_ALIGN_PTERR, status:VALID, product: JTF - CRM Foundation , description: Stores the Resources used in the Alignment and their proposed quotas , implementation_dba_data: JTF.JTF_TTY_ALIGN_PTERR ,
-
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_SALESREPS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_SALESREPS, object_name:JTF_RS_SALESREPS, status:VALID, product: JTF - CRM Foundation , description: This table stores information about salesreps. Salesrep_id is the primary key. If resource category is 'OTHERS' then salesrep_number and org_id are unique. , implementation_dba_data: JTF.JTF_RS_SALESREPS ,
-
Table: JTF_RS_SALESREPS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_SALESREPS, object_name:JTF_RS_SALESREPS, status:VALID, product: JTF - CRM Foundation , description: This table stores information about salesreps. Salesrep_id is the primary key. If resource category is 'OTHERS' then salesrep_number and org_id are unique. , implementation_dba_data: JTF.JTF_RS_SALESREPS ,
-
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_RESOURCE_EXTNS_TL
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS_TL, object_name:JTF_RS_RESOURCE_EXTNS_TL, 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_TL ,
-
Table: JTF_RS_RESOURCE_EXTNS_TL
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS_TL, object_name:JTF_RS_RESOURCE_EXTNS_TL, 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_TL ,
-
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 ,
-
Table: JTF_IH_INTERACTIONS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_INTERACTIONS, object_name:JTF_IH_INTERACTIONS, status:VALID, product: JTF - CRM Foundation , description: A contact point between a customer, customer system or potential customer and a single human or automated agent (Handler and Handler Resource). An Interaction can be timed and has an outcome and result that can be tracked. Multiple Intera , implementation_dba_data: JTF.JTF_IH_INTERACTIONS ,
-
View: CAC_TASK_RS_EXTNS_SEC
12.2.2
product: JTF - CRM Foundation , implementation_dba_data: Not implemented in this database ,
-
Table: JTF_IH_INTERACTIONS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_IH_INTERACTIONS, object_name:JTF_IH_INTERACTIONS, status:VALID, product: JTF - CRM Foundation , description: A contact point between a customer, customer system or potential customer and a single human or automated agent (Handler and Handler Resource). An Interaction can be timed and has an outcome and result that can be tracked. Multiple Intera , implementation_dba_data: JTF.JTF_IH_INTERACTIONS ,
-
View: CAC_TASK_RS_EXTNS_SEC
12.1.1
product: JTF - CRM Foundation , implementation_dba_data: Not implemented in this database ,
-
View: JTF_RS_TEAM_MEMBERS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_TEAM_MEMBERS_VL, object_name:JTF_RS_TEAM_MEMBERS_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used in define Team form members block. , implementation_dba_data: APPS.JTF_RS_TEAM_MEMBERS_VL ,
-
View: JTF_RS_TEAM_MEMBERS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_TEAM_MEMBERS_VL, object_name:JTF_RS_TEAM_MEMBERS_VL, status:VALID, product: JTF - CRM Foundation , description: This view is used in define Team form members block. , implementation_dba_data: APPS.JTF_RS_TEAM_MEMBERS_VL ,
-
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 ,