I'm getting this error
Column 'Title' does not exist. It may have been deleted by another user. /Global desktop
while clicking Share files button in ribbon. The information I got is as below:
- The request is going from Sharepoint js libraries to
http://site/_vti_bin/client.svc/ProcessQuery I went in depth of REST query and resent after editing. I removed Title property from following query and it worked:
<Query Id="245" ObjectPathId="238"><Query SelectAllProperties="false"><Properties><Property Name="ID" SelectAll="true" /><Property Name="FileRef" SelectAll="true" /><Property Name="FileLeafRef" SelectAll="true" /><Property Name="Title" SelectAll="true" /></Properties></Query>The result of the modified query is as follows:
245, { "_ObjectType_": "SP.ListItem", "_ObjectIdentity_": "740c6a0b-85e2-48a0-a494-e0f1759d4aa7:site:8a58da05-7bef-4d82-84f2-a2a2e218af9b:web:ac1a65ba-a71e-4096-b939-7d880ad47b20:list:48eb9616-5dce-43af-8bb8-fa1b84bc3ebf:item:1,1", "_ObjectVersion_": "3", "ID": 1, "FileRef": "/Global desktops/Testing.aspx", "FileLeafRef": "Testing.aspx" },
I am looking for a way to add a property Title to this SP.ListItem so that the error should not occur. Powershell solution would be preferred (for testing)
