Hey guys,
I was wondering why text aggregators can’t or shouldn’t be last in route. In the scenario I keep getting warnings about that.
We are building a small scenario that handles form submissions and the notifications afterwards. In the form I am getting 4 arrays that contain values of a checkbox group. What I needed was to create a single variable that stores all values of all checkboxes so I can work with it.
For example I wanted to have:
Goal1, Goal2, Goal3
instead of:
goals [
1: Goal1
2: Goal2
3: Goal3
]
To achieve this I used iterators and text aggregators which are looping through the arrays and then adding all values in a single string separated by a comma.
This is my scenario:
My questions are:
Why can a text aggregator not be last in route?
What should I do instead or how can I improve my scenario?