I am trying to access UD110A data with SearchFunctions.listLookup, here is the code i tried but it returns the record from UD110 not UD110A:
string whereClause;
whereClause = ("Number12 = \'" + (Convert.ToInt32(LoadList).ToString() + "\'"));
DataSet dSet = SearchFunctions.listLookup(UD110Form, "UD110Adapter", out RecordSelected, false, whereClause, false, "UD110A");
if (RecordSelected == true)```
Has anyone had any luck with this?