<?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 keep a task assigned to a user group open until all members complete it in SAS VI? in Fraud, AML and Security Intelligence</title>
    <link>https://communities.sas.com/t5/Fraud-AML-and-Security/How-to-keep-a-task-assigned-to-a-user-group-open-until-all/m-p/981673#M1145</link>
    <description>&lt;P&gt;Thank you for the suggestions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding option 1 - unfortunately, I can’t predetermine the number of users because the group is dynamically derived from an entity field during the workflow. The number of users is unknown at design time, so static paths aren’t feasible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding option 2b - to remove a user from the list after task completion, I need to identify who completed the task. Is there a property or API I can use to capture the completing user’s identity so I can re-assign the task only to those who haven’t finished it yet?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Maayan&lt;/P&gt;</description>
    <pubDate>Thu, 08 Jan 2026 07:08:05 GMT</pubDate>
    <dc:creator>Maayan_Oscar</dc:creator>
    <dc:date>2026-01-08T07:08:05Z</dc:date>
    <item>
      <title>How to keep a task assigned to a user group open until all members complete it in SAS VI?</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/How-to-keep-a-task-assigned-to-a-user-group-open-until-all/m-p/980030#M1133</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In Visual Investigator, when we assign a task to a user group, the default behavior is that once one member completes the task, it is marked as completed for the entire group.&lt;/P&gt;&lt;P&gt;Is there any way to configure the workflow so that the task remains open for all members who have not yet completed it? Each member should be required to complete the task individually.&lt;/P&gt;&lt;P&gt;Creating separate tasks manually is not an option because the user group is dynamically taken from a field within the entity during the workflow, so the number of users is unknown in advance.&lt;/P&gt;&lt;P&gt;If this cannot be achieved using the standard functionality, what is the best practice or recommended approach? Is there any built-in feature or configuration that supports individual completion for group-assigned tasks?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 04 Dec 2025 14:07:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/How-to-keep-a-task-assigned-to-a-user-group-open-until-all/m-p/980030#M1133</guid>
      <dc:creator>Maayan_Oscar</dc:creator>
      <dc:date>2025-12-04T14:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep a task assigned to a user group open until all members complete it in SAS VI?</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/How-to-keep-a-task-assigned-to-a-user-group-open-until-all/m-p/981487#M1136</link>
      <description>&lt;P&gt;Hi Maayan,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think it is possible to do this today with a single workflow user task. I wondered if you could perhaps use parallel tasks for this - perhaps preceded by a decision point and script task to work out the user to be assigned the tasks but I'll check with my engineering colleagues to see if they can think of any other options.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Susan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 17:12:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/How-to-keep-a-task-assigned-to-a-user-group-open-until-all/m-p/981487#M1136</guid>
      <dc:creator>susantrueman</dc:creator>
      <dc:date>2026-01-05T17:12:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep a task assigned to a user group open until all members complete it in SAS VI?</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/How-to-keep-a-task-assigned-to-a-user-group-open-until-all/m-p/981497#M1139</link>
      <description>&lt;P&gt;Hi Maayan,&lt;/P&gt;
&lt;P&gt;A few thoughts for you to consider.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Is this scenario tied to possible 'departments' of users, where you know the number of departments and need 1 user from each to perform the same task? If this is the case, then a parallel gateway for each 'department' could work. It would be dynamic based upon the User Groups (anyone from each department could complete), but the number of departments would be static, in that you would need a User Task for each department.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;2) If option 1 won't work, then you will need to write code to track the users that have completed and compare agains the User group in iterations.&lt;/P&gt;
&lt;P&gt;a) pre-User Task, create a Script Task that contains the list of users in the group, this WF variable is used in the User Task for assignment.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;b) when users perform the User Task, you have a post-Script Task that removes them from the group AND you have to review the current Group to ensure that new users were not added/removed(so compare). You'll check the list with an Exclusive Gateway. If the list of users is empty, then continue... if the list is not empty, then reroute back to the User Task with the updated WF variable that contains the list of users.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 18:58:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/How-to-keep-a-task-assigned-to-a-user-group-open-until-all/m-p/981497#M1139</guid>
      <dc:creator>RickMatthews</dc:creator>
      <dc:date>2026-01-05T18:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to keep a task assigned to a user group open until all members complete it in SAS VI?</title>
      <link>https://communities.sas.com/t5/Fraud-AML-and-Security/How-to-keep-a-task-assigned-to-a-user-group-open-until-all/m-p/981673#M1145</link>
      <description>&lt;P&gt;Thank you for the suggestions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding option 1 - unfortunately, I can’t predetermine the number of users because the group is dynamically derived from an entity field during the workflow. The number of users is unknown at design time, so static paths aren’t feasible.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regarding option 2b - to remove a user from the list after task completion, I need to identify who completed the task. Is there a property or API I can use to capture the completing user’s identity so I can re-assign the task only to those who haven’t finished it yet?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Maayan&lt;/P&gt;</description>
      <pubDate>Thu, 08 Jan 2026 07:08:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Fraud-AML-and-Security/How-to-keep-a-task-assigned-to-a-user-group-open-until-all/m-p/981673#M1145</guid>
      <dc:creator>Maayan_Oscar</dc:creator>
      <dc:date>2026-01-08T07:08:05Z</dc:date>
    </item>
  </channel>
</rss>

