Bryce Krah
02/16/2023, 8:35 PMItems you have requested in the record have been deleted since you retrieved the form
but I'm stuck on what could be causing it or where to look? The creation works fine when I run it in the console in the UI, and I've even removed setting any fields except the bare minimum mandatory "Title" field. When I search in SuiteAnswers it looks like this error is thrown on all different types of records for various reasons and none seem related. Any help is appreciated thanks!Bryce Krah
02/16/2023, 9:05 PMvar taskRecord = record.create({ type: 'task' });
taskRecord.setValue('title', 'Web Request: ' + formData.firstName + ' ' + formData.lastName);
var id = taskRecord.save({
enableSourcing: false,
ignoreMandatoryFields: true
});