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.
How to get the internal id of customer, when I run a customer search using java ?
Hi All,
I have created a customer search using Custom Field Search in java.
I am getting the result properly.
But now I have been stuck at a point where I get the result properly, but unable to get the Internalid of the customer.
In web service response I am getting result as:
<?xml version="1.0"?> -<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> -<soapenv:Header> -<platformMsgs:documentInfo xmlns:platformMsgs="urn:messages_2012_2.platform.webservices.netsuite.com"> <platformMsgs:nsId>WEBSERVICES_3470112_052320137878700472056616460_77c83f7f7ef1</platformMsgs:nsId> </platformMsgs:documentInfo> </soapenv:Header> -<soapenv:Body> -<searchResponse xmlns="urn:messages_2012_2.platform.webservices.netsuite.com"> -<platformCore:searchResult xmlns:platformCore="urn:core_2012_2.platform.webservices.netsuite.com"> <platformCore:status isSuccess="true"/> <platformCore:totalRecords>1</platformCore:totalRecords> <platformCore:pageSize>1000</platformCore:pageSize> <platformCore:totalPages>1</platformCore:totalPages> <platformCore:pageIndex>1</platformCore:pageIndex> <platformCore:searchId>WEBSERVICES_3470112_052320137878700472056616460_77c83f7f7ef1</platformCore:searchId> -<platformCore:searchRowList> -<platformCore:searchRow xmlns:listRel="urn:relationships_2012_2.lists.webservices.netsuite.com" xsi:type="listRel:CustomerSearchRow"> -<listRel:basic xmlns:platformCommon="urn:common_2012_2.platform.webservices.netsuite.com"> -<platformCommon:entityId> <platformCore:searchValue>MR-00473</platformCore:searchValue> </platformCommon:entityId> -<platformCommon:internalId> <platformCore:searchValue internalId="966"/> </platformCommon:internalId> </listRel:basic> </platformCore:searchRow> </platformCore:searchRowList> </platformCore:searchResult> </searchResponse> </soapenv:Body> </soapenv:Envelope>
0