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.
Search by custom boolean field produces SYS_001 error
Earlier I had a search SOAP request for inventory items by last modification date. It looked like this:
<?xml version="1.0" encoding="UTF-8"?> <search xsi:type="accountingLists:ItemSearch" xmlns="urn:messages_2012_1.platform.webservices.netsuite.com" xmlns:listAcct="urn:accounting_2012_1.lists.webservices.netsuite.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:common="urn:common_2012_1.platform.webservices.netsuite.com" xmlns:core="urn:core_2012_1.platform.webservices.netsuite.com"> <listAcct:basic xsi:type="common:ItemSearchBasic"> <common:lastModifiedDate operator="after" xsi:type="core:SearchDateField"> <core:searchValue xsi:type="xsi:dateTime"></core:searchValue> </common:lastModifiedDate> <common:type operator="anyOf" xsi:type="core:SearchEnumMultiSelectField"> <core:searchValue xsi:type="xsi:string">_inventoryItem</core:searchValue> </common:type> </listAcct:basic> </search>
Tagged:
0