We need to change all vendor names and vendor search names to use capital letters only. I hope that there is a way to do it through the database in bulk or somehow programmatically instead of doing it one by one through the application. I have this query:
select v.ACCOUNTNUM
, d.NAME --Vendor Name
, d.NAMEALIAS --Search name
, v.VENDGROUP
, v.DATAAREAID --Company
from [dbo].[DIRPARTYTABLE] d with (nolock)
inner join dbo.VENDTABLE v with (nolock) on d.recID = v.Party
which gives me all vendor names and search names but i wonder if there are other tables besides [DIRPARTYTABLE] that should be updated with the new values.
Thank you,
nothereyet
*This post is locked for comments
I have the same question (0)