<?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: Trigger Alert To Task Assigned To Queue in Alfresco Forum</title>
    <link>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/483869#M39497</link>
    <description>&lt;P&gt;thank you for your response, agree to your suggestion about email notification but we would like to trigger alert only if the task is unclaimed, could you please suggest how to customize it.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Oct 2024 10:36:41 GMT</pubDate>
    <dc:creator>emailsharan</dc:creator>
    <dc:date>2024-10-28T10:36:41Z</dc:date>
    <item>
      <title>Trigger Alert To Task Assigned To Queue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/483853#M39489</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;&lt;P&gt;How to set a Trigger Alert(Task or Email) to the task assigned to queue/group and not claimed for certain time in Alfresco.&lt;/P&gt;&lt;P&gt;I thought of using timer boundary event but those event will not execute based on claimed or not claimed.&lt;/P&gt;&lt;P&gt;Any help on this would really appreciative.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Oct 2024 19:22:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/483853#M39489</guid>
      <dc:creator>emailsharan</dc:creator>
      <dc:date>2024-10-25T19:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger Alert To Task Assigned To Queue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/483863#M39493</link>
      <description>&lt;P&gt;I think it is already sending email notification when you start workflose(Select Send Mail notification) but regarding not claiming for certain time, you need customization for that.&lt;/P&gt;</description>
      <pubDate>Sun, 27 Oct 2024 03:37:28 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/483863#M39493</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2024-10-27T03:37:28Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger Alert To Task Assigned To Queue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/483869#M39497</link>
      <description>&lt;P&gt;thank you for your response, agree to your suggestion about email notification but we would like to trigger alert only if the task is unclaimed, could you please suggest how to customize it.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2024 10:36:41 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/483869#M39497</guid>
      <dc:creator>emailsharan</dc:creator>
      <dc:date>2024-10-28T10:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger Alert To Task Assigned To Queue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/483870#M39498</link>
      <description>&lt;P&gt;thank you for your response, looking forward for such enhancements.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Oct 2024 10:37:24 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/483870#M39498</guid>
      <dc:creator>emailsharan</dc:creator>
      <dc:date>2024-10-28T10:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Trigger Alert To Task Assigned To Queue</title>
      <link>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/484347#M39577</link>
      <description>&lt;P&gt;You can create schedule job where list all the task which are unclaime and trigger email.&lt;/P&gt;&lt;DIV&gt;&lt;SPAN&gt;WorkflowTaskQuery workflowTaskQuery = new WorkflowTaskQuery();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; workflowTaskQuery.setTaskState(WorkflowTaskState.IN_PROGRESS);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; workflowTaskQuery.setWorkflowDefinitionName("workflowname");&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; workflowTaskQuery.setActive(true);&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; List&amp;lt;WorkflowTask&amp;gt; workflowTaskList = serviceRegistry.getWorkflowService().queryTasks(workflowTaskQuery,true);&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;for (WorkflowTask task : workflowTaskList) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; Serializable taskOwner = task.getProperties().get(ContentModel.PROP_OWNER);&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;if(taskOwner==null){&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;//This task is unassign/unclaim task&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;} &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2024 13:57:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-forum/trigger-alert-to-task-assigned-to-queue/m-p/484347#M39577</guid>
      <dc:creator>sp2</dc:creator>
      <dc:date>2024-11-11T13:57:08Z</dc:date>
    </item>
  </channel>
</rss>

