Store multiple values in a single field or attribute

0
Hi,   I have a scenario where I need to store 200 values in a single field which later can be retrieved and tracked down. Can anyone suggest how this can be achieved?
asked
1 answers
1

One approach could be to use a non persistent entity with to temporarily store the values you to store in a single field, then use an export mapping to serialise this into JSON you can store in a single String. To get the data back, you can use an import mapping to reverse the procedure and get the data back into the non persistent entity.

Hope this helps.

answered