<?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: How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App? in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3025#M943</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Greg.... let me look that up...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2017 19:12:27 GMT</pubDate>
    <dc:creator>paiyyavj13</dc:creator>
    <dc:date>2017-01-12T19:12:27Z</dc:date>
    <item>
      <title>How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3019#M937</link>
      <description>I have created processes earlier on Alfresco Activiti which had single group or single user reviewer assignment. I am facing difficulty in assigning a parallel task to multiple users, using the form based BPMN designer. Has any one done this before? any pointers please?</description>
      <pubDate>Thu, 12 Jan 2017 14:35:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3019#M937</guid>
      <dc:creator>paiyyavj13</dc:creator>
      <dc:date>2017-01-12T14:35:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3020#M938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You&amp;nbsp;can achieve this in two ways:&lt;/P&gt;&lt;P&gt;1) Use of "parallel gateway"&lt;/P&gt;&lt;P&gt;2) Using the multi-instance property available on UserTask&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:21:38 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3020#M938</guid>
      <dc:creator>cjose</dc:creator>
      <dc:date>2017-01-12T15:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3021#M939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ciju,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your response.... I did try this but I ave few queries...&lt;/P&gt;&lt;P&gt;I am using Alfresco Activiti application.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;On the submit form, I can add Group or Users... How can I add multiple Groups in the Form pallette?&lt;/LI&gt;&lt;LI&gt;How to I store the group names in a variable? so that I can mention the variable name in Collection(Multi-Instance)&lt;/LI&gt;&lt;LI&gt;under Assignment, what should I choose (I want multiple groups for parallel review, ideally a variable having all the groups)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 15:48:40 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3021#M939</guid>
      <dc:creator>paiyyavj13</dc:creator>
      <dc:date>2017-01-12T15:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3022#M940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To use the collection feature, create a list of user id's and save them in a process variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P&gt;List&amp;lt;User&amp;gt; users = userService.getAllUsers(0,999,tenantId);&lt;BR /&gt;for (User u : users) {&lt;BR /&gt; idList.add(u.getId());&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;execution.setVariable('assigneeList', idList);&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, set the collection property to the name of this variable.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="12085" class="image-1 jive-image" src="https://connect.hyland.com/legacyfs/online/alfresco/12085_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just a note, this is using the BPMN editor, I am not familiar enough with the Kickstart editor to know if it can handle this sort of thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;P&gt;&lt;A href="https://migration33.stage.lithium.com/t5/tag/bp3/tg-p"&gt;&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 16:57:47 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3022#M940</guid>
      <dc:creator>gdharley</dc:creator>
      <dc:date>2017-01-12T16:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3023#M941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the response... the screenshots really helped... and yes I am using the same BPMN editor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem with me is that I need to get multiple users from a custom Submit form, the Submit form does not have or maybe I cannot figure out a way to get multiple users in that form. pls check the screenshot below:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Submit Form with Add Reviewers button" class="image-1 j-img-centered jive-image" src="https://connect.hyland.com/legacyfs/online/alfresco/12086_submit-form-ss.jpg" style="width: 479px; height: 210px; display: block; margin-left: auto; margin-right: auto;" /&gt;Appreciate your help!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 17:22:20 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3023#M941</guid>
      <dc:creator>paiyyavj13</dc:creator>
      <dc:date>2017-01-12T17:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3024#M942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ahh yes, you would need to create a custom Ui widget to select multiple people.&lt;/P&gt;&lt;P&gt;Creating custom form widgets is relatively straight forward, but requires a reasonable understanding of AngularJS.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;/P&gt;&lt;P&gt;Greg&lt;/P&gt;&lt;P&gt;&lt;A href="https://migration33.stage.lithium.com/t5/tag/bp3/tg-p"&gt;&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 18:56:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3024#M942</guid>
      <dc:creator>gdharley</dc:creator>
      <dc:date>2017-01-12T18:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3025#M943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Greg.... let me look that up...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2017 19:12:27 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3025#M943</guid>
      <dc:creator>paiyyavj13</dc:creator>
      <dc:date>2017-01-12T19:12:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3026#M944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;SPAN class=""&gt;&lt;A _jive_internal="true" class="" data-userid="108273" data-username="paiyyavj13" href="https://community.alfresco.com/people/paiyyavj13" rel="nofollow noopener noreferrer"&gt;Paiyyavj13,&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;Have you find any solution. I have same requirement.How to select multiple users in form?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2018 06:00:02 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3026#M944</guid>
      <dc:creator>rachana</dc:creator>
      <dc:date>2018-08-14T06:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to design a parallel group review workflow using Alfresco Activiti KickStart Designer App?</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3027#M945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;B&gt;Rachana _&lt;/B&gt;‌&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a custom Stencil on Alfresco Process Services which I used for the field- allowing Multiple Users to be selected.&lt;/P&gt;&lt;P&gt;Check about the Custom Stencils to find out more...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2018 22:46:26 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/how-to-design-a-parallel-group-review-workflow-using-alfresco/m-p/3027#M945</guid>
      <dc:creator>paiyyavj13</dc:creator>
      <dc:date>2018-08-21T22:46:26Z</dc:date>
    </item>
  </channel>
</rss>

