Determine if busy Scheduler is delaying workflow timers | Finding a timer in the scheduled job queueIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; text-decoration: underline; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } --> Symptoms Timer did not execute or failedTimer stuckSlow timersHung workflowWorkflow is not progressingStuck workflow with asynchronous wftimer <sysID> Workflow timer When a workflow timer is executed, it creates a scheduled job according to the parameters set in the timer workflow activity. The scheduled job is a simple script that fires a timer event into the workflow. The created job is identified as WFTimer + the sys_id of the executing activity. ResolutionFinding the executing activity for a timer Navigate to Workflow > Live Workflows > Active Contexts. A list of running workflows appears.Find the workflow context containing the timer being investigated.Open the context.Select the Workflow Executing Activities related list.Select the timer being investigated.Right-click the header bar and select Copy sys_id. A number similar to this appears: 9d9d0633d733110043ea6f14ce61038d. This is the sys_id of the executing record. It is the record of the Scheduled Job containing the Timer that the callback script will fire the timer event into. Follow any instructions to copy sys_id.Navigate to System Scheduler > Scheduled Jobs > Scheduled Jobs.In the Search field type: WFTimer + the sys_id you copied. Your search item should look something like this: WFTimer9d9d0633d733110043ea6f14ce61038d.Click the Search icon.If the timer is still in the scheduled job queue, the timer has not been fired. If the workflow appears to be stuck and waiting for this timer, the workflow is still in the queue. The workflow picks up once the timer is picked up by the scheduler. How to determine if scheduler is backed up Navigate to System Diagonostics.On the page, find System Overview.If the scheduler backed up, Events Pending displays in red. What to do if scheduler is backed up If a scheduler is backed up, it is important to identify the scheduled jobs that are running and see if they are operating as expected. In the Application Navigator, type sys_trigger.list. A list of jobs displays.Filter out all jobs in the Ready state. The remaining jobs are currently running and occupying the scheduler. Examine the running jobs. If one or more jobs are not operating as expected and are blocking the timer unnecessarily, cancel the offending transactions using the following steps: Navigate to User Adminstration > All Active Transactions.Identify the offending transaction.Select the checkbox next to the transaction.In the choice list actions, click Selected Rows.Then click Kill. A series of messages explains that the transaction may not be terminated immediatey. After the offending jobs are cancelled, the scheduler picks up the next set of queued jobs, which should include any due or overdue WFTimer jobs that have been queued as Ready.