Input all / output all variables

In my main process, wich act as an orchestrator and call many subprocess, does it have any major bad impacts on using Input all / output all variables in each call activity?

Depending on the number and size of the variables being passed you could take a performance hit. But more importantly you could accidentally overwrite a value in the parent process that you didn’t intend to.

3 Likes