Working with User Defined Columns and WCF service calls

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);

You can still do this in E10

string custWhere = “Character01 = '” + vendorNo + “’”;
customerList = custClient.GetList(custWhere, 100, 0, out morePages);

3 Likes

Thank you!!