Parallel Activity Doubt

Hello guys,
Can we use conditions between parallel activity?

Regards
Sudharsan

Hi,

Can you elaborate with specific sample?

Regards,

Let’s say we have two process

Whenever the the bot find false(that will be in end of process) in the 1st process it should also stop the process in 2nd flow else it should continue to do the 2nd process

Regards
Sudharsan

Hi,

Do you mean as the following, for example? The right side flow will exit if shouldContinue is assigned False in the left side flow.

Regards,

Exactly :100:

Hi,

FYI, we need to take care that parallel activity provides not real-parallel but pseudo-parallel. This means it might not exit from right side flow soon, even if shouldContinue is assigned False.

Regards,

Means it will take some time but it will stop right?

Hi,

Yes. it will stop (exit the loop) , when right side flow runs.
I recommend to try simple sample to check the behavior.

Regards,

Sure, Will try that