Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Searching for JSON in a long text - syntax needed
I have item records storing some JSON in a long text field such as:
{"PROPERTY1":{"show":true,"id":22},"PROPERTY2":{"show":false,"id":435},...
In the UI, NetSuite stores this visually as:
"{"PROPERTY1":{"show":true..."
I want to search item records to see if a specific property has it's show sub-property set to true and since I'm not searching for the object, I construct the following in a filter:
nlobjSearchFilter('custitem_myfield',null,'contains','"PROPERTY1":{"show":true')
It always returns null. I've tried escaping the quotes, using entities, etc but no combination appears to work. Is there a specific syntax for searching on text that contains quotes? If I just search for 'PROPERTY1' it returns results fine. I'm thinking the problem is not properly escaping the quotes in the string.