Note that there are some explanatory texts on larger screens.

plurals
  1. POMSCRM async javascript SDK.REST.retrieveMultipleRecords return only 50 records, need all records at a time
    text
    copied!<p>i have some problem in async call of "SDK.REST.retrieveMultipleRecords" function. Below are the code with my Problem</p> <pre><code>function Main_Method(_AnimalList) { new SearchInAnimalRecords(_AnimalList); } function SearchInAnimalRecords(_AnimalList) { $('#divProgressDetail').append('&lt;br&gt;Start searching Animal Records...'); for (var i = 0; i &lt; _AnimalList.length; i++) if (_AnimalList[i].SchemaName != "Lion") this.Process(AnimalSchemaName); } SearchInAnimalRecords.prototype.Process = function (AnimalSchemaName) { $('#divProgressDetail').append('&lt;br&gt;Retriving ' + AnimalSchemaName + ' Animal Records...'); ///SDK.REST.retrieveMultipleRecords : Sends an asynchronous request to retrieve records. SDK.REST.retrieveMultipleRecords ( AnimalSchemaName, /// The Schema Name of the Entity type record to retrieve. "$select=" + AnimalSchemaName + "Id", /// A String representing the OData System Query Options to control the data returned function (AnimalRecords) // "AnimalRecords" only contain 50 records </code></pre> <p>This function that will be passed through and be called for each page of records returned. Each page is 50 records. If you expect that more than one page of records will be returned, this function should loop through the results and push the records into an array outside of the function. Use the OnComplete event handler to know when all the records have been processed.</p> <pre><code> { var length = AnimalRecords.length; for (var i = 0; i &lt; length; i++) { var guid = AnimalRecords[i][AnimalSchemaName + 'Id']; var IsGuidMatch = IsKeyGuidMatchWith(guid); if (IsGuidMatch) { $('#divProgressDetail').append('&lt;br&gt;Key animal found in ' + AnimalSchemaName + ' Records.'); $('#divProgressDetail').append('&lt;br&gt;Searching stop.'); break; } } }, function () /// The function that will be passed through and be called by a failed response. { $('#divProgressDetail').append('&lt;br&gt;Error while Retriving ' + AnimalSchemaName + ' Records.'); }, function () /// OnComplete EventHandler The function that will be called when all the requested records have been returned. No parameters are passed to this function. { $('#divProgressDetail').append('&lt;br&gt;Completed searching in ' + AnimalSchemaName + ' Records.'); } ); } </code></pre> <p>in Process function, their is one anonymous function which accept one parameter named as "AnimalRecords". So problem is this AnimalRecords only contains 50 records, i need here all the records at a time.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload