Good morning, i have a problem with my script.
I want to update a record from a script button and i write this code:
// Delete a record
let table = base.getTable("Clients");
let record = input.recordAsync;
table.updateRecordAsync(record, {'Name': 'Update'});
This doesn’t work and i don’t understand why. The only message i get is
This script did not use the record from the button field. To use a record from a button field, call input.recordAsync in your script
Anyone can help me please?