So I have two completely different solutions, I'll call them solutionA.wsp and solutionB.wsp and they are being deployed to the same site
Both of them contain a site column definition for a column named "WorkOrder"
Here's the definition found in solutionA.wsp
<Field Type="Text" DisplayName="Work Order" Description="Order Number" Required="FALSE" EnforceUniqueValues="FALSE" Indexed="FALSE" Decimals="0" Group="Custom Group A" ID="{BBBD31AD-8D18-4BD3-AFCD-5F6249328B2F}" StaticName="WorkOrder" Name="WorkOrder" Overwrite="TRUE" xmlns="http://schemas.microsoft.com/sharepoint/" />
and here's the column, as I defined it in solutionB.wsp:
<Field Type="Text" DisplayName="Work Order" Description="Order Number" Required="FALSE" EnforceUniqueValues="FALSE" Indexed="FALSE" Decimals="0" Group="Custom Group B" ID="{AABD31AD-8D18-4BD3-AFCD-5F6249328B2c}" StaticName="WorkOrder" Name="WorkOrder" Overwrite="TRUE" xmlns="http://schemas.microsoft.com/sharepoint/" />
On a clean development SharePoint site instance, I've successfully deployed both .wsp files, but, I can only activate the features of one or the other, but not both.
I thought the difference in GUID's between the two columns was enough to prevent this error from occuring. Thoughts?
