Hi all,
I hope someone can help me. I tried to update the attribute value on a folder which as a category attached to it. When I tried tocall the following code, I'm always getting the exception error: "Counld not update Physical Item".
DocumentManagement.Metadata dmd = new DocumentManagement.Metadata();DocumentManagement.AttributeGroup[] dAttGroups = new DocumentManagement.AttributeGroup[1];DocumentManagement.AttributeGroup dAttGroup = new DocumentManagement.AttributeGroup();dAttGroup.Key = "20224.1";dAttGroup.Type = "Category";DocumentManagement.StringValue strLastName = new DocumentManagement.StringValue();strLastName.Key = "20224.1.2";strLastName.Values = new string[] { "Smith" };DocumentManagement.StringValue strFirstName = new DocumentManagement.StringValue();strFirstName.Key = "20224.1.3";strFirstName.Values = new string[] { "John" }; dAttGroup.Values = new DocumentManagement.DataValue[] { strLastName, strFirstName };dAttGroups[0] = dAttGroup;dmd.AttributeGroups = dAttGroups;nodeNewPendingFolder.Metadata = dmd; ddmclient.UpdateNode(ref ddmOTAuth, nodeNewPendingFolder);The OTCS is 10.5 with all the latest patches. The Physical Object module is 10.5.1 with all the patches as well.
Thanks,
Freddy