Nudges and Stuck Workflows
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2017 04:04 PM
I have a workflow that seems to occasionally get stuck and needs a "nudge" to resume.
Does anyone have any insight as to why this might happen intermittently?
- Labels:
-
Workflow

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-31-2017 04:27 PM
Hi James,
Can you elaborate some more, are you using any MID servers with powershell script in your workflow, we have this issue in our organization when MID server is down , we have to restart or rerun making sure MID server is up.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-02-2017 01:53 PM
Thanks Bharath, no mid servers or powershell scripts involved in this one unfortunately.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-07-2017 02:44 AM
Hi James,
Were you able to figure out how to bypass this?
Thanks in advance!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-11-2017 09:03 AM
Hi James,
Does this help? It should "nudge" a workflow if you add it to a script:
new Workflow().broadcastEventToCurrentsContexts(<a GlideRecord>, 'update', null);
When you're waiting for a condition, I think the workflow won't always register that a record has been updated and the condition may now be true unless certain things happen. Can't remember what the criteria is for this (I last used this a long time ago!) but I remember this is how I got around it when one of my workflows needed a nudge.
You can find a little more information here: workflow.fireEvent is not allowed in scope Can't find anything in the docs right now, but it's probably in there somewhere.