Hi,
I'm working on a user administration page to ease the permissions management on our site. I'm running into an issue using UpdateListItems in conjunction with the User Information List. We have added a lookup column to the user list to define subordinate organization, works great for filtering views...
Trouble shooting so far:
Deleted and remade the added user info column
Switched between GUID and User Information List
Switched between valuepair with and without the id;#
Switched between ID with and without the trailing "_.000"
I'm running out of ideas unless UpdateListItems just wont work with the User Information List
Any thoughts?
Thanks
I'm working on a user administration page to ease the permissions management on our site. I'm running into an issue using UpdateListItems in conjunction with the User Information List. We have added a lookup column to the user list to define subordinate organization, works great for filtering views...
$()SPServices({
operation: “UpdateListItems”,
async: false,
listName: “User Information List”,//or SP list GUID
valuepairs: [[“ows_MyColumn”, aValue]],//aValue = lookup column id;#text or text
ID: user ID,//try with _.000
completefunc: function(xData, Status) {
console.log(Status);
}
});
Status returns "success" but the XML return contains error code 0x81020014 "field type not installed properly, go to list settings and delete" followed by the users data. Trouble shooting so far:
Deleted and remade the added user info column
Switched between GUID and User Information List
Switched between valuepair with and without the id;#
Switched between ID with and without the trailing "_.000"
I'm running out of ideas unless UpdateListItems just wont work with the User Information List
Any thoughts?
Thanks