Does anyone know a good way to archive custom reco...
# suitescript
d
Does anyone know a good way to archive custom record? I was thinking of storing them in text files and compressing them in the file cabinet. My main problem right now is that my application relies on the internalid values for record order. Maybe I'll just duplicated that value in another hidden field and use that instead.
b
if you consider a file good enough, then a csv export will probably work
if you want the ability to create the records again, make sure you are able to setup a matching csv import
d
I want to script it on a schedule
b
you can export it to a file on a schedule
using both a SearchTask or you can write your own logic
d
I was thinking about saving it as JSON. Easier to import back in.
b
depends on how easy you think importing as a json is vs using native csv imports