In my sequence, I build an array in one section and store it in a variable called Locals.Test_Array.
I build the name of the permanent place I would like to store this array and store it in a string called Locals.SG_Test_Array_Name.
I would like to move the values from Locals.Test_Array to the Station Globals Array name stored in Locals.SG_Test_Array_Name.
For example:
the string stored in Locals.SG_Test_Array_Name is "StationGlobals.Coolant_Temperature_Test_Array" (already created in Station Globals)
What I am trying to do is this:
Statement StationGlobals.Coolant_Temperature_Test_Array=Locals.Test_Array (this works)
The Station Global Array name needs to change as the sequence executes and the data in Locals.Test_Array changes.
What I need is something like this.
Statement Locals.SG_Test_Array_Name=Locals.Test_Array (where SG_Test_Array_Name is a string that holds the name of the array)
Thanks, Big_Will