Hi,
I am doing the following:
I am changing the ContentCenter Table directly with The API.
Maybe this is the solution to your problems too;
Dim oFamily As ContentFamily
For Each oFamily In oContentNode.Families
Debug.Print(oFamily.DisplayName)
If oFamily.DisplayName = "Your ContentCenter Family Name" Then
Try
oFamily.TableColumns.Add("My_Description", "My_Description [Custom]", ValueTypeEnum.kStringType, , "=" + "<Description>&" + """ """ + "&{PARTNUMBER}", "{D5CDD505-2E9C-101B-9397-08002B2CF9AE}", "My_Description")
Catch ex As Exception
End Try
End Try
Dim oContentTableColumn As ContentTableColumn
For Each oContentTableColumn In oFamily.TableColumns
Select Case oContentTableColumn.DisplayHeading.ToUpper
Case "My_DESCRIPTION"
oContentTableColumn.DisplayHeading = "My_Description [Custom]"
oContentTableColumn.Expression = "=" + "<Description>&" + """ """ + "&{PARTNUMBER}"
End Select
Next
oFamily.Save()
End If