- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2023 03:38 AM
Hi All,
I have a flow that checks everyday for records updated today and then sends email to appropriate team if it finds at least one record updated.
This was working before but has now suddenly stopped working due to Value of field record is not a GlideRecord error.
The flow hasn't been touched since it was working before and 2 other flows doing similar thing has this error.
See attached picture for execution detail.
Has anyone seen this error before or is able to help with it please.
Thanks,
Narkkya
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2023 03:57 AM
No records have been found, so that's why the input into the Send Notification action is empty. You should add If/Else logic into the flow and call Send notification only if record has been found.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2023 04:09 AM
As suggested by Ondrej Bernant, the Look up step didn't find any record hence the next step for send notification failed. To avoid this in future, instead of using Lookup Record method, use Lookup Records
method which provides a count property. You can check this property in if condition and send notification only when the count is greater than one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2023 03:52 AM
can you share flow designer screenshot for that Send Notification action
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2023 03:55 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2023 03:56 AM
Can you share a screenshot of the Send Notification step, would like to see which inputs have been configured on this step.