cancel
Showing results for 
Search instead for 
Did you mean: 

show all tasks to admin

nkalra1
Champ in-the-making
Champ in-the-making
hiiiiiiiiiiiiiii……………………………i want to show all tasks of all users  to the admin …………how can i do it…………..


Thanks in advance
3 REPLIES 3

mitpatoliya
Star Collaborator
Star Collaborator
For that you need to create your custom dashlet.
Where you will fetch the tasks  from all the users using webscript.
With the help of workflow services APIS.

nkalra1
Champ in-the-making
Champ in-the-making
Thanks for your answer……………………but how can we fetch all the tasks of all the users.

mitpatoliya
Star Collaborator
Star Collaborator
Look in to the workflow service.

where you have these APIS like
    public List<WorkflowInstance> getActiveWorkflows(String workflowDefinitionId);
    public List<WorkflowTask> queryTasks(WorkflowTaskQuery query);

You can  get all the active tasks inside repository. 😎