Workflow is not moving forward after Join activity
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2025 08:57 PM
Hi I have made some changes in my expedite change workflow, basically added 2 parllel "create task" activity.
When both the tasks are closed then workflown stuck in join ativity and not moving forward, please suggest.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2025 09:08 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2025 09:14 PM
Earlier wait for condition was also added , but once i moved that after join activity , i started facing this issue.
You can see there is one wait for condition is already added in workflow but i removed that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-02-2025 10:01 PM - edited 04-02-2025 10:05 PM
@VIKAS MISHRA Can you share share snap of join activity by double clicking on it? if No condition mension it Join activity then do verify with restarting the workflow with the help of BG script:
var cgr= new GlideRecord("change_request");
if(cgr.get("<sys_id of change>")){
new WorkflowApprovalUtils().cancelAll(cgr, "<comment if any>");
new Workflow().restartWorkflow(cgr);
}