erp - What is the best way using BQL to select non-duplicate items from BQL? -



erp - What is the best way using BQL to select non-duplicate items from BQL? -

what best way using bql select non-duplicate items bql?

search<prtaxcode.prgovtrefnbr, where<prtaxcode.prgovtrefnbr, isnotnull>, and<prtaxcode.prgovtrefnbr, ***not in results***>>?

current results: 52-55555555555 52-55555555555 <-- remove duplicate 52-12345678 52-144550099

results should : 52-55555555555 52-12345678 52-144550099

using aggregate , groupby constructs gave desired results.

found own answer:

search4<prtaxcode.prgovtrefnbr, where<prtaxcode.prgovtrefnbr, isnotnull>, aggregate<groupby<prtaxcode.prgovtrefnbr>>>

erp acumatica

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -