Workflow is not moving forward after Join activity

VIKAS MISHRA
Tera Contributor

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.

 

VIKASMISHRA_0-1743652634735.png

 

3 REPLIES 3

Community Alums
Not applicable

Hi @VIKAS MISHRA ,

Add the wait for condition post join activity.

 

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.

Nilesh Pol
Tera Guru

@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);
}