welcome to XRM blog

Keep in touch with latest CRM/ERP articles

To remain competitive your organisation must be efficient across the business process spectrum. To do so you need to take sound decisions based on a balance between the cost and risk. To do so you will be heavily dependent on your content management in itself needs...

image
Blog

How to retrieve more than 50 records through OData in CRM 2011?

By xrmlabs webmaster on 11/1/2013
If you are using OData end points to retrieve records in MS CRM 2011 then you might be surprised to know that the maximum number of records that can be retrieved in a single retrieve call is 50. This is because the page size is fixed to Max 50 records.

When working with large set of data we were faced with a similar problem. Thankfully MS CRM Odata has a next link which can be used to retrieve next 50 records. The following example shows how to retrieve more than 50 records using Odata end point. In this example we push the first 50 records in an array and retrieve next page results using the URL (quot;__nextquot;) provided in the JSON response object.

Note we are using Jquery and JSON2 in the following example. We presume you have already added JQuery and JSON to your Form. To know more about how to add jquery please follow this blog entry (How toadd JQuery support to CRM-2011)


The javascript code is such as follows.

var relatedContact = [];
function onloadFetchAllContactRecords(){
var serverUrl = Xrm.Page.context.getServerUrl();
var oDataUrl = serverUrl + quot;/xrmservices/2011/OrganizationData.svc/ContactSet?$select=EMailAddress1,FirstName,LastName$filter=StateCode/Value eq 0quot;;
GetContactRecords(oDataUrl);
var totalRecords = relatedContact.length;
}
function GetContactRecords(url){
jQuery.ajax({
type: quot;GETquot;,
contentType: quot;application/json; charset=utf-8quot;,
datatype: quot;jsonquot;,
url: url,
async: false,
beforeSend: function(XMLHttpRequest){
XMLHttpRequest.setRequestHeader(quot;Acceptquot;, quot;application/jsonquot;);
},
success: function (data, textStatus, XmlHttpRequest){
if(data data.d != null data.d.results != null){
var objrecord = data.d;
var records = objrecord.results;
insertRecordsToArray(records);
FetchRecordsCallBack(objrecord);
}
},
error: function (XmlHttpRequest, textStatus, errorThrown){
alert(quot;An error has occurredquot;);
}
});
}
function insertRecordsToArray(records){
for (var i = 0; i < records.length; i++){
relatedContact.push(records[i]);
}
}
function FetchRecordsCallBack(objrecord){
if(objrecord.__next != null){
var url = objrecord.__next;
GetContactRecords(url);
}
}

Hope this helps.
Blog Calendar
Blog Calendar List
2023 May  37  5
2023 Apr  18  5
2023 Mar  29  6
2023 Feb  42  5
2023 Jan  26  4
2022 Dec  93  7
2022 Nov  214  2
2022 Sep  13  1
2022 Aug  25  2
2022 Jun  7  2
2022 May  3  2
2022 Apr  5  2
2022 Mar  1  1
2022 Feb  2  1
2022 Jan  1  1
2021 Dec  3  1
2021 Nov  2  1
2021 Oct  1  1
2021 Sep  10  1
2021 Aug  37  5
2021 Jul  36  4
2021 Jun  731  5
2021 May  30  3
2021 Apr  1394  3
2021 Mar  147  5
2021 Feb  1293  7
2021 Jan  1617  9
2020 Dec  330  7
2020 Sep  63  3
2020 Aug  491  3
2020 Jul  97  1
2020 Jun  61  3
2020 Apr  45  3
2020 Mar  11  2
2020 Feb  27  5
2020 Jan  34  7
2019 Dec  17  4
2019 Nov  17  1
2019 Jan  23  2
2018 Dec  43  4
2018 Nov  68  3
2018 Oct  18  3
2018 Sep  954  11
2018 Aug  7  2
2018 Jun  12  1
2018 Jan  68  2
2017 Sep  580  5
2017 Aug  17  1
2017 Jul  17  2
2017 Jun  62  2
2017 May  21  1
2017 Apr  35  2
2017 Mar  121  4
2017 Feb  675  4
2016 Dec  194  3
2016 Nov  623  8
2016 Oct  284  10
2016 Sep  543  6
2016 Aug  39  1
2016 Jun  1836  6
2016 May  109  3
2016 Jan  71  2
2015 Dec  407  6
2015 Nov  4  1
2015 Oct  13  1
2015 Sep  1428  6
2015 Aug  14  1
2015 Jul  128  2
2015 Jun  10  1
2015 May  20  1
2015 Apr  30  3
2015 Mar  80  3
2015 Jan  5325  4
2014 Dec  17  1
2014 Nov  2255  4
2014 Oct  67  1
2014 Sep  106  2
2014 Aug  5177  1
2014 Jul  48  2
2014 Apr  2542  12
2014 Mar  288  17
2014 Feb  219  6
2014 Jan  1510  16
2013 Dec  21  2
2013 Nov  686  2
2013 Oct  256  3
2013 Sep  11  1
2013 Aug  40  3
2013 Jul  214  1
2013 Apr  57  6
2013 Mar  2202  10
2013 Feb  124  3
2013 Jan  294  2
2012 Nov  56  2
2012 Oct  493  10
Tag Cloud
Interested in our services? Still not sure about project details? get a quote