<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Multi-user approval task in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241780#M194910</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;that's what candidate user/group is for.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;when someone claims a user task (assume it is the first user task in 4 eyes validation process), user task's listener (event assignment) will be triggered, in the listener you should grab the assignee of this task and save it somewhere (let's call it "approver1"). when the second user task comes to the picture, you should set its candidate's user/group without "approver1", it can be easliy achieved by Activiti Expression (means that candidate user/group is dynamically set).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Jun 2016 15:43:42 GMT</pubDate>
    <dc:creator>daifengwei</dc:creator>
    <dc:date>2016-06-20T15:43:42Z</dc:date>
    <item>
      <title>Multi-user approval task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241776#M194906</link>
      <description>I am trying to have an Approval user task that will require 2 different users in a candidate group to approve it. When I set Cardinality = 2, Multi-instance type = Sequential and Assignee to a candidate group, the same approver is able to claim the task both the times. Is there a clean way that will</description>
      <pubDate>Thu, 09 Jun 2016 23:45:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241776#M194906</guid>
      <dc:creator>vprince</dc:creator>
      <dc:date>2016-06-09T23:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Multi-user approval task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241777#M194907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Implement logic to check whether one of the tasks is already claimed by the user. (I am not sure whether there is an event to which you can listen to (e.g. TASK_CLAIMED) - if there is not just add it to the engine.) You can put this logic into this listener.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2016 06:38:09 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241777#M194907</guid>
      <dc:creator>martin_grofcik</dc:creator>
      <dc:date>2016-06-10T06:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Multi-user approval task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241778#M194908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;as far as I remember once "claim" method of task service get called, (assume you have implemented a task listener for event "assignment"), the listener (notify method) will be called. inside listener method "notify" you can check who try to claim this task, if she claimed the task before, an exception should be thrown in order to abort the operation. so how to know if she claimed the task before? you need to keep a list of users who claimed the task before in a process variable (let's call it "participants"). if she doesn't claim this task before, her user id should be saved in "participants" process variable for later use. hope this helps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2016 11:06:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241778#M194908</guid>
      <dc:creator>daifengwei</dc:creator>
      <dc:date>2016-06-10T11:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Multi-user approval task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241779#M194909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your responses. I was trying to prevent the second task instance from ever showing up in the queue of the user who has already approved this task. If he/she does not see it again in their queue, there is little chance for them to be confused as to why it is reappearing.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Jun 2016 16:41:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241779#M194909</guid>
      <dc:creator>vprince</dc:creator>
      <dc:date>2016-06-10T16:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Multi-user approval task</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241780#M194910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;that's what candidate user/group is for.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;when someone claims a user task (assume it is the first user task in 4 eyes validation process), user task's listener (event assignment) will be triggered, in the listener you should grab the assignee of this task and save it somewhere (let's call it "approver1"). when the second user task comes to the picture, you should set its candidate's user/group without "approver1", it can be easliy achieved by Activiti Expression (means that candidate user/group is dynamically set).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 15:43:42 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/multi-user-approval-task/m-p/241780#M194910</guid>
      <dc:creator>daifengwei</dc:creator>
      <dc:date>2016-06-20T15:43:42Z</dc:date>
    </item>
  </channel>
</rss>

