Troubleshooting Suspended SharePoint 2013 Workflows
One thing you can do to figure out which workflows are having problems is run a SQL query to get some details:
Select * from WFInstanceManagementDB.dbo.Instances where WorkflowStatus = 'SystemSuspended'
WFInstanceManagementDB is the database name if you chose the defaults during the Workflow Manager configuration pocess. If you entered a custom name when the Workflow Manager was configured, change WFInstanceManagementDB to be that database name.
Working list of reasons for suspended workflows:
- Workflow is trying to send an email to someone either externally, or that is not in the User Information List on the site collection. For a user to be in the User Information List, they must have accessed some site in the site collection at any point in the past, or been added explicitly (i.e. not as a member of a AD or SharePoint security group).Â
-Tasks not started (perhaps due to preceding steps being delayed by workflow actions or slow human workflow involvement) before due date is reached.Â
--- More to come.Â












