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

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

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