Hi,
I have a loans BPMN as shown.
loans.bpmn (5.7 KB)
This Camunda process is triggered from another process, but that is probably not relevant to this question.
In the Camunda process attached, we can see that there are 2 sequential multi-instance delegates. One delegate gets the collection from the Camunda variable “houseLoansList” and another delegate gets the collection from Camunda variable “personalLoansList”. But both delegates refer to the local variable name as “loan”.
Will this cause any functional issue? Or is it safe to assume that the “loan” variable is local to the respective multi-instance delegate, so the ‘loan’ local variable for delegate1 will not have any issues/clash with ‘loan’ local variable of the 2nd delegate even though both these delegates are within the same Camunda process.
Thanks.