Hi everyone, does anyone know how I could get the ...
# suitetalkapi
l
Hi everyone, does anyone know how I could get the "country" in a SalesTaxItemSearchAdvanced SOAP request ? I've tired this but the country is not shown on the response. I've also tried to query a saved search and the result is the same.
Copy code
<soap-env:Body>
        <ns0:search 
        	xmlns:ns0="urn:<http://messages_2019_1.platform.webservices.netsuite.com|messages_2019_1.platform.webservices.netsuite.com>" 
        	xmlns:ns1="urn:<http://accounting_2019_1.lists.webservices.netsuite.com|accounting_2019_1.lists.webservices.netsuite.com>"
        	xmlns:ns2="urn:<http://common_2019_1.platform.webservices.netsuite.com|common_2019_1.platform.webservices.netsuite.com>"
        	xmlns:ns3="urn:<http://core_2019_1.platform.webservices.netsuite.com|core_2019_1.platform.webservices.netsuite.com>"
        	xmlns:xsi="<http://www.w3.org/2001/XMLSchema-instance>">
            <searchRecord xsi:type="ns1:SalesTaxItemSearchAdvanced">
            	<columns xsi:type="ns1:SalesTaxItemSearchRow">
            		<basic xsi:type="ns2:SalesTaxItemSearchRowBasic">
            			<externalId xsi:type="ns3:SearchColumnSelectField"/>
            			<name xsi:type="ns3:SearchColumnStringField"/>
            			<taxType xsi:type="ns3:SearchColumnSelectField"/>
            		</basic>
            		<taxTypeJoin xsi:type="ns2:TaxTypeSearchRowBasic">
            			<country xsi:type="ns3:SearchColumnEnumSelectField"/>
            			<description xsi:type="ns3:SearchColumnStringField"/>
            		</taxTypeJoin>
            	</columns>
        	</searchRecord>
        </ns0:search>
    </soap-env:Body>
u
have you tried building the search field in UI and see if it is possible?
l
It is possible in the UI :
u
why not call the search in UI over WS
l
Because the issue is the same. I don't see the country 😞