Notifications - how to get less of them?


Badge +8

Trying to get off of Sharepoint notification emails to have a little more granular control.

I have a small workflow sending me notifications when a new item is added to my list.  Works great!

I also have a separate small workflow sending me notifications when an item gets modified.  Not so great.

As soon as an item gets added, it's modified by the main workflow, and I get two notifications : "Item X has been added" and then immediately I get "Item X has been modified".

Whenever someone makes a change, I get a notification "Item X has been modified".

That change triggers my main workflow to update the item and I get another notification "Item X has been modified".

So I'm getting two notifications for every added item and two for every change.  

How are you all handling this?  Any ideas to get less notifications?  I'm familiar with getting the notification summary, and that doesn't really work for me.


7 replies

Userlevel 3
Badge +9

Why not change the workflow that updates the item to be called from within the notification workflow, rather than starting on it's own.  So notification workflow starts, calls the update workflow, then after the update is complete, it sends the notification.   

Badge +8

Hi ‌,

Remove both small workflows. Add a hidden column to the list. Add some extra logic to your main workflow to:

  1. Send a 'Item added' notification when the hidden column is empty. Then add a value to the hidden column.
  2. Send a 'item updated' notification when the hidden column does have a value.

Based on the info you provided, the main workflow starts 'on item added' and 'on item changed'.

Cheers,

Rick

Userlevel 5
Badge +14

converted discussion to question.

Userlevel 3
Badge +9

I'm not certain he meant this to be a question.  Sounds like he wanted to discuss how other people approach it. 

Userlevel 5
Badge +14

hm, there is a problem depicted and question how to resolve it already in header.

further questions at the end.

and as Rick points out there is a design problem.

so, that sounds to me to be a problem/question to be resolved.

but let see how it evolves, we still can turn it back to discussion.

Badge +8

This seems like it will be a good solution.  Is there a way to make it not trigger twice within X minutes?  For instance, I often have users editing an item twice or three times within the space of the same 5 minutes.  I only want to get one notification when this happens.

Userlevel 3
Badge +9

I'm not sure.  You could try adding a pause of 5 minutes when the workflow starts see what that does. 

Reply