Dynamic Robot Allocation Using The Start Job Activity Does Not Work As Expected In Classic Folder

Why isn't the Robot dynamic allocation option working via triggers?

Issue: Robot allocation using the Start Job activity does not work as expected in Classic Folder.

Resolution:

Start Job Parameter

if (noOfRobots == 0)

{

strategy = StartProcessDtoStrategy.All;

noOfRobots = -1;

}

else

{

strategy = StartProcessDtoStrategy.RobotCount;

}


If the Robot parameter is going as empty, it allocates the jobs to all the Robots in the same environment. Otherwise, id the Robot Number parameter has aby value, it allocates the job to only those which are free and all the other jobs will go to pending stage.

if (noOfRobots == 0)

{

"It will start the jobs on all the bots in the same "environment"

else

{

"It will start the job on all the available jobs";(Here the Job is allocating to free and left over get on to pending)

}