In a process model I have a multi-instance embedded subprocess which receives some variable local. Within each instance of the multiple ones, I have an embedded subprocess from which I need access to the outer instance subprocess local variables. How do I do that?
Hi @Cristian, most likely you need to use an input mapping on your embedded subprocess to copy the local in the outer scope to a new local in the inner scope.