Want an easy way to see which vendors are configured for remittances to be emailed? Plug this view into SmartList Designer, or SmartList Builder, and you’ll have that easy way.
CREATE VIEW uv_AZRCRV_VendorRemittanceEnabled AS
SELECT
EmailCardID AS VENDORID
,CASE WHEN EmailDocumentEnabled = 1 THEN 'Yes' ELSE 'No' END AS 'Remittance Enabled'
FROM
SY04905
WHERE
EmailSeriesID = 4
AND
MODULE1 = 19
AND
EmailDocumentID = 6
GO
GRANT SELECT ON uv_AZRCRV_VendorRemittanceEnabled TO DYNGRP
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.
2 thoughts on “SQL View For Remittance Enabled”