Hi,
I need to implement a process with a possible cycle :
task A is validate -> task B
but we want to go again to the task A form a transition from the task B...
I have created the process like that :
<start name="start1" g="119,16,48,48">
<transition name="to fill_form" to="fill_form" g="-87,-24"/>
</start>
<task name="fill_form" g="97,96,92,52" form="the_form">
<transition name="to_manager_acceptance" to="manager_acceptance" g="-137,-24"/>
</task>
<task name="manager_acceptance" g="97,96,92,52" form="acceptance_form">
<transition name="to_form_validation" to="final_validation"/>
<transition name="form_more_info" to="fill_form"/>
<transition name="form_cancel" to="cancel1"/>
</task>
Is it possible to make that ?
Regards