I'm experimenting with the Array variable type in IPA to handle running a job that I need to loop several times. It is working pretty well, and I would like to pull the definition of the array into a configuration variable so if I need to make updates, I can just do it in the system configuration rather than making changes to the flow and re-uploading it. Has anyone stored an Array as a configuration variable?
A way I got it to work was to store the components of the array in a variable, assign it to a string variable in the flow, and then to an Array variable by calling "new Array(variable)". Just wondered if anyone found a better way of doing this.
Configuraton Parameter ArrayTest = "a","b","c"
String variable ArraySource = _configuration.main.ArrayTest
Array variable Array = new Array(ArraySource)