Need to Update Next Task Assignee in current task

Hi,
i am having two tasks (Task1,Task2) and initially Task1 is assigned to User1 and Task2 Assigned to User2.

So, if i am currently in Task1 with User1 and due to some scenarios, i need to change Task2 (initially assigned to User2) to User3 at runtime.

is it possible in flowable and can i have REST api call for this?

Thanks,
VZY

Is there anybody having idea on this,

Hi Vzy,

for http calls you can use http://www.flowable.org/docs/userguide/index.html#bpmnHttpTask.

Regards
Martin

Hi Martin,
Thanks for your reply, here my intention is that, i am always calling Flowable application by REST api calls from Java application,
as said above, BEFORE calling ‘complete’ action for Task1, how to update user assignee for Task2 by REST api?

Thanks in Advance,
-Vzy

Vzy,

you can specify task assignee for the Task2 on Task1 form (create a form with variable). And use the expression with this variable in the process model Task2.

Regards
Martin

you mean expression ${task2Assignee} right?, but expressions are not working in model screen,
i think, another way is to pass task2Assignee=“User3” as variable with rest api call on complete Task1 right?
any config. i need to do for making work expressions in my model?

Have a look on the following jUnit test

Change variable address to your variable name used for user task2 assignee.

Martin