Paul,
Thank you for your quick response. So I tried what you advised and I am not having any success. I copy/pasted the bulkUpdate function exactly as it was indicated above with no revisions on my part. I also copy/pasted the code you provided with revisions specific to my SP list including the CAML to only update the desired items, and currentdate is a global var while CurrentDate is the actual field name:
bulkUpdate({
.done(function(xData, status){
.fail(function(xData, status){
}
Thank you for your quick response. So I tried what you advised and I am not having any success. I copy/pasted the bulkUpdate function exactly as it was indicated above with no revisions on my part. I also copy/pasted the code you provided with revisions specific to my SP list including the CAML to only update the desired items, and currentdate is a global var while CurrentDate is the actual field name:
bulkUpdate({
SPServicesOptions: {
listName: "Process Design Engagement and Intake",
CAMLQuery: "<Query><Where><Eq><FieldRef Name='stringFormStatus' /><Value Type='text'>Active</Value></Eq></Where></Query>"
},
updates: [
"<Method ID='1' Cmd='Update'>" +
"<Field Name='CurrentDate'>" + currentdate + "</Field>" +
"</Method>"
]
}).done(function(xData, status){
alert("all updates done!");
}).fail(function(xData, status){
alert("Update failed.");
});}