Does anyone see any problems with the code below? I not getting some items returned because of the default view set on the list I am querying.
$().SPServices({
operation: "GetListItems",
async: false,
CAMLRowLimit: 0,
listName: listName,
CAMLViewFields: "<ViewFields><FieldRef Name='Name'/><FieldRef Name='FileSizeDisplay'/><FieldRef Name='Modified'/><FieldRef Name='Author'/><FieldRef Name='Created'/><FieldRef Name='Path'/></ViewFields>",
CAMLQueryOptions: "<QueryOptions><ViewAttributes Scope='Recursive'/></QueryOptions>",
completefunc: function (xData, Status) {
$(xData.responseXML).SPFilterNode("z:row").each(function() {
$().SPServices({
operation: "GetListItems",
async: false,
CAMLRowLimit: 0,
listName: listName,
CAMLViewFields: "<ViewFields><FieldRef Name='Name'/><FieldRef Name='FileSizeDisplay'/><FieldRef Name='Modified'/><FieldRef Name='Author'/><FieldRef Name='Created'/><FieldRef Name='Path'/></ViewFields>",
CAMLQueryOptions: "<QueryOptions><ViewAttributes Scope='Recursive'/></QueryOptions>",
completefunc: function (xData, Status) {
$(xData.responseXML).SPFilterNode("z:row").each(function() {