On Tue, May 11, 2010 at 6:38 PM, TonyVegas <[email protected]> wrote: > > I am using openwfe 1.7.2 and have the following scenario:
Hello Tony, this is the mailing list for ruote, the grandson of OpenWFE, but I'll try to answer anyway. > There is an editor-group. When a user of this group activates the > workflow, the next participant should be all users of that group > except the user who initiated the workflow. > So i need to for example iterate through the group and adress all > users except the current one. How could that be done? http://www.openwfe.org/manual/ch07s14.html#pat_expression_iterator I guess you're using Magnolia. Let's say the user in the workitem field 'user' and the group user names are a comma-separated list in the workitem field 'groups_users', something like 'anton, bob, charly'. Something like : ---8<--- <iterator on-field-value="group_users" to-field="next_user"> <if test="${f:next_user} != ${f:user}"> <participant ref="${f:next_user}" /> </if> </iterator> --->8--- Sorry, but I don't know how groups usernames are managed in Magnolia. Maybe you can find help on the Magnolia mailing list. Best regards, -- John Mettraux - http://jmettraux.wordpress.com -- 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
