This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SDK.REST.retrieveRecord(id, entity, null, null, | |
function(record) { | |
return record; | |
}, error(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
record.Name = "A new name"; | |
SDK.REST.updateRecord(id, record, "record", success(), error()); |
- Workflows which trigger on update of a field will trigger unnecessarily.
- An unwanted performance overhead is incurred.
- The executing user may have permission to update the record's Name but not access to update fields which may be secured fields. The update will therefore fail.
No comments:
Post a Comment