How to change maximum number of workflow activities and what is best practices for maximum activity count in WorkflowIntro: What is maximum activity count in Workflow? Maximum Activity Count is the sum of the entries in the activity history list and the currently executing activities. When the workflow reaches the maximum number of executing activities allowed by this setting, the workflow stops. It's the number activities in a single context. If you have a looping workflow (with rollback to or similar activities) you can potentially create an infinite loop. This counter prevents the WF from running away uncontrolled. What is the default Maximum Activity Count and why is it set at this number? The default maximum setting is 100. This is to prevent infinite loops and help performance issues if the number of activities gets high. This is configurable if you want to change for existing workflow if needed Common Questions and Issues: Can we change the Maximum Activity Count? What is the maximum to use? What are best practices for this amount? What is the maximum count that is acceptable in workflow? Is it ok to set it at higher number 1000 or 10,000?? While there is no hard limit to recommend based on individual use cases and business needs, there are best practices to avoid large numbers or use a setting that is at least 10% greater than the total number of executing activities you anticipate in your workflow. In some situations, where you have a complex workflow, you may need to bump the number up (e.g. 500 or even higher based on your individual use case). You can also review passed recent history of the workflow and perform the required tests in a development or test environment and based on these results, you can optimize or use a number 10% greater than the total number seen here. Solution: Depending on how complex the use case is, the steps to configure or change the Maximum Activity Count if needed: Navigate to Workflow > Workflow Editor.Check out a workflow.In the title bar, click the Workflow Properties icon.Click the Activities tab.In the Max activity count field, enter a value that accommodates the expected number of executing activities for the workflow.Click Update.