Page 1 of 1

Chore scheduling

Posted: Mon Mar 20, 2017 6:16 pm
by kenship
TM1 10.2

I have 8 chores that runs around the clock every 20 min. About 20 TI processes in total.

I would like to add 3 TI processes that run only once per day during the night. I wonder if there's any way that I can stop the 8 chores for a 20 min. window then re-activate it.

Kenneth

Re: Chore scheduling

Posted: Mon Mar 20, 2017 6:39 pm
by declanr
You can add an extra process that checks the start time and if its between a certain boundary just quit the chore.
This way it would still run but it should take less than a second for it to quit back out.

Re: Chore scheduling

Posted: Wed Mar 22, 2017 1:27 pm
by kenship
Thanks for that. Mind to tell me the function name in TI?

Re: Chore scheduling

Posted: Wed Mar 22, 2017 4:45 pm
by declanr
ChoreQuit quits a chore with an error message.

If you want it without error messages you can look into just having the one wrapper process assess the time and then execute the other processes via if statement.

Re: Chore scheduling

Posted: Wed Mar 22, 2017 4:57 pm
by kenship
Thanks and I'll look into it.

Re: Chore scheduling

Posted: Sat Apr 01, 2017 6:34 am
by Darkhorse
Hi Kenship

have you tried creating a Chore Manager TI that runs every hour/20 minutes and runs your TI's in the order you specify rather than quitting chores etc?

Re: Chore scheduling

Posted: Sat Apr 01, 2017 9:12 pm
by kenship
Hi,

We already use chore management in TI, I implemented the above and works perfectly.

Thks.

Ken
Darkhorse wrote:Hi Kenship

have you tried creating a Chore Manager TI that runs every hour/20 minutes and runs your TI's in the order you specify rather than quitting chores etc?