Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
"Invalid entity reference key -7." when creating 'note' entity under 'project' entity
Can anyone review this code and let me know if it's possible what I'm trying to do, which is onAfterSave event to grab text from a field and save it in the notes area, under Communications tab?
function updatenotes(type,form)
{
var nextsteps = nlapiGetFieldValue('custentity_notes_next_steps');
nlapiLogExecution('DEBUG','found text ' + nextsteps);
var note = nlapiCreateRecord( 'note' );
note.setFieldValue( 'title', 'Next Steps' );
note.setFieldValue( 'notedate', getdatestring( new Date() ) );
note.setFieldValue( 'entity', '-7' );
note.setFieldValue( 'note', nextsteps );
var sKey = nlapiSubmitRecord( note );
}
It comes back with the error: ""Invalid entity reference key -7."
Thanks,
Marko
0