Concatenate strings

0
Here my idea is to retrieve all Back office employees full names and put them together in the “To_Accounts” string separated by commas.   Any ideas?
asked
2 answers
3

I would check if $To_Accounts is an empty string and if it isn’t append a comma before the FullName. 

 

if $To_Accounts != empty then
  $To_Accounts + ',' + $IteratorBackOfficeEmployee/FullName
else
  $IteratorBackOfficeEmployee/FullName

 

answered
0

hi, Alejandro Castrelo, I meet with you same question. How to solve this question? Can you tell me.

answered