Search Results jtf_task_assignee_roles
Overview
APPS.AST_TASK_ASSIGNMENTS_V is a reporting and integration view in Oracle E-Business Suite (EBS) Release 12.1.1 and 12.2.2 that exposes task assignment records from the Oracle Common Task Manager (a component shared across CRM applications such as TeleSales, Service, and Field Service). Where the base table JTF_TASK_ALL_ASSIGNMENTS stores assignment rows keyed by internal IDs and short codes, this view denormalizes the data by joining to translation, status, object, and lookup tables so that each row presents human-readable names and meanings. The view is owned by the APPS schema and is intended for read-only consumption; no insert, update, or delete applies to the ROWID-based selection it exposes.
A distinctive feature relevant to the search term jtf_task_assignee_roles is that the view resolves the ASSIGNEE_ROLE column against the FND lookup type JTF_TASK_ASSIGNEE_ROLES. This lookup classifies the role a resource plays on a task (for example, owner, primary assignee, or other role codes configured at implementation time).
Underlying Base Objects
The view is defined over the following documented objects:
JTF_TASK_ALL_ASSIGNMENTS(synonym) — the primary source of assignment rows, aliasedASSG.JTF_OBJECTS_TL(synonym) — the translated object/resource type table, aliasedOBJ, providingOBJ.NAMEwhereOBJ.OBJECT_CODE = ASSG.RESOURCE_TYPE_CODEand language matchesUSERENV('LANG').JTF_TASK_STATUSES_TL(synonym) — the translated task status table, aliasedSTAT, providing the status name whereSTAT.TASK_STATUS_ID = ASSG.ASSIGNMENT_STATUS_ID.FND_LOOKUPS(view) — joined with an outer join ((+)) onASSG.ASSIGNEE_ROLE = flk.lookup_codeandflk.lookup_type = 'JTF_TASK_ASSIGNEE_ROLES', yieldingflk.meaning.JTF_TASK_UTL(package) — suppliesGET_OWNER(RESOURCE_TYPE_CODE, RESOURCE_ID)to resolve the resource owner.FND_GLOBAL(package) — indirectly referenced through theUSERENV('LANG')language context used in the translation joins.
Key Columns
TASK_ASSIGNMENT_ID,TASK_ID— primary and parent task identifiers linking back to the task and assignment base tables.RESOURCE_TYPE_CODE,RESOURCE_ID,OBJ.NAME— the assigned resource type and its translated description.JTF_TASK_UTL.GET_OWNER(...)— resolved owner of the assigned resource.ASSIGNMENT_STATUS_ID,STAT.NAME— assignment status identifier and translated status name.ASSIGNEE_ROLE,flk.meaning— the role code and its decoded meaning fromJTF_TASK_ASSIGNEE_ROLES.ACTUAL_EFFORT,ACTUAL_EFFORT_UOM— recorded effort and its unit of measure.SCHEDULE_FLAG,SHOW_ON_CALENDAR,PALM_FLAG,WINCE_FLAG,LAPTOP_FLAG,DEVICE1_FLAG–DEVICE3_FLAG— scheduling and mobile-device indicators.ACTUAL_START_DATE,ACTUAL_END_DATE, travel distance/duration columns — execution and travel metrics.ATTRIBUTE_CATEGORYandATTRIBUTE1–ATTRIBUTE15— descriptive flexfield segments for extensibility.- Standard audit/WHO columns (
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN,OBJECT_VERSION_NUMBER).
Common Use Cases and Queries
Typical uses include task workload reporting, resource assignment auditing, role-based analysis of assignees, and integration extracts for scheduling or mobile synchronization. The following query returns assignment detail filtered by assignee role code:
SELECT TASK_ASSIGNMENT_ID
, TASK_ID
, NAME AS RESOURCE_TYPE
, RESOURCE_ID
, meaning AS ASSIGNEE_ROLE_MEANING
, STAT_NAME
FROM APPS.AST_TASK_ASSIGNMENTS_V
WHERE ASSIGNEE_ROLE = '&role_code';
Because the view resolves the language-specific names via USERENV('LANG'), results reflect the session language. When querying in a reporting context, columns such as attribute_category and attribute1–attribute15 support DFF-based segmentation. Note that because the view performs multiple joins, filtering on indexed base columns (task id, resource id) yields the best performance.
-
Lookup Type: JTF_TASK_ASSIGNEE_ROLES
12.2.2
product: JTF - CRM Foundation , meaning: Assignee roles for task , description: Assignee roles for task ,
-
Lookup Type: JTF_TASK_ASSIGNEE_ROLES
12.1.1
product: JTF - CRM Foundation , meaning: Assignee roles for task , description: Assignee roles for task ,
-
VIEW: APPS.AST_TASK_ASSIGNMENTS_V
12.2.2
-
VIEW: APPS.AST_TASK_ASSIGNMENTS_V
12.1.1
-
View: AST_TASK_ASSIGNMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_TASK_ASSIGNMENTS_V, object_name:AST_TASK_ASSIGNMENTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_TASK_ASSIGNMENTS_V ,
-
View: AST_TASK_ASSIGNMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AST.AST_TASK_ASSIGNMENTS_V, object_name:AST_TASK_ASSIGNMENTS_V, status:VALID, product: AST - TeleSales , implementation_dba_data: APPS.AST_TASK_ASSIGNMENTS_V ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.JTF_TASK_ASSIGNMENTS_PVT
12.1.1
-
PACKAGE BODY: APPS.JTF_TASK_ASSIGNMENTS_PVT
12.2.2
-
APPS.JTF_TASK_ASSIGNMENTS_PVT dependencies on JTF_TASK_UTL
12.2.2
-
APPS.JTF_TASK_ASSIGNMENTS_PVT dependencies on JTF_TASK_UTL
12.1.1
-
APPS.JTF_TASK_ASSIGNMENTS_PVT dependencies on FND_API
12.2.2
-
APPS.JTF_TASK_ASSIGNMENTS_PVT dependencies on FND_API
12.1.1