Search Results ast_task_assignments_v
Overview
The AST_TASK_ASSIGNMENTS_V view is a predefined, VALID database object owned by the APPS schema in Oracle E-Business Suite releases 12.1.1 and 12.2.2. It belongs to the AST – TeleSales product family and exposes task assignment information maintained by the common task infrastructure shared across Oracle CRM applications. Functionally, the view presents one row per task assignment record, denormalizing the assignment against descriptive names for the assigned resource type, the assignment status, and the assignee role. It is the standard read-only interface through which TeleSales and downstream reporting components retrieve assignment-level detail without querying the underlying transactional tables directly.
Because the view is defined in the APPS schema and joins translation and lookup tables, it is intended for reporting, concurrent program extracts, form-based queries, and integration payloads where human-readable assignment data is required. The view is registered as a valid object at the listed releases and references only supported base objects.
Underlying Base Objects
The view text is built over the following documented objects:
- JTF_TASK_ALL_ASSIGNMENTS (synonym) — the driving table, aliased
ASSG, supplying all assignment columns includingASSIGNEE_ROLE. - JTF_OBJECTS_TL (synonym) — aliased
OBJ, joined onOBJ.OBJECT_CODE = ASSG.RESOURCE_TYPE_CODEto resolve the resource type name, filtered byOBJ.LANGUAGE = USERENV('LANG'). - JTF_TASK_STATUSES_TL (synonym) — aliased
STAT, joined onSTAT.TASK_STATUS_ID = ASSG.ASSIGNMENT_STATUS_IDto resolve the assignment status name, also language-filtered. - FND_LOOKUPS (view) — aliased
FLK, outer-joined onASSG.ASSIGNEE_ROLE = FLK.LOOKUP_CODEwithFLK.LOOKUP_TYPE = 'JTF_TASK_ASSIGNEE_ROLES'to supply the lookup meaning for the assignee role. - JTF_TASK_UTL (package) — invoked as
JTF_TASK_UTL.GET_OWNERto derive the resource owner from the resource type code and resource ID. - FND_GLOBAL (package) — indirectly referenced via
USERENV('LANG'), which resolves the current session language used by the translation joins.
Key Columns
- TASK_ASSIGNMENT_ID, TASK_ID — primary assignment identifier and its parent task identifier.
- RESOURCE_TYPE_CODE / RESOURCE_TYPE — the resource type code from the assignment and its translated name.
- RESOURCE_ID / RESOURCE_NAME — the assigned resource and the derived owner name returned by
JTF_TASK_UTL.GET_OWNER. - ASSIGNMENT_STATUS_ID / ASSIGNMENT_STATUS — status identifier and its translated display name.
- ASSIGNEE_ROLE — the role of the assignee, validated against the
JTF_TASK_ASSIGNEE_ROLESlookup; theMEANINGcolumn supplies its descriptive value. - ACTUAL_EFFORT, ACTUAL_EFFORT_UOM — effort recorded against the assignment and its unit of measure.
- ACTUAL_START_DATE, ACTUAL_END_DATE — actual execution timestamps for the assignment.
- SCHEDULE_FLAG, SHOW_ON_CALENDAR, ALARM_TYPE_CODE, ALARM_CONTACT — scheduling and notification attributes.
- Scheduled and actual travel columns for distance, duration, and UOM.
- PALM_FLAG, WINCE_FLAG, LAPTOP_FLAG, DEVICE1–DEVICE3_FLAG — device synchronization indicators.
- ATTRIBUTE_CATEGORY, ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield columns.
- OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO and concurrency columns.
Common Use Cases and Queries
Typical scenarios include producing assignment worklists by role, validating role usage against the lookup, and extracting assignment detail for CRM integrations. Because the view is language-aware, queries return translated names automatically.
List assignments filtered by assignee role:
SELECT TASK_ID, TASK_ASSIGNMENT_ID, RESOURCE_NAME, ASSIGNEE_ROLE, MEANING, ASSIGNMENT_STATUSFROM APPS.AST_TASK_ASSIGNMENTS_VWHERE ASSIGNEE_ROLE = :p_roleORDER BY ACTUAL_START_DATE DESC;
Aggregate effort by role and status:
SELECT ASSIGNEE_ROLE, ASSIGNMENT_STATUS, SUM(ACTUAL_EFFORT) TOTAL_EFFORTFROM APPS.AST_TASK_ASSIGNMENTS_VGROUP BY ASSIGNEE_ROLE, ASSIGNMENT_STATUS;
Identify assignments whose role does not resolve to a lookup meaning:
SELECT TASK_ASSIGNMENT_ID, ASSIGNEE_ROLEFROM APPS.AST_TASK_ASSIGNMENTS_VWHERE MEANING IS NULL;
-
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 ,
-
SYNONYM: APPS.JTF_TASK_STATUSES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_TL, status:VALID,
-
SYNONYM: APPS.JTF_OBJECTS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_OBJECTS_TL, status:VALID,
-
SYNONYM: APPS.JTF_OBJECTS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_OBJECTS_TL, status:VALID,
-
SYNONYM: APPS.JTF_TASK_ALL_ASSIGNMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_ALL_ASSIGNMENTS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.JTF_TASK_STATUSES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_STATUSES_TL, status:VALID,
-
SYNONYM: APPS.JTF_TASK_ALL_ASSIGNMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_TASK_ALL_ASSIGNMENTS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
PACKAGE: APPS.JTF_TASK_UTL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JTF_TASK_UTL, status:VALID,
-
PACKAGE: APPS.JTF_TASK_UTL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JTF_TASK_UTL, status:VALID,
-
VIEW: APPS.FND_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
VIEW: APPS.FND_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_LOOKUPS, object_name:FND_LOOKUPS, status:VALID,
-
eTRM - AST Tables and Views
12.2.2
description: All available web searches ,
-
eTRM - AST Tables and Views
12.1.1
description: All available web searches ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - AST Tables and Views
12.1.1
description: All available web searches ,
-
eTRM - AST Tables and Views
12.2.2
description: All available web searches ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,