Hi all

Currently I'm modeling the "delegate to" option in a workflow step like this:

<participant ref="requestor_notification" on_error="undo"/>
<participant ref="${user}" if="${user}" />

<participant ref="sales_manager" task="validation"/>
<participant ref="${user}" if="${user}" />

<participant ref="account_manager" task="sign"/>
<participant ref="${user}" if="${user}" />

But it looks a bit annoying to have all the ref="${user}" after each participant so how do you model this? I've thinked about creating a subprocess but in the end looks similar because I must setup the field ${usuario}

<process-definition name="participant_with_delegation">
   <participant ref="${usuario}" />
   <participant ref="${user}" if="${user}" />
</process-definition>

Is there another form to perform this task?

Another question: is possible to know whithout adding fields in which "horizontal" step of the workflow (as seen with ruote-fluo) lives a workitem? Sometimes is very helpful to know if the received workitem belongs to the first/last participant of a workflow

Thanks

--
you received this message because you are subscribed to the "ruote users" group.
to post : send email to [email protected]
to unsubscribe : send email to [email protected]
more options : http://groups.google.com/group/openwferu-users?hl=en

Reply via email to