Value of field record is not a GlideRecord error on Notification on flow designer

Narkkya Arulsel
Tera Contributor

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.

Screenshot 2023-04-06 at 11.30.33.png 

Thanks,

Narkkya

1 ACCEPTED SOLUTION

Community Alums
Not applicable

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.

View solution in original post

8 REPLIES 8

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.

 

Source: https://docs.servicenow.com/bundle/rome-servicenow-platform/page/administer/flow-designer/reference/...

Ankur Bawiskar
Tera Patron
Tera Patron

@Narkkya Arulsel 

can you share flow designer screenshot for that Send Notification action

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

Screenshot 2023-04-06 at 11.53.58.png

Sandeep Rajput
Tera Patron
Tera Patron

Can you share a screenshot of the Send Notification step, would like to see which inputs have been configured on this step.