Looking for suggestions on retaining data during a...
# sdf
d
Looking for suggestions on retaining data during a SuiteApp update
The update will delete some custom records (that have data I want to retain). I need to import the retained data into new records that are introduced in the upgrade
Some thoughts are ... use the
N/cache
module [not sure in bundle install scripts support cache, nor if I can trust that I can access it after install either. Plus, if the install fails for some reason, the data is lost)
export the data to a csv, then import the data after the update.
Somehow create the new record first, copy the data over, then continue the install? Not sure this timing is even possible
m
You could do csv file or json file in the filecabinet before install and then another script after install that will parse and create your records
1
this 1