I try to design gl report by using baq due to Epicor standard gl report don’t have line description.
Then I use below script to link InvcDtl to GLJrnDtl
select Max(b.LineDesc) from GLJrnDtl as a
left join InvcDtl as b on
a.company = b.company and a.arinvoicenum=b.invoicenum and a.creditamount=b.docextprice
But then if got transaction same total amount in same invoice line, both line will showing max length desc.
Appreciate for any reply.
My Epicor version 10.2.500.20
Thanks!