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 11, 2026, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 30 minutes. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.
nlapiSearchRecord problems with parent field
I have a custom record (customrecord_audio_demo) with a few fields. One of them is a list/record(Item) type where "Record is Parent" is checked. That field's ID is custrecord_audio_demo_parent.
The following code gives me the error "An nlobjSearchFilter contains an invalid operator, or is not in proper syntax: custrecord_audio_demo_parent"
// "id" is the internal ID of the item var demoFilters = [ new nlobjSearchFilter( 'custrecord_audio_demo_parent', null, 'is', id), ]; searchResults = nlapiSearchRecord('customrecord_audio_demo', null, demoFilters, null); What's weird is that I have another record set up, also with the item as parent, and earlier in the
0