My users need to be able to upload a CSV file, and have that file either create new records, or update/delete existing records, where a unique ID in the CSV, matches the unique ID in the database.
All I’ve been able to do so far, is allow users to create new records, but not overwrite existing ones.
No, you cannot override or manage the bubble UniqueID.
If you want to manage this on your own, you would probably have to create a datatype that processes the CSV upload. then every time you upload via CSV, for each row you create this “Process_Row” object with all of your fields. Then for each object, you could look up your own ID and see if it’s new or existing and do the 2 workflows I mentioned above.
It depends if your csv plugin allows you to do some of this, but I’ve never seen it yet.