I am able to access user defined columns with wcf services in Version 10 by declaring a variable of type UserDefinedColumns from the service and make a call with the following sample syntax:
receipt.RcvDtl[0].UserDefinedColumns[“CheckBox01”] = true;
Does anyone know the syntax to search on a User Defined Column in Version 10?
In version 9 I was able to search with the following sample syntax:
string custWhere = “Character01 = '” + vendorNo + “’”;
customerList = custClient.GetList(custWhere, 100, 0, out morePages);