Is there a way to disable specific flows in Ui Path bots when scheduling in different times?

EX: I am planning to schedule a bot three times a day.

Time1: Need to send files for A, B , C ppl.
Time2: Need to send files for E, F , G ppl.
Time3: Need to send files for W, X , Z ppl.

I am finding a way to do this. Is there a way to disable processes in Ui Path when scheduling? Or any other better solution for above process

Hey @Ruvinda_Nilakshika.

Instead of disabling the process better to write some logic itself in the code like

  1. Time 1 is the morning time so put the condition if the Now.Time is between so and so time then you need to send file for A, B and C
  2. Time 2 is the afternoon time so put the condition if the Now.DateAndTime is between so and so time then you need to send file for E, F , G

Thanks,
Sanjit

Dear Sanjit,

Thank you very much. That is what I required. If we set like that, normally other two will disabled (If not match with the time frame). Hope I am correct?

Thank you,
Ruvinda

Yes, Correct.