Can I assign a robot more than three same processes?

If I want to use a robot to execute many jobs with the same working content, which only have differences on parameters from assets, what kind of design is suitable for me?
I originally tried to use a robot to do so, but I found that a process only can be assigned twice to a robot on the same time, and the other assignments won’t appear in the job queue.

Use the Queue functionality. Add Transaction Items with the values that you want to execute the process, instead of using assets.
Next you can design a repetitive process that will take one item from queue and execute the process with that set of parameters. Then take next item from queue and so on until there are no more items in queue.
You will have one process with multiple iteration. In each iteration a different set of parameters will be used.

1 Like

Thanks for your help,
It works perfectly as I want.