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.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Help with an OR statement
I'm using a SEARCH method on the CustomerSearchBasic Comments field. Is it possible to search for one value OR another value? Right now I'm only able to search for one value at a time.
Here's my SOAP if you want to see it:
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:enc="http://schemas.xmlsoap.org/soap/encoding" > <soap:Body> <platformMsgs:search xmlns:platformMsgs="urn:messages_2_6.platform.webservices.netsuite.com"> <tns1:searchRecord xmlns:tns1="urn:common_2_6.platform.webservices.netsuite.com" xsi:type="tns1:CustomerSearchBasic"> <tns1:comments operator="is" > <platformCore:searchValue xmlns:platformCore="urn:core_2_6.platform.webservices.netsuite.com">12345</platformCore:searchValue> </tns1:comments> </tns1:searchRecord> </platformMsgs:search> </soap:Body> </soap:Envelope>
0