06-16-2009 08:37 AM
06-16-2009 08:49 AM
06-16-2009 09:00 AM
if (document name == A)then
start a task node where the swimlane is the UfficioA
else if (document name == B)then
start a task node where the swimlane is the UfficioB
else if (document name == B)then
start a task node where the swimlane is the UfficioB
and so on I explain me better?06-16-2009 04:16 PM
06-16-2009 05:27 PM
You're not describing a fork, what you need to use is a decision node. A fork is used to have multiple things happen all at once, whereas a decision only allows for one thing depending on a set of criteria.
So, in your case, we'd write something like:
<decision name="WhereTo">
<transition name="A" to="UfficioA">
<condition>#{bpm_package.children[0].name = 'A'}</condition>
</transition>
<transition name="B" to="UfficioB">
<condition>#{bpm_package.children[0].name = 'B'}</condition>
</transition>
<transition name="C" to="UfficioC" />
</decision>
06-18-2009 10:02 AM
06-18-2009 03:26 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.