I created a record using record.create() function....
# suitescript
b
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
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.
b
Thank you