I created a record using record.create() function. I set some values and I saved that record.
After it is saved, I have to change some field on that record.
How could I do that? Do I need to load it again? and save it again?
c
Corey Schwoebel
01/09/2023, 3:34 PM
You'll either have to load the record again with record.load(), or you can use record.submitFields() if you're not trying to edit sublists or subrecord fields.