I just created a couple of site columns and content types that reference them through VS2010. I updated one of the fields and then tried to redeploy, but after retracting, deploy failed because the site columns previously created were still there. I tried to delete them manually from the UI, and got an alert box with this message:

Site columns which are included in content types cannot be deleted. Remove all references to this site column prior to deleting it.

I dug around in SharePoint Manager and didn't find any references, so I used powershell to enumerate all the content types and lists looking for references to my site columns and found nothing.

I tried to delete using PowerShell like this:

$web.Fields.Delete("StartTime")

which resulted in this error:

Exception calling "Delete" with "1" argument(s): "Site columns which are included in 
content types or on lists cannot be deleted. Please remove all instances of this site 
column prior to deleting it."
At line:1 char:19
+ $web.Fields.Delete <<<< ("StartTime")
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : DotNetMethodException

Finally, a simple inspection of the columns in PowerShell shows the following:

Title                               Id                                                         CanBeDeleted ParentList                                                       Sealed ListsFieldUsedIn                   
-----                               --                                                         ------------ ----------                                                       ------ ----------------                   
Start Time OBE                      6fa0d85b-9af1-408b-835f-d4c66536...                                True                                                                   False {}                                 
Time Tracker Tags                   92bc866b-0415-45f0-b431-d4df69c4...                                True                                                                   False {}                                 

I'm experienced with MOSS 2007 and new to SP2010, but I've never seen this happen before. Anyone have any hints?

link|improve this question

76% accept rate
I experience exactly the same problem. I wrote some PS code to delete all references from lists and content types (although none was found) from all web sites in site collection. After doing this when I was trying to remove the site column I've got the same error - "Exception calling "Delete" with "0" argument(s): "Site columns which are included in content types...". One more thing - the problematic columns were created in UI, not in VS as in your case. Have you found any solution? – Marek Feb 2 at 10:39
feedback

3 Answers

Happens to SharePoint 2010 too. Try looking at:

$field.AllowDeletion = $TRUE
$field.Update()

When I set that, seemed to work. Now I just can't replicate it, in order to prove my point. Typical.

link|improve this answer
feedback

I had this same problem and was able to delete using SharePoint Designer - not sure if anyone can validate this works for them.

link|improve this answer
feedback

It's been a while, and I've long since moved on from this problem, but I think that the final answer was that there were content types relying on a particular site column that weren't picked up by SPM.

I think once I retracted everything custom from the site, I was able to delete normally.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.