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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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