Skip to content

Commit 0626783

Browse files
PaoloPiaVesaJuvonen
authored andcommitted
Scenario guidance business processes (SharePoint#1306)
* Article about Business Processes * Updated article about Business Processes
1 parent 2c38c08 commit 0626783

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Business Processes
2+
3+
## Summary
4+
Managing business processes related to items or documents stored in Microsoft SharePoint is a very common use case, which can be solved using various techniques. In this article you can find the available options for designing and running business processes in SharePoint Online and/or SharePoint 2013/2016 on-premises.
5+
6+
## High-level guideline/general rules
7+
Before going through the most common available options for managing business processes, let's see some useful high-level guidelines and general rules:
8+
* Whenever you need to run long-running business processes, rely on asynchronous processes that can be executed in background and independently from SharePoint
9+
* Try to keep the processes as much simple as you can, using small building blocks eventually connected in a chain, rather than using huge processes that can be complex to maintain and difficult to debug
10+
* Try to use stateless processes as much as you can, to avoid allocating too many resources while running them and to define a more scalable solution, which can be hosted on multiple servers
11+
12+
## Available options
13+
14+
### Logic Apps
15+
16+
_**Applies to:** Office 365 | SharePoint Online | SharePoint 2013 | SharePoint 2016_
17+
18+
Azure Logic Apps simplifies how you build automated scalable workflows that integrate apps and data across cloud services and on-premises systems.
19+
With Logic Apps you can build, schedule, and automate processes as workflows so you can integrate apps, data, systems, and services across enterprises or organizations. Logic Apps simplifies how you design and create scalable solutions for app integration, data integration, system integration, enterprise application integration (EAI), and business-to-business (B2B) communication, whether in the cloud, on premises, or both.
20+
21+
### Articles
22+
* [Logic Apps](https://azure.microsoft.com/en-us/services/logic-apps/)
23+
* [Quickstart: Build your first logic app workflow - Azure portal](https://docs.microsoft.com/en-us/azure/logic-apps/quickstart-create-first-logic-app-workflow)
24+
* [Get started with the SharePoint Online connector](https://docs.microsoft.com/en-us/azure/connectors/connectors-create-api-sharepointonline)
25+
* [Get started with the SharePoint connector](https://docs.microsoft.com/en-us/azure/connectors/connectors-create-api-sharepointserver)
26+
* [Choose between Flow, Logic Apps, Functions, and WebJobs](https://docs.microsoft.com/en-us/azure/azure-functions/functions-compare-logic-apps-ms-flow-webjobs)
27+
28+
### Videos
29+
* [Slice, dice, and route your SharePoint documents with Microsoft Flow, Azure Logic Apps, and Microsoft PowerApps](https://azure.microsoft.com/en-us/resources/videos/build-2017-slice-dice-and-route-your-sharepoint-documents-with-microsoft-flow-azure-logic-apps-and-microsoft-powerapps/)
30+
* [Microsoft Azure and Office 365 together: The modern business development platform](https://azure.microsoft.com/en-us/resources/videos/microsoft-ignite-2017-microsoft-azure-and-office-365-together-the-modern-business-development-platform/)
31+
32+
### Microsoft Flow
33+
34+
_**Applies to:** Office 365 | SharePoint Online | SharePoint 2013 | SharePoint 2016_
35+
36+
Microsoft Flow is a service that helps you create automated workflows between your favorite apps and services to synchronize files, get notifications, collect data, and more. From within a Flow, you can connect to SharePoint Online or to an on-premises SharePoint 2013 or 2016 farm using the On-Premises Data Gateway to manage documents and list items. Moreover, Microsoft Flow is fully integrated with the modern lists and libraries of SharePoint Online.
37+
As a developer, you can extend Microsoft Flow, enabling even more powerful solutions for organizations and customers.
38+
39+
### Articles
40+
* [Get started with Microsoft Flow](https://docs.microsoft.com/en-us/flow/getting-started)
41+
* [Create a flow for a list or library in SharePoint Online or OneDrive for Business](https://support.office.com/en-us/article/create-a-flow-for-a-list-or-library-in-sharepoint-online-or-onedrive-for-business-a9c3e03b-0654-46af-a254-20252e580d01)
42+
* [Introducing Microsoft Flow integration for SharePoint Document Libraries](https://flow.microsoft.com/en-us/blog/flow-in-spo-document-libraries/)
43+
* [Choose between Flow, Logic Apps, Functions, and WebJobs](https://docs.microsoft.com/en-us/azure/azure-functions/functions-compare-logic-apps-ms-flow-webjobs)
44+
45+
### Videos
46+
* [Slice, dice, and route your SharePoint documents with Microsoft Flow, Azure Logic Apps, and Microsoft PowerApps](https://azure.microsoft.com/en-us/resources/videos/build-2017-slice-dice-and-route-your-sharepoint-documents-with-microsoft-flow-azure-logic-apps-and-microsoft-powerapps/)
47+
48+
### Workflow Manager of SharePoint 2013/2016
49+
50+
_**Applies to:** SharePoint Online | SharePoint 2013 | SharePoint 2016_
51+
52+
Both in SharePoint Online and in SharePoint 2013/2016 on-premises you can define workflow processes using the Workflow Manager engine. In SharePoint Online you can only use declarative workflows, designed in SharePoint Designer 2013, or Workflow Add-Ins built using Microsoft Visual Studio and the SharePoint Add-In Model. In SharePoint 2013/2016 you can eventually create custom code-based workflows or custom actions. However, you should be careful using code-based workflows on-premises, because that could be a road blocker while migrating to SharePoint Online and Office 365.
53+
54+
### Articles
55+
* [Get started with workflows in SharePoint](https://docs.microsoft.com/en-us/sharepoint/dev/general-development/get-started-with-workflows-in-sharepoint)
56+
* [SharePoint workflow development best practices](https://docs.microsoft.com/en-us/sharepoint/dev/general-development/sharepoint-workflow-development-best-practices)
57+
* [Workflow actions and activities reference for SharePoint](https://docs.microsoft.com/en-us/sharepoint/dev/general-development/workflow-actions-and-activities-reference-for-sharepoint)
58+
59+
### Samples
60+
* [Create custom activities for workflow](https://github.com/SharePoint/PnP/tree/master/Samples/Workflow.Activities)
61+
* [Workflow.AssociateToHostWeb](https://github.com/SharePoint/PnP/tree/master/Samples/Workflow.AssociateToHostWeb)
62+
* [Call custom web services from a workflow](https://github.com/SharePoint/PnP/tree/master/Samples/Workflow.CallCustomService)
63+
* [Call custom web service update SharePoint via web proxy](https://github.com/SharePoint/PnP/tree/master/Samples/Workflow.CallServiceUpdateSPViaProxy)
64+
* [Handle custom events in a workflow](https://github.com/SharePoint/PnP/tree/master/Samples/Workflow.CustomEvents)
65+
* [Workflow with custom forms (initiation and task)](https://github.com/SharePoint/PnP/tree/master/Samples/Workflow.CustomTasks)
66+
67+
### Windows Workflow Foundation 3.x of SharePoint 2010
68+
69+
_**Applies to:** Office 365 | SharePoint Online | SharePoint 2013 | SharePoint 2016_
70+
71+
Both in SharePoint Online and in SharePoint 2013/2016 on-premises you can define workflow processes using the legacy Windows Workflow Foundation 3.x engine. However, those are available just for backward compatibility, and you shouldn't create fresh new solutions based on this technology. Nevertheless, using Microsoft SharePoint Designer 2013, you can still create such kind of workflows.

0 commit comments

Comments
 (0)