How can I access a childtable using SearchFunctions.listLookup

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?

You can’t you have to use GetRows or something else.

1 Like