Solution
Problem :- “field type is not installed properly. go to the list settings page to delete this field”
Solution
1. Log In in SQL Server
2. Select your appropriate database
3. Go to query window and run following query.it will display all record which field have blank type.
1: Select Definition,* from dbo.ContentTypes where ISNULL(Definition,'0')<>'0'
2: and Definition like '<Field Type=""%'
1: delete from dbo.ContentTypes where ISNULL(Definition,'0')<>'0'
2: and Definition like '<Field Type=""%'
If you have any questions you can reach out our SharePoint Consulting team here.
Thanks you!!!!! :D :D :D
ReplyDelete