Find All Microsoft Dynamics GP Companies With Web Services Enabled
Views (93)

I took a copy of my return functional currency for all companies script and amended it to look at the web services.
If the web services has never been enabled, a company won’t be returned at all other wise a 1 for active or 0 for inactive will be returned.
/*
Created by Ian Grieve of azurecurve|Ramblings of a Dynamics GP Consultant (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).
*/
CREATE TABLE #Workflow(
INTERID VARCHAR(5)
,CMPNYNAM VARCHAR(200)
,WEBSERVICESACTIVE VARCHAR(20)
)
GO
DECLARE @SQL NVARCHAR(MAX)
SELECT @SQL = STUFF((
SELECT
CHAR(13)
+ 'SELECT
''' + INTERID + '''
,''' + CMPNYNAM + '''
,EnableWFNotifService
FROM
' + INTERID + '.dbo.WF00100'
FROM
DYNAMICS.dbo.SY01500
FOR XML PATH(''), TYPE).value('.', 'NVARCHAR(MAX)'), 1, 1, '')
INSERT INTO #Workflow
EXEC sys.sp_executesql @SQL
GO
SELECT * FROM #Workflow ORDER BY INTERID
GO
DROP TABLE #Workflow
GO
Read original post Find All Microsoft Dynamics GP Companies With Web Services Enabled at azurecurve|Ramblings of a Dynamics GP Consultant
This was originally posted here.
*This post is locked for comments