31.19 GET_TASK_PRIORITIES Function
This function gets the potential new priorities of a task. The actual priority is excluded from the list.
This function only returns data in the context of a valid Oracle APEX session. It returns no data in SQL Workshop.
Syntax
APEX_HUMAN_TASK.GET_TASK_PRIORITIES (
p_task_id IN NUMBER )
RETURN apex_t_temp_lov_data pipelined;
Parameters
Parameter | Description |
---|---|
p_task_id |
The task ID. |
Returns
A table of apex_t_temp_lov_data
.
Example
select disp,val from table ( apex_human_task.get_task_priorities ( p_task_id => 1234 ) )
Parent topic: APEX_HUMAN_TASK