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
battk
12/30/2021, 6:05 PM
if you consider a file good enough, then a csv export will probably work
battk
12/30/2021, 6:05 PM
if you want the ability to create the records again, make sure you are able to setup a matching csv import
d
dcrsmith
12/30/2021, 6:15 PM
I want to script it on a schedule
b
battk
12/30/2021, 6:28 PM
you can export it to a file on a schedule
battk
12/30/2021, 6:29 PM
using both a SearchTask or you can write your own logic
d
dcrsmith
12/30/2021, 6:30 PM
I was thinking about saving it as JSON. Easier to import back in.
b
battk
12/30/2021, 6:31 PM
depends on how easy you think importing as a json is vs using native csv imports