- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 09:24 AM
Hello team
I am the quality manager in a project servicenow and I manage the surveys
and I need to receive a message notification every time when a user sends a negative survey
Can you help me ?
Thank you
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2024 10:27 PM
Hi @Meryem ELGNAOUI ,
The results of the Survey(s) are stored in the [asmt_metric_result] table.
So, you cna follow the below steps to achieve your requirement:
1. Create a notification for table: [asmt_metric_result]
2. Apply the conditions in 'when to run' as per your requirement.
3. 'Who will receive' will have the email address of the quality manager.
4. 'What it will contain' will have the content of the email.
The other option will be to create a business rule and then utilize gs.eventQueue() to trigger a notification(this time it will be 'fired by event' )
You can have a look at the below reference as well and rather than creating incident, you can trigger notification:
ServiceNow Flow Design - Creating an incident off a negative survey response
Mark this as Helpful / Accept the Solution if this helps
Mark this as Helpful / Accept the Solution if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 09:42 AM
How do you define a negative survey?
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2024 11:58 AM
Hello Slava
when the user is dissatisfied (score = 1) or very dissatisfied (Score = 0)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2024 12:08 PM
Is that score for a specific question or for the whole survey?
Blog: https://sys.properties | Telegram: https://t.me/sys_properties | LinkedIn: https://www.linkedin.com/in/slava-savitsky/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-22-2024 10:27 PM
Hi @Meryem ELGNAOUI ,
The results of the Survey(s) are stored in the [asmt_metric_result] table.
So, you cna follow the below steps to achieve your requirement:
1. Create a notification for table: [asmt_metric_result]
2. Apply the conditions in 'when to run' as per your requirement.
3. 'Who will receive' will have the email address of the quality manager.
4. 'What it will contain' will have the content of the email.
The other option will be to create a business rule and then utilize gs.eventQueue() to trigger a notification(this time it will be 'fired by event' )
You can have a look at the below reference as well and rather than creating incident, you can trigger notification:
ServiceNow Flow Design - Creating an incident off a negative survey response
Mark this as Helpful / Accept the Solution if this helps
Mark this as Helpful / Accept the Solution if this helps.