Does anyone have any experience performing a duplicate payments audit in Great Plains? Essentially, I want to look back over the past year and see to what extent we may have issued duplicate payments. Keep in mind that I am NOT a GP expert by any means (I am actually work in the finance department, but was asked to review our historical payments for duplicate payments as an unbiased third party). If anyone has any suggestions about which tables to use and the best way to get the audit or review for duplicate payments done, it would be greatly appreciated!
Thanks.
*This post is locked for comments
Hello Chris-Finance
I would run a query similar to the below and work my way down with the vendor invoice number length in the de-dupe criteria.
select count(1),SUBSTRING(DOCNUMBR,1,20),VENDORID,DOCAMNT
FROM PM30200 WITH (NOLOCK)
WHERE VOIDED =0 AND DOCTYPE =1 AND
YEAR(DOCDATE) = 2016
GROUP BY SUBSTRING(DOCNUMBR,1,20),VENDORID,DOCAMNT
HAVING COUNT(1) > 1
This query is for the year 2016.
This assumes do not allow duplicate vendor invoice flag is checked under the payables setup window.
Hope this helps
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156