The CreatorCon Call for Content is officially open! Get started here.

Flow Designer flow for a Catalog Item approval

aikaterinik
Tera Contributor

I have a Flow Designer flow for a Catalog Item approval. After “Ask for Approval,” I want to send exactly one email: either “Application Approved” or “Approval Denied.” Instead, both emails are sent at the same time. In Outbound > Sent I see two records with identical timestamps (“Application Approved” and “Approval Denied!”). Screenshots attached.

Screenshot 2025-10-02 164616.png

Screenshot 2025-10-02 164707.png

  

1 REPLY 1

Rafael Batistot
Kilo Patron

Hi @aikaterinik 

May you try a diferente approach... After the state of approval change to "approved" in RITM create a Business rule > after > updated, to send this notification 

 

RafaelBatistot_0-1759432766969.png
In BL add this code:

var gr = new GlideRecord('sysapproval_approver');
gr.addQuery('approver', '<sys_id_of_approver>');
gr.query();
if (gr.next())
    gs.eventQueue("<event_name>", gr);

 
Configure an event registry and notification 

https://www.servicenow.com/community/developer-forum/mail-notification-using-event-queue/m-p/2995462