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.
Update: Narrative Insights has been restored and is now available.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
Narrative Insights is Temporarily Unavailable due to an Infrastructure Issue. Learn how This Impacts Your Account and What to Expect While the Feature is Disabled.
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