Quantcast
Channel: jQuery Library for SharePoint Web Services
Viewing all articles
Browse latest Browse all 6517

New Post: Max Limit on SPUpdateMultipleListItems

$
0
0

Hey Everyone,

I just started using SPUpdateMultipleListItems (using version 0.7.2), and it works fine...until I go above around 500 items to update. Is there some kind of upper limit on how many items in the list can be updated? This particular list has around 1200 items.

 

When I try to run this code on something that contains more than  < 500 items, it will run, take a few seconds, and complete. When I try to run this code on something that contains > 500 items, it doesnt throw an error, but it doesnt really run either...it will execute, and immediately finish running. I have alerts set up before and after to approximate the timing of execution time.

 

$().SPServices.SPUpdateMultipleListItems({
  webURL: "http://myURL",
  listName: "TestMaterials",
  batchCmd: "Update",
  CAMLQuery: "<Query><Where><Leq><FieldRef Name='ID'/><Value Type='Text'>600</Value></Leq></Where></Query>",
  valuepairs: [["ColToBeUpdated", "5"]],
  debug: true
}); 

Viewing all articles
Browse latest Browse all 6517

Trending Articles