How to Identify the Flow Designer Flow Associated with a "Trigger:" Scheduled JobIssue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } This article explains how Flow Designer timer triggers are related to Scheduled Jobs and how to identify the Flow Designer flow associated with a trigger record. You observe one or more Scheduled Job records similar to: Trigger:2dc2180587d48550875462473cbb352a Trigger:3f9aa3fa87afec10082f766acebb35cf Trigger:4456a3018732fc50082f766acebb35ca These records appear in Scheduled Jobs (sysauto/sys_trigger), but it is unclear which Flow Designer flow created them. Customers often ask whether these records: belong to an active Flow Designer floware orphaned recordscan be safely deleted Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } N/A Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } span { font-size: 12pt; font-family: Lato; color: var(--now-color--text-primary, #000000); } h2 { font-size: 24pt; font-family: Lato; color: var(--now-color--text-primary, black); } h3 { font-size: 18pt; font-family: Lato; color: var(--now-color--text-primary, black); } h4 { font-size: 14pt; font-family: Lato; color: var(--now-color--text-primary, black); } a { font-size: 12pt; font-family: Lato; color: var(--now-color--link-primary, #00718F); } a:hover { font-size: 12pt; color: var(--now-color--link-primary, #024F69); } a:target { font-size: 12pt; color: var(--now-color--link-primary, #032D42); } a:visited { font-size: 12pt; color: var(--now-color--link-primary, #00718f); } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: ; max-width: ; width: ; height: ; } } How the tables are related The important point is: The Scheduled Job does not directly reference the Flow Designer record. Instead, it references a Flow Timer Trigger, which in turn is referenced by the Flow Designer definition. How to identify the associated Flow Step 1 Open the Scheduled Job. Example: Trigger:2dc2180587d48550875462473cbb352a Extract the value after Trigger: 2dc2180587d48550875462473cbb352a Step 2 Navigate to: sys_hub_flow.list Filter by Remote Trigger ID = 2dc2180587d48550875462473cbb352a or remote_trigger_id=<sys_id> Step 3 The returned record is the Flow Designer flow associated with the Scheduled Job. Example Scheduled Job Trigger:2dc2180587d48550875462473cbb352a ↓ Timer Trigger sys_flow_timer_trigger.sys_id 2dc2180587d48550875462473cbb352a ↓ Flow sys_hub_flow.remote_trigger_id 2dc2180587d48550875462473cbb352a Result: Flow: Example Scheduled Cleanup Flow Why this works The Remote Trigger ID (remote_trigger_id) field on the sys_hub_flow table stores a reference to the timer trigger used by the flow. Since the Scheduled Job name contains the timer trigger's sys_id, matching that value against remote_trigger_id allows you to identify the owning Flow Designer flow. What is the sys_flow_timer_trigger table? sys_flow_timer_trigger is an internal Flow Designer table that stores timer-based triggers used to schedule or resume flow executions. Typical scenarios include: Scheduled FlowsWait for DurationWait UntilTimer-based resumptionsDelayed flow execution It acts as the scheduling mechanism between Flow Designer and the platform scheduler.