R – Does SharePoint workflow require a document

sharepointworkflow

I'm just starting out looking at SharePoint workflows – all the information I've seen so far assumes a document-centric workflow. Can you do generic workflows (something like BPM or BPEL)?

Best Answer

Yes you can do whatever kind of workflow you want. There are three different levels of functionality however.

  1. Those actions that are configurable from within Sharepoint. These are simple workflows like notifications and simple approval processes.

  2. Actions available in SharePoint Designer. There are a lot more actions available here. You can use them to build complicated workflows, assuming that the provided options are sufficient for your specific needs.

  3. Actions created via Visual Studio. Using Visual Studio you can create custom actions that do whatever you need them to do.

Hope this helps.

Related Topic