Foros de discusión

workflow issues

kevin wu, modificado hace 11 años.

workflow issues

New Member Mensajes: 3 Fecha de incorporación: 16/07/12 Mensajes recientes
Has anyone of you are familiar with Liferay workflow definition? I want to assign a task by user email ID, so I can do it like the following, but XXX@XXX.com should be an input on UI page and then pass it to the workflow, how can I use a variable instead of XXX@XXX.com.

<task>
<name>Manager Approval</name>
<assignments>
<user>
<email-address>XXX@XXX.com</email-address>
</user>
</assignments>
<transitions>
<transition>
<name>Reject</name>
<target>update</target>
<default>true</default>
</transition>
</transitions>
</task>