Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sharepoint workflow vs Windows workflow

We are in the process of implementing the sharepoint application, we would like to know the the pros and cons of SharePoint workflow versus Windows workflow.

like image 574
user171523 Avatar asked Oct 16 '09 15:10

user171523


People also ask

What is the difference between flow and workflow in SharePoint?

SharePoint Designer workflows also only work within a single site. Microsoft Flow can go between sites, site collections and even different tenants and farms. Microsoft Flow is much more extendable in terms of business automation.

What is replacing SharePoint workflows?

After August 1, 2020, new Microsoft 365 customers can use SharePoint 2013 workflows or Power Automate. However, SharePoint 2013 workflows will follow a similar retirement path in the future, so it's highly recommended to use Power Automate or other supported solutions.

Are SharePoint workflows going away?

SharePoint 2010 workflows are deprecated but will remain supported for the SharePoint Server Subscription Edition release until July 14, 2026.


2 Answers

Workflows in SharePoint are implemented using the Windows Workflow Foundation, so they are not that different, but there still are some things to be aware of regarding that implementation.

SharePoint is a Windows Workflow host, so you don't have to implement your own host which is fine if you agree with the decisions made by the SharePoint team:

  • Workflow instances are persisted in the content database
  • Communication with the user is through SharePoint tasks
  • Every workflow instance is tied to a list/library item
  • Tracking is not implemented

If these choices are to your liking then by all means use the SharePoint workflows.

If not then implement your own host and make your own decisions.

like image 68
Per Jakobsen Avatar answered Sep 28 '22 17:09

Per Jakobsen


They are the same thing. The current Windows Workflow Engine was created for SharePoint.

Now it should be noted, that the Workflow engine is going to be overhauled with the release of .Net 4.0. I don't know the specifics, but I've been told the differences are significant. I woudld assume this is going to be used in Sharepoint 2010, but I don't have any information on that.

Here is a link describing the upgrade in 4.0.

like image 22
kemiller2002 Avatar answered Sep 28 '22 18:09

kemiller2002