GPWindow is Everything Dynamics GP. Try the Custom GP Search engine which searches high quality GP Blogs, and the Microsoft Dynamics GP Community Forums.
GP consultants providing support or implementing Dynamics GP will find this section useful. This section covers some of the favorite consultant topics like Dex settings, various error messages in GP, Server migrations, all the latest service packs and hotfixes release by Microsoft, troubleshooting issues in GP and much more...
While reading in one of the application manuals, I found an interesting questions that we all must consider having its answers before calling the support specialist, it would be great if you could include those questions answers in your question posting to get a best reply:
“ Before you call support
If you are experiencing a problem when installing Microsoft Dynamics GP, have answers ready to the following questions to help your support specialist narrow down the source of the problem you’ve experiencing.
• What is the exact error…
EXEC sp_spaceused @updateusage = true
This will return the space used by whatever DB you run it against. The @updateusage=true updates statistics first to ensure that the sizes are correct.
If you want the space used by a particular table, run the stored proc as:
EXEC sp_spaceused 'PM00200', @updateusage = true
substituting your own table for PM00200.
If you want to see the usage for…
