Hi There,
I was wondering if anyone could give me some advice on how to obtain the resulting String list of values for a Category Attribute that uses a custom SQL statement to retrieve it's value list.
Currently I am using WCS(C# / Document Management Class)
string[] temp = { "Document Categories", "Contractor / Vendor" };
Node node = dm.GetNodeByPath(ref otAuthDoc, 2005, temp);
AttributeGroupDefinition catDef = dm.GetCategoryDefinition(ref otAuthDoc, nodeID);
Attribute.StringAttribute strAttr = (StringAttribute)catDef.Attributes[3];
The resulting Valid Values = null and I can't see where the custom SQL Satement is stored in the node

.
Thansk,
Graham.