I have a SharePoint designer workflow. The workflows triggers an email when a new item is created. The user who created the item gets an email notification. The workflow works fine for all other user except for a particular user. Email is not getting triggered and the workflow is getting suspended. The user has read and contribute access. The user comes from the everyone group.
1 Answer
It's a known permission issue, where the current user that runs the workflow should have at least contribute permission on the associated list, task list, and history list.
If you don't need to provide the current users higher permission, so in this case, you should use the App Step to ignores the current user permission and provides the workflow authorization for its Identity as a
Full Control.
For more details, check
- The user already has contribute rightsPp25– Pp252018-09-03 07:55:23 +00:00Commented Sep 3, 2018 at 7:55
- this is what you have said in your Q .The user has read access.2018-09-03 07:56:37 +00:00Commented Sep 3, 2018 at 7:56
- The suspended error is like value cannot be nullPp25– Pp252018-09-03 07:57:26 +00:00Commented Sep 3, 2018 at 7:57