I recently needed to select all assigned purchasing accounts for a particular vendor; this would include both the normal purchasing one on the Vendor Account Maintenance window and the additional ones in the Additional Vendor Accounts window.
The SQL is fairly straightforward, but I had to make sure each account was only included once:
/*
Created by Ian Grieve of azurecurve | Ramblings of an IT Professional (http://www.azurecurve.co.uk)
This code is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0 Int).
*/
SELECT DISTINCT
['Account Master'].ACTINDX
,['Account Index Master'].ACTNUMST
,['Account Master'].ACTDESCR
FROM
PM00200 AS ['PM Vendor Master']
LEFT JOIN
PM00203 AS ['Vendor Accounts']
ON
['Vendor Accounts'].VENDORID = ['PM Vendor Master'].VENDORID
LEFT JOIN
GL00100 AS ['Account Master']
ON
['Account Master'].ACTINDX = ['Vendor Accounts'].ACTINDX
OR
['Account Master'].ACTINDX = ['PM Vendor Master'].PMPRCHIX
LEFT JOIN
GL00105 AS ['Account Index Master']
ON
['Account Index Master'].ACTINDX = ['Account Master'].ACTINDX
WHERE
['PM Vendor Master'].VENDORID = 'ADVANCED0001'
GO
What should we write about next?
If there is a topic which fits the typical ones of this site, which you would like to see me write about, please use the form, below, to submit your idea.
Looking for support or consultancy with Microsoft Dynamics GP?
I no longer work with Microsoft Dynamics GP, but the last company I worked for was ISC Software in the UK; if you’re looking for support or consultancy services with Microsoft Dynamics GP you can contact them here.
3 thoughts on “SQL Script to get all vendor purchasing accounts”