<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Bulk Task Assignment</title><link>https://community.appian.com/success/w/guide/3277/bulk-task-assignment</link><description /><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>Bulk Task Assignment</title><link>https://community.appian.com/success/w/guide/3277/bulk-task-assignment</link><pubDate>Tue, 23 Apr 2024 13:15:56 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b6a3088c-1a8f-44bf-84b3-4c44c591712a</guid><dc:creator>Appian Max Team</dc:creator><comments>https://community.appian.com/success/w/guide/3277/bulk-task-assignment#comments</comments><description>Current Revision posted to Guide by Appian Max Team on 4/23/2024 1:15:56 PM&lt;br /&gt;
&lt;div style="margin:8px 16% 8px 8%;"&gt;
&lt;h2 id="general_guidance"&gt;General Guidance&lt;/h2&gt;
&lt;p&gt;This page explains how to create a process to assign tasks in bulk.&amp;nbsp; Many of the recommendations follow general Appian best practice on using &lt;a href="/w/article/3048/how-to-create-memory-efficient-models"&gt;memory-efficient process models&lt;/a&gt;. &amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Take advantage of Appian&amp;#39;s ability to balance engine load by utilizing Start Process smart services&lt;/li&gt;
&lt;li&gt;Run during off-peak hours when creating large numbers of tasks&lt;/li&gt;
&lt;li&gt;Create batches&amp;nbsp;when dealing with large numbers of tasks&lt;/li&gt;
&lt;li&gt;Update archive settings to delete processes that are not needed in the system&lt;/li&gt;
&lt;li&gt;Run Health Check to monitor any side effects of bulk processes (uneven engine load, performance issues, disk usage, memory usage, etc)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;strong&gt;Don&amp;rsquo;t&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Use synchronous subprocesses for task assignment when the parent process flow does not depend on the results of the completed task&lt;/li&gt;
&lt;li&gt;Create process loops for each task&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="preferred_design_patterns"&gt;Preferred Design Patterns&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Run Process Asynchronously Using Multiple Exec Engines&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This is the recommended approach since this method benefits from parallel execution and engine load distribution. &amp;nbsp;The key is to optimize the number of running processes for maximum throughput, without affecting end users or experiencing timeouts.&amp;nbsp; For more information, see&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Ways_to_Start_a_Process_From_a_Process.html"&gt;ways to start a process.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;When creating new processes for tasks, use the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Start_Process_Smart_Service.html"&gt;Start Process smart service&lt;/a&gt; rather than using direct subprocesses.&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_start_5F00_process.png" /&gt;&lt;/div&gt;
&lt;p&gt;If the tasks are to be kicked off from a User Input Task or web API, use the a!startProcess() component. When starting multiple tasks this way, the process called should be a wrapper process which handles the individual task kickoff.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_process_5F00_from_5F00_sail.png"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_process_5F00_from_5F00_sail.png" /&gt;&lt;/div&gt;
&lt;p&gt;If there are more than 1000 tasks to initialize, you will need to batch the tasks into smaller groups. Each group can then be treated the same as already discussed. The below example uses multiple executions of a subprocess to batch the tasks, but this can also be done via a Start Process smart service.&amp;nbsp;&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/2045.playbook_5F00_batch_5F00_assign_5F00_tasks.png" /&gt;&lt;/div&gt;
&lt;h2 id="performance_considerations"&gt;Performance Considerations&lt;/h2&gt;
&lt;p&gt;By using the above methods, Appian engines should be able to efficiently balance the load caused by the tasks. However, if you are still encountering problems with performance, consider the following methods:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Processes can be configured to wait until off-peak hours before assigning tasks&lt;/li&gt;
&lt;li&gt;If the load is significant, consider&amp;nbsp;storing tasks in a database queue and utilizing techniques for&amp;nbsp;&lt;a href="/w/guide/3316/transferring-processing-large-data-sets-etl"&gt;processing large data sets&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: design patterns, Architecture&lt;/div&gt;
</description></item><item><title>Bulk Task Assignment</title><link>https://community.appian.com/success/w/guide/3277/bulk-task-assignment/revision/4</link><pubDate>Thu, 22 Feb 2024 21:20:38 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b6a3088c-1a8f-44bf-84b3-4c44c591712a</guid><dc:creator>Appian Max Team</dc:creator><comments>https://community.appian.com/success/w/guide/3277/bulk-task-assignment#comments</comments><description>Revision 4 posted to Guide by Appian Max Team on 2/22/2024 9:20:38 PM&lt;br /&gt;
&lt;div style="margin:8px 16% 8px 8%;"&gt;
&lt;h2 id="general_guidance"&gt;General Guidance&lt;/h2&gt;
&lt;p&gt;This page explains how to create a process to assign tasks in bulk.&amp;nbsp; Many of the recommendations follow general Appian best practice on using &lt;a href="/w/article/3048/how-to-create-memory-efficient-models"&gt;memory-efficient process models&lt;/a&gt;. &amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Take advantage of Appian&amp;#39;s ability to balance engine load by utilizing Start Process smart services&lt;/li&gt;
&lt;li&gt;Run during off-peak hours when creating large numbers of tasks&lt;/li&gt;
&lt;li&gt;Create batches&amp;nbsp;when dealing with large numbers of tasks&lt;/li&gt;
&lt;li&gt;Update archive settings to delete processes that are not needed in the system&lt;/li&gt;
&lt;li&gt;Run Health Check to monitor any side effects of bulk processes (uneven engine load, performance issues, disk usage, memory usage, etc)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;strong&gt;Don&amp;rsquo;t&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Use synchronous subprocesses for task assignment when the parent process flow does not depend on the results of the completed task&lt;/li&gt;
&lt;li&gt;Create process loops for each task&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="preferred_design_patterns"&gt;Preferred Design Patterns&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Run Process Asynchronously Using Multiple Exec Engines&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This is the recommended approach since this method benefits from parallel execution and engine load distribution. &amp;nbsp;The key is to optimize the number of running processes for maximum throughput, without affecting end users or experiencing timeouts.&amp;nbsp; For more information, see&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Ways_to_Start_a_Process_From_a_Process.html"&gt;ways to start a process.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;When creating new processes for tasks, use the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Start_Process_Smart_Service.html"&gt;Start Process smart service&lt;/a&gt; rather than using direct subprocesses.&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_start_5F00_process.png" /&gt;&lt;/div&gt;
&lt;p&gt;If the tasks are to be kicked off from a User Input Task or web API, use the a!startProcess() component. When starting multiple tasks this way, the process called should be a wrapper process which handles the individual task kickoff.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_process_5F00_from_5F00_sail.png"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_process_5F00_from_5F00_sail.png" /&gt;&lt;/div&gt;
&lt;p&gt;If there are more than 1000 tasks to initialize, you will need to batch the tasks into smaller groups. Each group can then be treated the same as already discussed. The below example uses multiple executions of a subprocess to batch the tasks, but this can also be done via a Start Process smart service.&amp;nbsp;&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/2045.playbook_5F00_batch_5F00_assign_5F00_tasks.png" /&gt;&lt;/div&gt;
&lt;h2 id="performance_considerations"&gt;Performance Considerations&lt;/h2&gt;
&lt;p&gt;By using the above methods, Appian engines should be able to efficiently balance the load caused by the tasks. However, if you are still encountering problems with performance, consider the following methods:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Processes can be configured to wait until off-peak hours before assigning tasks&lt;/li&gt;
&lt;li&gt;If the load is significant, consider&amp;nbsp;storing tasks in a database queue and utilizing techniques for&amp;nbsp;&lt;a href="/w/guide/3316/transferring-processing-large-data-sets-etl"&gt;processing large data sets&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: design patterns, Architecture&lt;/div&gt;
</description></item><item><title>Bulk Task Assignment</title><link>https://community.appian.com/success/w/guide/3277/bulk-task-assignment/revision/3</link><pubDate>Wed, 01 Nov 2023 14:45:46 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b6a3088c-1a8f-44bf-84b3-4c44c591712a</guid><dc:creator>matt.cosenza</dc:creator><comments>https://community.appian.com/success/w/guide/3277/bulk-task-assignment#comments</comments><description>Revision 3 posted to Guide by matt.cosenza on 11/1/2023 2:45:46 PM&lt;br /&gt;
&lt;div style="margin:8px 16% 8px 8%;"&gt;
&lt;h2 id="general_guidance"&gt;General Guidance&lt;/h2&gt;
&lt;p&gt;This page explains how to create a process to assign tasks in bulk.&amp;nbsp; Many of the recommendations follow general Appian best practice on using &lt;a href="/w/article/3048/how-to-create-memory-efficient-models"&gt;memory-efficient process models&lt;/a&gt;. &amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Take advantage of Appian&amp;#39;s ability to balance engine load by utilizing Start Process smart services&lt;/li&gt;
&lt;li&gt;Run during off-peak hours when creating large numbers of tasks&lt;/li&gt;
&lt;li&gt;Create batches&amp;nbsp;when dealing with large numbers of tasks&lt;/li&gt;
&lt;li&gt;Update archive settings to delete processes that are not needed in the system&lt;/li&gt;
&lt;li&gt;Run Health Check to monitor any side effects of bulk processes (uneven engine load, performance issues, disk usage, memory usage, etc)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;strong&gt;Don&amp;rsquo;t&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Use synchronous subprocesses for task assignment when the parent process flow does not depend on the results of the completed task&lt;/li&gt;
&lt;li&gt;Create process loops for each task&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="preferred_design_patterns"&gt;Preferred Design Patterns&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Run Process Asynchronously Using Multiple Exec Engines&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This is the recommended approach since this method benefits from parallel execution and engine load distribution. &amp;nbsp;The key is to optimize the number of running processes for maximum throughput, without affecting end users or experiencing timeouts.&amp;nbsp; For more information, see&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Ways_to_Start_a_Process_From_a_Process.html"&gt;ways to start a process.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;When creating new processes for tasks, use the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Start_Process_Smart_Service.html"&gt;Start Process smart service&lt;/a&gt; rather than using direct subprocesses.&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_start_5F00_process.png" /&gt;&lt;/div&gt;
&lt;p&gt;If the tasks are to be kicked off from a User Input Task or web API, use the a!startProcess() component. When starting multiple tasks this way, the process called should be a wrapper process which handles the individual task kickoff.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_process_5F00_from_5F00_sail.png"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_process_5F00_from_5F00_sail.png" /&gt;&lt;/div&gt;
&lt;p&gt;If there are more than 1000 tasks to initialize, you will need to batch the tasks into smaller groups. Each group can then be treated the same as already discussed. The below example uses multiple executions of a subprocess to batch the tasks, but this can also be done via a Start Process smart service.&amp;nbsp;&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/2045.playbook_5F00_batch_5F00_assign_5F00_tasks.png" /&gt;&lt;/div&gt;
&lt;h2 id="performance_considerations"&gt;Performance Considerations&lt;/h2&gt;
&lt;p&gt;By using the above methods, Appian engines should be able to efficiently balance the load caused by the tasks. However, if you are still encountering problems with performance, consider the following methods:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Processes can be configured to wait until off-peak hours before assigning tasks&lt;/li&gt;
&lt;li&gt;If the load is significant, consider&amp;nbsp;storing tasks in a database queue and utilizing techniques for&amp;nbsp;&lt;a href="/w/guide/3316/transferring-processing-large-data-sets-etl"&gt;processing large data sets&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;

&lt;div style="font-size: 90%;"&gt;Tags: design patterns, Architecture&lt;/div&gt;
</description></item><item><title>Bulk Task Assignment</title><link>https://community.appian.com/success/w/guide/3277/bulk-task-assignment/revision/2</link><pubDate>Wed, 18 Oct 2023 18:57:58 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b6a3088c-1a8f-44bf-84b3-4c44c591712a</guid><dc:creator>matt.cosenza</dc:creator><comments>https://community.appian.com/success/w/guide/3277/bulk-task-assignment#comments</comments><description>Revision 2 posted to Guide by matt.cosenza on 10/18/2023 6:57:58 PM&lt;br /&gt;
&lt;div style="margin:8px 16% 8px 8%;"&gt;
&lt;h2 id="general_guidance"&gt;General Guidance&lt;/h2&gt;
&lt;p&gt;This page explains how to create a process to assign tasks in bulk.&amp;nbsp; Many of the recommendations follow general Appian best practice on using &lt;a href="/w/article/3048/how-to-create-memory-efficient-models"&gt;memory-efficient process models&lt;/a&gt;. &amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&lt;strong&gt;Do&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Take advantage of Appian&amp;#39;s ability to balance engine load by utilizing Start Process smart services&lt;/li&gt;
&lt;li&gt;Run during off-peak hours when creating large numbers of tasks&lt;/li&gt;
&lt;li&gt;Create batches&amp;nbsp;when dealing with large numbers of tasks&lt;/li&gt;
&lt;li&gt;Update archive settings to delete processes that are not needed in the system&lt;/li&gt;
&lt;li&gt;Run Health Check to monitor any side effects of bulk processes (uneven engine load, performance issues, disk usage, memory usage, etc)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;&lt;strong&gt;Don&amp;rsquo;t&lt;/strong&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Use synchronous subprocesses for task assignment when the parent process flow does not depend on the results of the completed task&lt;/li&gt;
&lt;li&gt;Create process loops for each task&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="preferred_design_patterns"&gt;Preferred Design Patterns&lt;/h2&gt;
&lt;p&gt;&lt;strong&gt;Run Process Asynchronously Using Multiple Exec Engines&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This is the recommended approach since this method benefits from parallel execution and engine load distribution. &amp;nbsp;The key is to optimize the number of running processes for maximum throughput, without affecting end users or experiencing timeouts.&amp;nbsp; For more information, see&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Ways_to_Start_a_Process_From_a_Process.html"&gt;ways to start a process.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;When creating new processes for tasks, use the&amp;nbsp;&lt;a href="https://docs.appian.com/suite/help/latest/Start_Process_Smart_Service.html"&gt;Start Process smart service&lt;/a&gt; rather than using direct subprocesses.&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_start_5F00_process.png" /&gt;&lt;/div&gt;
&lt;p&gt;If the tasks are to be kicked off from a User Input Task or web API, use the a!startProcess() component. When starting multiple tasks this way, the process called should be a wrapper process which handles the individual task kickoff.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="/cfs-file/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_process_5F00_from_5F00_sail.png"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/playbook_5F00_process_5F00_from_5F00_sail.png" /&gt;&lt;/div&gt;
&lt;p&gt;If there are more than 1000 tasks to initialize, you will need to batch the tasks into smaller groups. Each group can then be treated the same as already discussed. The below example uses multiple executions of a subprocess to batch the tasks, but this can also be done via a Start Process smart service.&amp;nbsp;&lt;/p&gt;
&lt;div style="margin-bottom:3rem;margin-top:3rem;"&gt;&lt;img style="box-shadow:3px 3px 5px rgba(0, 0, 0, 0.1);" alt=" " src="/resized-image/__size/1200x0/__key/communityserver-wikis-components-files/00-00-00-00-46/2045.playbook_5F00_batch_5F00_assign_5F00_tasks.png" /&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Performance Considerations&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;By using the above methods, Appian engines should be able to efficiently balance the load caused by the tasks. However, if you are still encountering problems with performance, consider the following methods:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Processes can be configured to wait until off-peak hours before assigning tasks&lt;/li&gt;
&lt;li&gt;If the load is significant, consider&amp;nbsp;storing tasks in a database queue and utilizing techniques for&amp;nbsp;&lt;a href="/w/guide/3316/transferring-processing-large-data-sets-etl"&gt;processing large data sets&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item><item><title>Bulk Task Assignment</title><link>https://community.appian.com/success/w/guide/3277/bulk-task-assignment/revision/1</link><pubDate>Wed, 06 Sep 2023 14:22:15 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:b6a3088c-1a8f-44bf-84b3-4c44c591712a</guid><dc:creator>joel.larin</dc:creator><comments>https://community.appian.com/success/w/guide/3277/bulk-task-assignment#comments</comments><description>Revision 1 posted to Guide by joel.larin on 9/6/2023 2:22:15 PM&lt;br /&gt;
&lt;p&gt;dfsfs&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item></channel></rss>