once the catalog task is submitted the notification should not be sent to group manager

Aditya02
Tera Guru

After submission of Catalog task, Restrict the notification for group manager. Group members only have to receive the notification. How to perform this. where we include this restrictions for notification.

7 REPLIES 7

Sonam_Tiwari
Kilo Sage

Not sure if there is a out of the box way to do it,

 

You can try using eventQueue method

 

Accept the recipients from one of the eventqueue parms like parm1 and exclude manager while building the list of recipients. Then, check the parm1 contains recipients on your notifications settings and test it.

 

gs.eventQueue('event name', gr, recipientList.toString(), parm2); // recipientList --> an array

Consider indicating the response as helpful and marking it as correct if it meets your needs.

Dr Atul G- LNG
Tera Patron
Tera Patron

Hi @Aditya02 

 

OOTB it is not possible and you need to build a good logic for same. But on group table there is field exceulde manager , which might be helpful

 

LearnNGrowAtul_0-1706521186592.png

 

*************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.

Regards
Dr. Atul G. - Learn N Grow Together
ServiceNow Techno - Functional Trainer
LinkedIn: https://www.linkedin.com/in/dratulgrover
YouTube: https://www.youtube.com/@LearnNGrowTogetherwithAtulG
Topmate: https://topmate.io/atul_grover_lng [ Connect for 1-1 Session]

****************************************************************************************************************

piyushsain
Tera Guru
Tera Guru

Hi @Aditya02 ,

You can do this by triggering an Event in Insert BR on catalog task table. In the BR you can get all the members of the group excluding the manager and send the users via parameter

If my answer has helped with your question, please mark my answer as accepted solution and give a thumb up.
Regards,
Piyush Sain

Hi @piyushsain ,

Can you just tell me the process how to perform this. is there any documentation?