klewis10367
MIS
When I log into Great Plains and select my company I am seeing it many times. I am on Version 9 SP2. Any ideas why? This is a restore from a backup.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
/* -------- start t-sql -------- */
use DYNAMICS
/* show the records to be deleted */
select CMPANYID, USERID
from SY60100 UA left join SY01500 C on UA.CMPANYID = C.CMPANYID
where C.CMPANYID is null
/* remove them!! */
delete
from SY60100 UA left join SY01500 C on UA.CMPANYID = C.CMPANYID
where C.CMPANYID is null
/* -------- end t-sql -------- */