cancel
Showing results for 
Search instead for 
Did you mean: 

Question on Custom Task in Activiti

eon
Champ in-the-making
Champ in-the-making
Hi

I would like to implement some custom task into a workflow like the below example. The custom task and its parameter will be selected/set by user during runtime. I wonder if its possible to implement such a workflow in Activiti? Thanks.

Start —> Custom Task 1 –> Custom Task 2 –> End
3 REPLIES 3

trademak
Star Contributor
Star Contributor
Hi,

Is the list of possible custom tasks unlimited or do you have a fixed list to choose from?
A common way to solve this is to add a user task to ask for the next custom task to take from a list that is filled with options out of, for example, a database table.

Best regards,

niktyagi88
Champ in-the-making
Champ in-the-making
You can implement the above process by using custom task.
Look the bellow link:
http://forums.activiti.org/en/viewtopic.php?f=8&t=3815

eon
Champ in-the-making
Champ in-the-making
Hi

trademak:
Yes, I will have a fix list of task for user to choose from. Generating the list from a database is a good idea.

niktyagi88:
Thanks for the link.