Service Pack 5 affects Microsoft Dynamics GP 10.0 logon performance
No need to be alarmed, but if you currently use Analytical Accounting with Microsoft Dynamics GP 10 and have applied the recently released Service Pack 5, you may experience slow logon performance due to extra records being added to the dbo.syMenuMstr table each time a user logs into the system.
As a temporary fix and workaround, you can setup a SQL Server job to run once a day (more depending on the number of users in your environment) that will clear the offending records:
Upon logon, the menu items for Analytical Accounting are automatically recreated.
For more information on creating a SQL Server job visit MSDN.
Until next post!
MG.-
Mariano Gomez, MVP
Maximum Global Business, LLC
http://www.maximumglobalbusiness.com/
As a temporary fix and workaround, you can setup a SQL Server job to run once a day (more depending on the number of users in your environment) that will clear the offending records:
use DYNAMICS;
go
delete from SY07110 where CmdParentDictID = 3180;
Upon logon, the menu items for Analytical Accounting are automatically recreated.
For more information on creating a SQL Server job visit MSDN.
Until next post!
MG.-
Mariano Gomez, MVP
Maximum Global Business, LLC
http://www.maximumglobalbusiness.com/
Comments
Exit GP and close all applications running (including those in the system tray) and go to Start > Run, then type %temp%. Highlight all files then delete them.
Go back to GP and check to see if the problem persist. If you require further assistance I would suggest you contact Microsoft Dynamics GP support as I don't provide support via my blog.
MG.-
Mariano Gomez, MVP
Thanks in advance!
The simplest way to remove a product from your environment is by removing the dictionary from the DYNAMICS.SET file. There is a KB article available to help you with the steps to remove a product from the launch file.
MG.-