11-10-2015 09:38 AM
CPO 3.1.1.87
I have a process with a simple schedule that is always registering as "missed". The process can run if I kick it off manually.
Daily
9am
Repeat 135x every 4 minutes
No other conditions
Solved! Go to Solution.
11-12-2015 07:20 AM
It should be running. There has always been a funky UI issue around showing missed versus not.
Especially if you are not archiving the process.
Do you archive the process after each run?
11-12-2015 07:20 AM
It should be running. There has always been a funky UI issue around showing missed versus not.
Especially if you are not archiving the process.
Do you archive the process after each run?
11-12-2015 07:22 AM
I will check. We have some high volume processes so archiving might be turned off. That is set on a per-process basis, correct?
11-12-2015 07:25 AM
Yes correct. It's per-process.
You can run this query to find all processes that have archiving disabled. (at least it worked last time I used it)
select
*
from
dbo.Configuration
where
ConfigurationData.value(
'(ProcessConfiguration/StoreWhenCompleted)[1]'
,
'nvarchar(max)'
) =
'false'
;
11-12-2015 09:23 AM
Archiving was enabled. However I deleted the automation pack and imported a newer version and it seems to be working now. The world may never know. Thanks!
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide