Question

I am making a process which has multiple bots so now I need to run bots in sequential manner and every bot is dependent on previous bot successful run. So how can I multiple child bot in parent bot.

  • 5 July 2022
  • 1 reply
  • 10 views

I am making a process which has multiple bots so now I need to run bots in sequential manner and every bot is dependent on previous bot successful run. So how can I multiple child bot in parent bot.

1 reply

Userlevel 4
Badge +7

Hi @Akshaykumar Ambavat​ ,

 

Here is a rough idea for you.

 

You can create a vBotStatus Boolean Variable (with Output checked) in each Child Bot and set it to False in case the bot runs into any error(in the Catch).

 

Since you have marked it as an Output, the Parent will receive the value from each task bot, and you can evaluate the vBotStatus before proceeding to the next Child Bot.

 

Kind Regards,

Ashwin A.K

Reply