How to match Trigger:(SYS ID) to flow that is triggered?

Lon Landry4
Mega Sage

When I look at the list view for scheduled jobs.

I can see a list of triggered flows but cannot find the flow that is triggered.

I have been checking flow related tables, but cannot find a connection.

How can I match Trigger:(SYS ID) to flow that is triggered?

 

Thanks for your help & time,

Lon

1 ACCEPTED SOLUTION

Sagar Pagar
Tera Patron

Hi @Lon Landry4,

 

1) You need to open Flow trigger record/form.

 

2) Copy the sys_id from script lines.

Look at example- d46d0b3bdbb3e0107c47be6139961991.

 

Screenshot 2023-07-27 at 9.36.40 PM.png

 

sn_flow_trigger.FlowTriggerAPI.fireTimerTrigger('d46d0b3bdbb3e0107c47be6139961991');

 

3) Open Flows [sys_hub_flow] table and query with

Remote triggered ID IS d46d0b3bdbb3e0107c47be6139961991 ---- enter/run

 

It will gives you the required results/ flows name.

Screenshot 2023-07-27 at 9.40.16 PM.png

 

 

If my response helps to solve your issue. Kindly mark it as helpful & correct. It will be helpful for future readers.
Thanks,
Sagar Pagar

The world works with ServiceNow

View solution in original post

2 REPLIES 2

Sagar Pagar
Tera Patron

Hi @Lon Landry4,

 

1) You need to open Flow trigger record/form.

 

2) Copy the sys_id from script lines.

Look at example- d46d0b3bdbb3e0107c47be6139961991.

 

Screenshot 2023-07-27 at 9.36.40 PM.png

 

sn_flow_trigger.FlowTriggerAPI.fireTimerTrigger('d46d0b3bdbb3e0107c47be6139961991');

 

3) Open Flows [sys_hub_flow] table and query with

Remote triggered ID IS d46d0b3bdbb3e0107c47be6139961991 ---- enter/run

 

It will gives you the required results/ flows name.

Screenshot 2023-07-27 at 9.40.16 PM.png

 

 

If my response helps to solve your issue. Kindly mark it as helpful & correct. It will be helpful for future readers.
Thanks,
Sagar Pagar

The world works with ServiceNow

Lon Landry4
Mega Sage

Thanks, I had done this before but had forgotten the Remote triggered ID field...