Search Results object_function




Overview

JTF_TASK_UWQ_MYOWN_V is a database view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It belongs to the JTF product family (CRM Foundation) and is documented as an internal view consumed by the UWQ — the Universal Work Queue framework that routes and displays task-oriented work items to users across CRM applications such as TeleSales, Service, and Field Service. The view supplies the row set that represents tasks owned by the currently authenticated resource, which is why every row it returns carries the literal OWNED_FLAG value 'O'.

Because the object is a view rather than a table, it stores no data of its own and performs no DML of its own; it is a read-only projection layered over the JTF task and JTF object tables, enriched with denormalized descriptive columns from reference and party tables. The presence of the search term object_parameters in the documentation reflects the fact that the view surfaces the JTF_OBJECTS_B.OBJECT_PARAMETERS column directly, making the parameter payload of the source business object available to the Work Queue alongside the task attributes.

Underlying Base Objects

The ETRM 12.2.2 metadata records the following referenced objects, all resolved through APPS synonyms except the status view and the two PL/SQL packages:

Joins are driven by TASK_STATUS_ID, TASK_TYPE_ID, TASK_PRIORITY_ID, SOURCE_OBJECT_TYPE_CODE to OBJECT_CODE, and TASK_ID, with language predicates tied to USERENV('LANG'). The priority join is outer (+) so tasks without a priority are retained.

Key Columns

Common Use Cases and Queries

The view is primarily an internal dependency of the Universal Work Queue rather than a supported customer-facing reporting interface, and direct modification is neither possible nor advisable. It is nonetheless frequently inspected for troubleshooting Work Queue task display, missing phone or email values, and object parameter handling.

SELECT task_number, task_name, task_status,
       object_function, object_parameters,
       customer_name, actual_start_date
FROM   apps.jtf_task_uwq_myown_v
WHERE  task_status = 'Open';

A second common pattern filters on the source object to inspect parameter payloads:

SELECT task_id, source_object_type, object_function,
       object_parameters, resource_id
FROM   apps.jtf_task_uwq_myown_v
WHERE  object_function = 'SERVICE_REQUEST';

Because GET_OWNER, GET_PRIMARY_PHONE, and GET_PRIMARY_EMAIL execute per row, queries over large task volumes should be restricted with selective predicates on TASK_ID, TASK_NUMBER, or TASK_STATUS_ID to avoid unnecessary package calls.