<?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>question Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity. in ServiceNow AI Platform forum</title>
    <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093522#M49911</link>
    <description>&lt;P&gt;I have a workflow that contains activities such as catalog tasks and switches.&lt;/P&gt;
&lt;P&gt;My workflow has been working good for many months but recently I saw a workflow context that stopped at the catalog task, and doesn't advance to the next activity (a switch) upon the task closure.&lt;/P&gt;
&lt;P&gt;I see a log entry in that context that says "After running a sequence of activities we expected a 'last executing' record to predict the future stages from".&lt;/P&gt;
&lt;P&gt;I tried Nudge option but got the same log entry again in the content. Only one workflow context has this issue, others are just fine.&lt;/P&gt;
&lt;P&gt;Can someone help me on this logged error?&lt;/P&gt;</description>
    <pubDate>Mon, 05 Mar 2018 13:49:55 GMT</pubDate>
    <dc:creator>Mohammad Nayeem</dc:creator>
    <dc:date>2018-03-05T13:49:55Z</dc:date>
    <item>
      <title>Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093522#M49911</link>
      <description>&lt;P&gt;I have a workflow that contains activities such as catalog tasks and switches.&lt;/P&gt;
&lt;P&gt;My workflow has been working good for many months but recently I saw a workflow context that stopped at the catalog task, and doesn't advance to the next activity (a switch) upon the task closure.&lt;/P&gt;
&lt;P&gt;I see a log entry in that context that says "After running a sequence of activities we expected a 'last executing' record to predict the future stages from".&lt;/P&gt;
&lt;P&gt;I tried Nudge option but got the same log entry again in the content. Only one workflow context has this issue, others are just fine.&lt;/P&gt;
&lt;P&gt;Can someone help me on this logged error?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 13:49:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093522#M49911</guid>
      <dc:creator>Mohammad Nayeem</dc:creator>
      <dc:date>2018-03-05T13:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093523#M49912</link>
      <description>&lt;P&gt;Hi - May i know which type of workflow activity got stuck ?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 14:19:52 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093523#M49912</guid>
      <dc:creator>Pardhu Guduru</dc:creator>
      <dc:date>2018-03-05T14:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093524#M49913</link>
      <description>&lt;P&gt;Catalog Task is the activity where the workflow stopped. Its next activity is a switch.&lt;/P&gt;
&lt;P&gt;It is a one-time issue, which I am trying to debug based on that log entry. It is not a recurring issue.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Mar 2018 15:42:43 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093524#M49913</guid>
      <dc:creator>Mohammad Nayeem</dc:creator>
      <dc:date>2018-03-05T15:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093525#M49914</link>
      <description>&lt;P&gt;In case this is still oustanding -- what probably happened is that the field/variable that the switch statement runs against was completely blank.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The only way to fix the workflow is to manually delete the latest workflow activity history record, insert a proper workflow executing activity record, and then re-nudge the workflow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This same error can occur on any Workflow activity that has conditions on it's transitions, and due to a missing required field or something, none of the transitions match.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Script below may help you -- just pass in a GlideRecord (such as "current")&lt;/P&gt;
&lt;P&gt;---------------------------------------------------------------------------&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;function rerunWorkflowActivity(record) {&lt;BR /&gt;    //Grab the workflow context&lt;BR /&gt;    var context = new GlideRecord("wf_context");&lt;BR /&gt;    context.addQuery("table", record.getTableName());&lt;BR /&gt;    context.addQuery("id", record.sys_id.toString());&lt;BR /&gt;    context.addQuery("state", "executing");&lt;BR /&gt;    context.setLimit(1);&lt;BR /&gt;    context.query();&lt;BR /&gt;    if(!context.next()) {&lt;BR /&gt;        gs.print("ERROR: Could not find workflow context.");&lt;BR /&gt;        return false;&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    //Check if there's a current executing activity. If so, just poke/nudge the workflow.&lt;BR /&gt;    var executing = new GlideRecord("wf_executing");&lt;BR /&gt;    executing.addQuery("context", context.sys_id.toString());&lt;BR /&gt;    executing.setLimit(1);&lt;BR /&gt;    executing.query();&lt;BR /&gt;    if(executing.next()) {&lt;BR /&gt;        gs.print("SUCCESS: Found a currently executing workflow activity. Nudging the workflow.");&lt;BR /&gt;        new Workflow().broadcastEvent(context.sys_id.toString(), 'update');&lt;BR /&gt;        return true;&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    //Grab the most recent workflow activity history&lt;BR /&gt;    var history = new GlideRecord("wf_history");&lt;BR /&gt;    history.addQuery("context", context.sys_id.toString());&lt;BR /&gt;    history.orderByDesc("activity_index");&lt;BR /&gt;    history.setLimit(1);&lt;BR /&gt;    history.query();&lt;BR /&gt;    if(!history.next()) {&lt;BR /&gt;        gs.print("ERROR: Could not find last workflow activity.");&lt;BR /&gt;        return false;&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    //Grab the most recent workflow transition&lt;BR /&gt;    var transition = new GlideRecord("wf_transition_history");&lt;BR /&gt;    transition.addQuery("context", context.sys_id.toString());&lt;BR /&gt;    transition.addQuery("transition.to", history.activity.toString());&lt;BR /&gt;    transition.setLimit(1);&lt;BR /&gt;    transition.query();&lt;BR /&gt;    if(!transition.next()) {&lt;BR /&gt;        gs.print("ERROR: Could not find latest workflow transition.");&lt;BR /&gt;        return false;&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    if(transition.transition.from.toString() === "") {&lt;BR /&gt;        gs.print("ERROR: Latest workflow transition had a blank 'from' value.");&lt;BR /&gt;        return false;&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    //Grab previous activity&lt;BR /&gt;    var previous = new GlideRecord("wf_history");&lt;BR /&gt;    previous.addQuery("context", context.sys_id.toString());&lt;BR /&gt;    previous.addQuery("activity", transition.transition.from.toString());&lt;BR /&gt;    previous.setLimit(1);&lt;BR /&gt;    previous.query();&lt;BR /&gt;    if(!previous.next()) {&lt;BR /&gt;        gs.print("ERROR: Could not find the previous workflow activity in the workflow history.");&lt;BR /&gt;        gs.print(previous.getEncodedQuery());&lt;BR /&gt;        return false;&lt;BR /&gt;    }&lt;BR /&gt;&lt;BR /&gt;    //Prep the context&lt;BR /&gt;    context.activity_count = executing.activity_index.toString();&lt;BR /&gt;    context.activity_index = executing.activity_index.toString();&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;    executing = new GlideRecord("wf_executing");&lt;BR /&gt;    executing.newRecord();&lt;BR /&gt;    executing.activity =  history.activity.toString();&lt;BR /&gt;    executing.activity_index = history.activity_index.toString();&lt;BR /&gt;    executing.context = context.sys_id.toString();&lt;BR /&gt;    executing.input_data = history.input_data.toString();&lt;BR /&gt;    executing.is_parent = history.is_parent.toString();&lt;BR /&gt;    //executing.notify_termination = false;&lt;BR /&gt;    executing.output_data = history.output_data.toString();&lt;BR /&gt;    executing.parent = history.parent.toString();&lt;BR /&gt;    executing.previous_activity = previous.sys_id.toString();&lt;BR /&gt;    executing.started = history.started.toString();&lt;BR /&gt;    executing.state = "executing";&lt;BR /&gt;    executing.sys_domain = history.sys_domain.toString();&lt;BR /&gt;    executing.sys_domain_path =  history.sys_domain_path.toString();&lt;BR /&gt;    executing.workflow_version = history.workflow_version.toString();&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;    //Delete the history record.&lt;BR /&gt;    history.deleteRecord();&lt;BR /&gt;&lt;BR /&gt;    //Insert the new executing record&lt;BR /&gt;    executing.insert();&lt;BR /&gt;&lt;BR /&gt;    //Update the context&lt;BR /&gt;    context.update();&lt;BR /&gt;&lt;BR /&gt;    //Poke the workflow.&lt;BR /&gt;    new Workflow().broadcastEvent(context.sys_id.toString(), 'update');&lt;BR /&gt;    gs.print("SUCCESS: Deleted the latest activity in the history, inserted it again as an executing activity, and poked the workflow.");&lt;BR /&gt;    return true;&lt;BR /&gt;&lt;BR /&gt;}&lt;/PRE&gt;</description>
      <pubDate>Wed, 04 Apr 2018 14:32:02 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093525#M49914</guid>
      <dc:creator>garrett_griffin</dc:creator>
      <dc:date>2018-04-04T14:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093526#M49915</link>
      <description>&lt;P&gt;Hi @garrettgriffin&amp;nbsp;, I have just stumbled across this as having a similar issue.&lt;/P&gt;
&lt;P&gt;When you say "just pass in a GlideRecord (such as "current")", can you elaborate on this for me as relatively new to this world!&lt;/P&gt;
&lt;P&gt;Would I run as a background script? I have the sys ID of context thats hasn't moved on, how would I script this into your script to delete and re-create the history?&lt;/P&gt;
&lt;P&gt;Many thanks for any help you can provide&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jan 2019 16:44:42 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093526#M49915</guid>
      <dc:creator>matt_a</dc:creator>
      <dc:date>2019-01-02T16:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093527#M49916</link>
      <description>&lt;P&gt;on the switch activity please check the options of the switch and the possible options of the variable.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is my belief that you passed a value for which the switch has no path for&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 01:41:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093527#M49916</guid>
      <dc:creator>seanphelan</dc:creator>
      <dc:date>2019-01-03T01:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093528#M49917</link>
      <description>&lt;P&gt;Thanks - it was passing the variable name rather than value which was odd. It was random and there was no consistency with when or why it was happening. I have deleted the switch in the workflow, renamed the variable value in the hope that it doesnt happen again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just needed to look to see if there was a way in which I could deleted and reinsert the activity so that I could nudge the workflow as per the above script?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jan 2019 09:25:47 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093528#M49917</guid>
      <dc:creator>matt_a</dc:creator>
      <dc:date>2019-01-04T09:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093529#M49918</link>
      <description>&lt;P&gt;i'm not sure you can nudge it past this point.&amp;nbsp; maybe you can update the workflow activity content with the value that you want it to go down and then nudge it. AKA make that activity think that its done. After all, its all table data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Other option would be to restart the workflow with the new workflow.&amp;nbsp; todo this use this script&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;var wkfw = new Workflow();
fixme = new GlideRecord('{{table}}');
fixme.addQuery('sys_id', '{{sys_id of record}}');
fixme.query();
while (fixme.next())
{
var x = new WorkflowApprovalUtils().reset(fixme, "res");
var context = new Workflow().startFlow(wkfw.getWorkflowFromName('{{NAME of workflow}}'), fixme, 'update');
}&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jan 2019 13:17:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093529#M49918</guid>
      <dc:creator>seanphelan</dc:creator>
      <dc:date>2019-01-04T13:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093530#M49919</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I had the same issue and was able to fix it&lt;/P&gt;
&lt;P&gt;My situation is the following:&lt;/P&gt;
&lt;P&gt;I&amp;nbsp; have a UI-Action setting the state from 2 -&amp;gt; 3&lt;/P&gt;
&lt;P&gt;I have a workflow condition, waiting for state==3 ... so the workflow now continues.&lt;/P&gt;
&lt;P&gt;next was a "run-script" with the following code:&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;new myClass().myFunction(current);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The last statement of myFunction(), was an current.update() after changing the current.state from 3 -&amp;gt; 4. Whereas in my code I named current = request ;&lt;/P&gt;
&lt;PRE class="language-javascript"&gt;&lt;CODE&gt;current.state = 4
current.update();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I was able to fix the issue after deleting the current.update()&lt;/P&gt;
&lt;P&gt;the state changed automatically on "4"&lt;/P&gt;
&lt;P&gt;plz mark as helpful&lt;/P&gt;</description>
      <pubDate>Mon, 06 May 2019 15:49:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093530#M49919</guid>
      <dc:creator>nilshaug</dc:creator>
      <dc:date>2019-05-06T15:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093531#M49920</link>
      <description>&lt;P&gt;This is an old thread but I&amp;nbsp;noticed this message in the Workflow Log of a&amp;nbsp;Workflow Context that was stuck. In fact, every time I clicked on Nudge, this message would be dumped. As the message suggests, the Workflow Executing Activities tab was empty i.e. no activity was running.&lt;/P&gt;
&lt;P&gt;In my case, the Workflow was stuck at a second&amp;nbsp;&lt;EM&gt;Approval - User&lt;/EM&gt;&amp;nbsp;activity&amp;nbsp;since its result was 'skipped' but the Conditions were only&amp;nbsp;coded to accept '', 'approved', 'rejected' and 'cancelled'. The developers would fix it eventually but the question was how to nudge the existing requests / workflows ahead.&amp;nbsp;This is the workaround I came up with up after a day&amp;nbsp;of trial and error -&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Create a record in wf_executing as below -&lt;BR /&gt;var wfExecuting = new GlideRecord('wf_executing');&lt;BR /&gt;wfExecuting.initialize();&lt;BR /&gt;wfExecuting.activity = '99f53e21dbd064d024c89806b9961955'; // Sys ID of the last or stuck wf_activity&amp;nbsp;&lt;BR /&gt;wfExecuting.activity_index = 9;//The sequence of the above activity in the relevant wf_context&lt;BR /&gt;wfExecuting.context = '4e1bf043dbb0ec147805c23813961951';//Sys ID of wf_context record&lt;BR /&gt;wfExecuting.is_parent = false;//Not sure but existing wf_executing records had this. So that's what I went with&lt;BR /&gt;wfExecuting.notify_termination = false;//Not sure but existing wf_executing records had this. So that's what I went with&lt;BR /&gt;wfExecuting.previous_activity = '921bf043dbb0ec147805c23813961966'; // Sys ID of previous wf_history record in the relevant wf_context&lt;BR /&gt;wfExecuting.started = '2020-12-04 15:13:12';&lt;BR /&gt;wfExecuting.state = 'waiting';//Not sure but existing wf_executing records had this. So that's what I went with&lt;BR /&gt;wfExecuting.workflow_version = '19f5fa21dbd064d024c89806b9961913'; // Sys ID of wf_workflow_version&lt;BR /&gt;var id = wfExecuting.insert();&lt;BR /&gt;gs.print(id);&lt;BR /&gt;&lt;BR /&gt;2. Open the wf_context record or refresh it. You should now see a Workflow Executing Activities record. Personalize the list and select Scratchpad and Output Data&lt;BR /&gt;a) Key in Output Data as {}&lt;BR /&gt;b) Scratchpad as {"approval_ids":["561bf043dbb0ec147805c23813961968"]}&lt;BR /&gt;That is the sys_id of the first sysapprover_approval record&amp;nbsp;which had actually been approved. So, I knew that if I made the second Approval - User activity look at this, it should return 'approved' and proceed. You may need to improvise depending on where your workflow was last stuck. Look at existing wf_executing records for the same Workflow version.&lt;BR /&gt;&lt;BR /&gt;3. On the wf_context record click on Nudge. The workflow came to life and&amp;nbsp;actually nudged ahead.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 12:56:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093531#M49920</guid>
      <dc:creator>abhisheksolanki</dc:creator>
      <dc:date>2020-12-08T12:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Workflow Issue: A workflow is struck in an activity and doesnot advance to its next activity.</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093532#M49921</link>
      <description>&lt;P&gt;Hi &lt;SN-MENTION class="sn-mention" table="live_profile" sysid="ecc0f477db49d05023f4a345ca961906"&gt;@Garrett Griffin&lt;/SN-MENTION&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I know this post is super old, but thought I might try since this thread is the only reference in the universe to the specific error message I'm getting.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"After running a sequence of activities we expected a 'last executing' record to predict the future stages from"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;I get that at the end of the workflow logs in a 'catalog task' activity (meant to create a TASK).&amp;nbsp; No task is created, just that mysterious incomplete log from the Engine.&amp;nbsp; Do you have any suggestions?&amp;nbsp; I've tried a number of things with no luck.&amp;nbsp; Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2022 22:35:19 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/workflow-issue-a-workflow-is-struck-in-an-activity-and-doesnot/m-p/1093532#M49921</guid>
      <dc:creator>Michael Butak1</dc:creator>
      <dc:date>2022-08-04T22:35:19Z</dc:date>
    </item>
  </channel>
</rss>

