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.
Can I sepcify a custom form when using nlapiCreateRecord?
Hello,
I am using suitescript to call:
nlapiCreateRecord( 'supportcase'); to create a support case.
var caseSubject = 'TEST CASE';
var record = nlapiCreateRecord( 'supportcase');
record.setFieldValue( 'title', caseSubject);
record.setFieldValue( 'company', '56');
record.setFieldValue( 'contact', '12203');
id = nlapiSubmitRecord(record, true);
Is it possible to specify which custom form I use as I have more than one form and some have default fields that I don't wish to populate as they are not default fields on other forms?
0