<?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 Assignment question. in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/assignment-question/m-p/75567#M49716</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello everyone,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have 1 task assigned to a group of users, and I would like to assign a later task to the user who claimed that first task, and not to the whole group. How could I do that ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For example: Somebody from the accounting group claim a task about writing a report, the report doesn't get validated, I would like to assign the rewriting task to this user only, and not the accounting group. One example given is a bit like that, apaprt from the fact the workflow is initiated by a specific user, so the initiator name is used as a variable throughout the workflow.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Dec 2011 17:11:35 GMT</pubDate>
    <dc:creator>fishandchips</dc:creator>
    <dc:date>2011-12-07T17:11:35Z</dc:date>
    <item>
      <title>Assignment question.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/assignment-question/m-p/75567#M49716</link>
      <description>Hello everyone,I have 1 task assigned to a group of users, and I would like to assign a later task to the user who claimed that first task, and not to the whole group. How could I do that ?For example: Somebody from the accounting group claim a task about writing a report, the report doesn't get val</description>
      <pubDate>Wed, 07 Dec 2011 17:11:35 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/assignment-question/m-p/75567#M49716</guid>
      <dc:creator>fishandchips</dc:creator>
      <dc:date>2011-12-07T17:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Assignment question.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/assignment-question/m-p/75568#M49717</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;Right, you could do to that with a task listener that listens to the complete event.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You can then add a process variable with the person who completed the task.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best regards,&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2011 20:44:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/assignment-question/m-p/75568#M49717</guid>
      <dc:creator>trademak</dc:creator>
      <dc:date>2011-12-07T20:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Assignment question.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/assignment-question/m-p/75569#M49718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I now have another problem. After I created my TaskListener class, the option "Create Deployment Artifacts" from the eclipse Designer stopped working.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;When I delete it, it works again, so something is telling me there's something wrong with my class even thought the editor doesn't show any error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here's the code :&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;package FinancialReportProcessLaunch;&lt;BR /&gt;&lt;BR /&gt;import org.activiti.engine.delegate.DelegateTask;&lt;BR /&gt;import org.activiti.engine.delegate.TaskListener;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;public class ReportCompleteListener implements TaskListener{&lt;BR /&gt;&lt;BR /&gt; @Override&lt;BR /&gt; public void notify(DelegateTask delegateTask) {&lt;BR /&gt;&amp;nbsp; delegateTask.setVariable("reportAssigneeName", delegateTask.getAssignee());&lt;BR /&gt;&amp;nbsp; &lt;BR /&gt; }&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;}&lt;BR /&gt;&lt;/CODE&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2011 13:30:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/assignment-question/m-p/75569#M49718</guid>
      <dc:creator>fishandchips</dc:creator>
      <dc:date>2011-12-08T13:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: Assignment question.</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/assignment-question/m-p/75570#M49719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Never mind,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I fixed my problem using &lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;delegateTask.getExecution().setVariable()&lt;/CODE&gt;&lt;SPAN&gt;instead of&lt;/SPAN&gt;&lt;BR /&gt;&lt;CODE&gt;delegateTask.setVariable()&lt;/CODE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Dec 2011 14:14:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/assignment-question/m-p/75570#M49719</guid>
      <dc:creator>fishandchips</dc:creator>
      <dc:date>2011-12-08T14:14:27Z</dc:date>
    </item>
  </channel>
</rss>

