Hi,
I have WS code which applies category and attributes to a new created document. I have to key in the category ID, version and attribtue index, though. Is it possible to locate the attribute key using WS code?
CSDocManReference.StringValue AssetNumber = new CSDocManReference.StringValue();
Table AssetTable = (Table)Doc.Fields["Asset_Validate"];AssetNumber.Values = new string[AssetTable.Rows.Count];foreach (TableRow row in AssetTable.Rows){ AssetNumber.Values[count] = row.Fields["Asset_Number_"].Value;}AssetNumber.Key = "23432.1.2";
Thanks,
Vinod.