Search Results logged_resource_in
Overview
APPS.JTF_TASK_SECURITY_V is a security-resolution view in the Oracle E-Business Suite CRM Foundation (JTF) schema that consolidates the effective task access assignments for the currently authenticated user. Rather than storing rows itself, the view is a runtime union that derives one row per security principal through which the logged-in user obtains access to task and resource data. In releases 12.1.1 and 12.2.2 the view is a core component of the Oracle Task Manager security model, feeding the access predicates used by task, calendar, and resource reporting. Its most frequently referenced attribute is the literal privilege value JTF_TASK_FULL_ACCESS, which appears in every branch of the UNION ALL and signals that the row represents full-access entitlement rather than a restricted grant. The view is owned by APPS and is therefore normally queried without an owner prefix in custom reports and integrations.
Because the view resolves identities from session context (notably FND_GLOBAL.USER_ID), its result set is user-specific and changes at runtime. This makes it suitable for embedded security filters in concurrent programs, OAF pages, and BI Publisher data models, but unsuitable as a static staging source.
Underlying Base Objects
The view is defined as a four-branch UNION ALL over the following documented objects:
- JTF_RS_GROUP_MEMBERS — supplies group-based entitlement, returning GROUP_ID as RS_ID with RS_TYPE 'RS_GROUP'.
- JTF_RS_RESOURCE_EXTNS — filtered by USER_ID = FND_GLOBAL.USER_ID, returns the resource records directly mapped to the session user, with RS_TYPE built as 'RS_' concatenated with CATEGORY.
- JTF_RS_TEAM_MEMBERS — supplies team-based entitlement, returning TEAM_ID and TEAM_RESOURCE_ID with RS_TYPE 'RS_TEAM'.
- FND_FORM_FUNCTIONS, FND_MENU_ENTRIES, FND_MENUS, FND_GRANTS, and FND_OBJECTS — joined on function/menu/grant keys where OBJ_NAME = 'JTF_TASK_RESOURCE', yielding function-level grants via the FND_GRANTS.INSTANCE_PK1_VALUE and INSTANCE_PK2_VALUE columns.
- FND_GLOBAL — the package supplying USER_ID, used both as a filter and as the source of LOGGED_RESOURCE_IN values.
All of the above are referenced as APPS synonyms in the ETRM metadata, so the view presents a unified security surface across the Resource Manager tables and thefunction security tables.
Key Columns
- RS_ID — the identifier of the security principal (group, resource, team, or instance key from FND_GRANTS).
- RS_TYPE — the principal category: 'RS_GROUP', 'RS_TEAM', the concatenated 'RS_'||CATEGORY value, or the function name from FND_FORM_FUNCTIONS for grant-derived rows.
- PRIVELEGE — the privilege granted. All four branches emit the literal 'JTF_TASK_FULL_ACCESS', which is the term users typically search for.
- LOGGED_RESOURCE_IN — the resource identifier of the currently logged-in user within the security context, expressed as a character value for the resource branches and as GRANTEE_KEY for the grant branch.
Common Use Cases and Queries
The view is most commonly used to determine which resources, groups, and teams the session user may act upon when listing or updating tasks. A representative unrestricted query is:
SELECT rs_id, rs_type, privelege, logged_resource_in FROM apps.jtf_task_security_v;
To confirm whether a specific privilege is present for the current user:
SELECT COUNT(*) FROM apps.jtf_task_security_v WHERE privelege = 'JTF_TASK_FULL_ACCESS';
To isolate team-based entitlements only:
SELECT rs_id, logged_resource_in FROM apps.jtf_task_security_v WHERE rs_type = 'RS_TEAM';
Because the view references FND_GLOBAL.USER_ID, queries must be executed in a session where FND_GLOBAL has been initialized; running it as a plain schema user without an EBS session returns an empty result set. Integrations should therefore invoke it from within an authenticated EBS context, such as a concurrent program or an OA Framework page, and should not persist its output as a materialized access list, since entitlement changes and session identity changes are reflected only at query time.
-
VIEW: APPS.JTF_TASK_SECURITY_V
12.2.2
-
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: APPS.JTF_TASK_SECURITY_V
12.1.1
-
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 ,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,