I want to query to get only number of records and not all objects.
Im doing it:
"""<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:ns0="http://www.service-now.com/incident"
xmlns:ns1="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header/>
<ns1:Body>
<ns0:getRecords>
<ns0:__limit>100</ns0:__limit>
</ns0:getRecords>
</ns1:Body>
</SOAP-ENV:Envelope>
But it return all objects limiting 100 and stay slow, for a better performance I think if return only number of records it gets better.
Has any way?
There's a plugin called Aggregate Web Service that allows you to query using an aggregate function (e.g. SUM, COUNT, AVG, ...). Please refer to the following link for more info: http://wiki.servicenow.com/index.php?title=Direct_Web_Service_API_Functions#aggregate
The following is a sample SOAP request using the COUNT aggregate function: