The idea is to contruct a lookup with unique Employer name. The lookup works fine but when I select a value and then select the lookup button again and click on the place marked in RED, there are duplicate values, which is wrong.
Kindly refer the snippet and snapshot
QueryBuildDataSource qbds;
Query query = new Query();
FormStringControl control = dialog.formRun().controlCallingMethod();
SysTableLookup sysTableLookup = SysTableLookup::newParameters(tablenum(VendTable), control);
;
qbds = query.addDataSource(tablenum(VendTable));
qbds.addGroupByField(fieldnum(VendTable,EmployerName));
sysTableLookup.addLookupfield(fieldnum(VendTable, EmployerName));
sysTableLookup.parmQuery(query);
sysTableLookup.parmUseLookupValue(false);
sysTableLookup.performFormLookup();
tion here]2
In these cases I use this approach. It's similar to the answer proposed by Jan, but simpler.
Create a TMP table with fields you want to see in lookup, including EmployerName, I will call it MyTmpTable. Well, in fact you can use VendTable as tmp table with setTmp(), but it's prone to errors (what if you insert() and forgot setTmp() before?) and it has many fields (more RAM consumption, even if they're empty); so i'd rather create a new TMPTable.
Now in VendTable here goes this lookup method:
Now you can use this lookup at pleasure. The While Select can be rewritten to gain performance, but used this here to be clearer.
Make a view on table
VendTable
and fieldEmployerName
and a count of RecId, then base the lookup on the view.As shown below for
CustTable
andCustGroup
: