Is it possible to write locationdata from an Actor into a Data Table?

from all ive seen its not possible to write data into a datatable at runtime. datatables are meant for referencing things only, what you would want to use is an array of structs. using an array of structs would allow you to have the same basic functionality as a datatable but would allow you to write and save data into it. you could also take the information from a datatable and use it to initialize the array at the beginning of the game.