User Task Delegation / Reassign from Tasklist

Sir,

I would like to know more about, how can I delegate or reassign all my tasks to a different user with duration?
Currently my workflow custom app (JSF) is working fine and also able to assign to the respective user. When the user login to the Camunda and he could able to approve/reject.
But the user would like to reassign all his tasks to the the different person so that he could able to approve or reject. Could you please help us on this.

Is there any way user can do using Task List?? or ??

Thanks & Regards
Srini

Hi @tadikonda74,

See TaskList Reassingment / Delegation

Cheers,
Roman

Hi Srini,

You could implement such functionality in your JSF custom tasklist app

query for tasks assigned to x user as follow
taskService.createTaskQuery().taskAssignee("x").list()

iterate over the list of assigned tasks & do reassignment as follow
taskService.setAssignee("<taskId>", "<newUser>")

Hi Hassang,

Got it, thank you for your help. I will try to implement using TaskService.

Thanks & Regards
Srini