I have 6-7 process which needs to be executed one after the other. All these process are complex with big workflows and lots of variable used. I need to execute these process one after the other using single Robot.
Please suggest how can I achieve this. Does it needs to be in single RE Framework or can we have multiple RE Framework for each process.
You can easily use a controller workflow to achieve this. The controller will have a list of processes that you need to execute and it will take care of it so that you don’t need to run them one by one.
I have also developed a custom template which is published in Go! which performs the same thing
You can easily use it for your scenario as well…
I was once in your situation.
If the processes are deployed in Orchestrator, you can use @Lahiru.Fernando’s component:
However, if it is not, what you can do is create a batch file for each process that will trigger the process.
After doing that, create a batch file that will trigger those batch files sequentially.
Or alternatively you can consider using Orchestrator API to trigger from within your workflow with Orchestrator HTTP Request activity if you have built some software previously. This approach requires building a proper json payload and calling API etc. Maybe one of the toughest options but once it is developed it runs smoothly…
I have only looked at it briefly, but it seems to be a lot of work that could have been done much much easier. But I’ll have a closer look during the week.