- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2017 09:22 AM
Hi,
I'm a unsure about what the workflow property 'Max activity count' stands for.
Is it the max number of activities in all currently executing contexts of a workflow,
or is it the max number of activities in a single executing context of a workflow?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2017 09:26 AM
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. In some situations, where you have a complex workflow, you may need to bump the number up (e.g. 500)
I do not recommend setting it to an extremely high number like 100,000 or you could run in to performance problems with a runaway context.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2017 09:23 AM
See this answered thred.
Maximum activity count in Workflow
~Hit like/Helpful/answered, if it helped on your issue.
Aravinda

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2017 09:26 AM
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. In some situations, where you have a complex workflow, you may need to bump the number up (e.g. 500)
I do not recommend setting it to an extremely high number like 100,000 or you could run in to performance problems with a runaway context.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2017 09:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2017 11:10 PM
Thank you Chuck,
This is what I needed to know.