Moving the task to close complete is not continuing the workflow.Issue Workflow is not proceeding when the catalog task state is set to "Closed Complete" but when "Close Task" UI action is used the state is set to "Closed" and workflow is executing as expected.CauseState field choice values in the task table are customized.ResolutionWhen the user is closing the task by setting the state to "close complete" and the value for the choice is "10".When we use the UI action the state field is set to "closed" and the value is "3".Whenever the task is closed the script include "TaskStateUtils" is triggered which will trigger the "canRunParentWF" function which will trigger the "SNC - Run Parent Workflows" business rule which will continue the workflow.But in order to execute "canRunParentWF" function the script checks for the state value which must be any of 3, 4, 7 but the value which the user is setting is 10. As the value is not recognized by the system the workflow is not restarting.In order to resolve the issue go to the Dictionary entry of state filed and change the choice value of "close complete" to 3 from 10 and inactive the "closed" choiceorModify the script include by adding the conditions to check for state value 10.