- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2023 08:37 AM
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
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2023 09:12 AM
Hi @Lon Landry4,
1) You need to open Flow trigger record/form.
2) Copy the sys_id from script lines.
Look at example- d46d0b3bdbb3e0107c47be6139961991.
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.
If my response helps to solve your issue. Kindly mark it as helpful & correct. It will be helpful for future readers.
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2023 09:12 AM
Hi @Lon Landry4,
1) You need to open Flow trigger record/form.
2) Copy the sys_id from script lines.
Look at example- d46d0b3bdbb3e0107c47be6139961991.
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.
If my response helps to solve your issue. Kindly mark it as helpful & correct. It will be helpful for future readers.
Thanks,
Sagar Pagar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2023 10:36 AM
Thanks, I had done this before but had forgotten the Remote triggered ID field...