Identifying Microsoft Dynamics GP version information

David Meego - Click for blog homepageThis is a reposting of an article I originally wrote on my Developing for Dynamics GP blog.

I had a case recently where the customer’s auditors were asking the customer to prove the version and build of Microsoft Dynamics GP was the same as the version they claimed it was. Basically, the auditor said “provide me proof that you are running GP X SP Y”.

So during this case, I discussed a number of methods with the customer and let them choose what worked best for them. In this case, I was dealing with the customer’s DBA, who did not have access to run the Dynamics GP client, so not all of the methods I provided would have worked for him.

Here is the list I came up with:

  1. From the Login window

    When you launch GP the primary Dynamics product dictionary’s version is displayed on the bottom of the Login window.

  2. From inside Microsoft Dynamics GP, you can select Help >> About Dynamics.

    This will show the main Dynamics product version as well as the Dexterity version and SmartList version. Other about windows are available for other modules, but have different navigation paths.

  3. From the SQL Server we can run select statements to see version data in the Dynamics Utilities tables.— List of Company IDs
    select CMPANYID, INTERID, CMPNYNAM from DYNAMICS..SY01500

    — List of Product Versions for Company specified by Database
    select U.*, C.INTERID, C.CMPNYNAM from DYNAMICS..DU000020 U
    join Dynamics..SY01500 C on C.CMPANYID = U.companyID
    where C.INTERID = ‘TWO’ — Enter desired Company DB name
    order by U.PRODID

    — List of Product Versions for System Database
    select * from DYNAMICS..DU000020
    where companyID = -32767
    order by PRODID

  4. From Dictionary file properties.Depending on the version and if the registry associations are working, you can right click on a DIC file and then click Properties. This will show the dictionary version in a Dictionary tab. The version information can also be shown using the tooltip if you hover over a DIC file.

    Note: Open DYNAMICS.SET file with Notepad.exe to see installed products. The first line in the file contains the number of products installed. Then the following lines are a list of products with the Product ID followed on the next line by the Product Name. .

  5. Support Debugging ToolUsing Support Debugging Tool’s Screenshot feature you can obtain the system status report which lists all dictionaries and their version numbers. SDT Portal.
  6. CustomerSourceLink: https://mbs.microsoft.com/customersource/
  7. Version Information SpreadsheetsLook at the Notes sections on the Service Pack pages (links above) for the Excel Version spreadsheets. Below are the direct links:

    Microsoft Dynamics GP 10.0 Version spreadsheet
    Microsoft Dynamics GP 2010 (v11.0) Version spreadsheet
    Microsoft Dynamics GP 2013 (v12.0) Version spreadsheet

With all of these options you should be able to easily confirm your version and compare it against the Version Information Spreadsheets to identify the exactly release you are on.

Enjoy

David

This article was originally posted on the Developing for Dynamics GP Blog and has been reposted on https://www.winthropdc.com/blog.

8 thoughts on “Identifying Microsoft Dynamics GP version information

  1. David Musgrave's avatar

    Hi Mia
    That questions is not quite relevant for this post.
    Anyway, just install Visual Studio Tools for Microsoft Dynamics GP 2013 from the ToolsSDKVS Tools folder of the DVD image. It has the manuals as part of the install.
    David

  2. Joe's avatar

    This is a great post, and the links are very helpful as well.  As part of an IT audit I required to show how many  changes (upgrades/hotfixes/version changes) we have done to GP during a specific time.  They would like this data to come from SQL.  Are you aware of any table to tracks version changes?
    Thanks

  3. David Musgrave's avatar

    Hi Joe
    The Dynamics Utilities tables track the previous version and the current version so they can perform upgrades, but they don't track a full history.
    You could add triggers to the tables to write to a logging table when changes are made.
    David

  4. David Chmelko's avatar

    Is there a Master table containing the Dictionary ID's(DICTID) and Dictionary name including all 3rd party application in the database?

  5. WinthropDC's avatar

    Hi David
    Yes and no. Microsoft internally have the database of assigned Product IDs. However, this is not available externally and not every Product ID assigned to a partner or customer ends up as an ISV product. Many are for customisations or are no longer used.
    For what is on your system, just read the Dynamics.set launch file.
    David

Leave a Reply