Monthly Archives: June 2014

Workflow: Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time.

Reference: http://praveenkasireddy.wordpress.com/2013/06/14/workflow-due-to-heavy-load-the-latest-workflow-operation-has-been-queued-it-will-attempt-to-resume-at-a-later-time/ Note: Due to heavy load, the latest workflow operation has been queued. It will attempt to resume at a later time. I hope most of the users and developers might have come across above note and worried about it. … Continue reading

Posted in SharePoint 2010, Workflow | Leave a comment

Getting workflow instance info for a SharePoint list programmatically

string subsiteName = “crm”; // crm is a sub-site using (SPSite currentSite = new SPSite(SPContext.Current.Site.ID)) { using (SPWeb currentWeb = currentSite.OpenWeb(subsiteName)) { SPList myList = currentWeb.Lists[“Training Records”]; // Traning Records is a list in crm site SPWorkflowCollection workflowCollection = new … Continue reading

Posted in SharePoint 2010, Visual Studio 2010 | Leave a comment