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.
Please note that on Saturday, April 18, 2026, at 8:00 PM Pacific Time, our Case Management System will undergo a scheduled maintenance for approximately 15 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
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