Missing Font Causes Crash In Management Reporter

I’ve recently been doing some work for a client where we’ve upgraded them from Microsoft Dynamics GP 10 to 2010 R2. Alongside this, we also migrated them from FRx to Management Reporter.

All looked fine after the upgrade until I opened one of the rows for editing and got the following warning message;

Management Reporter - Font 'Gill Sans' cannot be found.

I clicked OK and Management Reporter crashed with the following;

Management Reporter for Microsoft Dynamics ERP has stopped working

One of the things I like is that Management Reporter did away with the storage structure of FRx, which was a messy collection of Access databases and other files, and uses SQL Server instead.

To find out how big a problem this was I ran the following script;


SELECT
   COUNT(*)
FROM
   ControlFontStyle
WHERE
   FontName = 'Gill Sans'

And found there were a lot of reports using Gill Sans. The problem had come about because this client was replacing their Citrix servers with XenApp servers and hadn’t installed all other software that would be used. Installing the fonts onto the clients will resolve the problem in the longer term.

However, I didn’t have time to wait as I needed to make sure Management Reporter was working properly before training a couple of days later. So I produced this script to change the font from Gill Sans to Verdana (which I first checked was not used by any other reports);


UPDATE ControlFontStyle
SET FontName = 'Verdana'
   ,Name = REPLACE(Name, 'Gill Sans', 'Verdana')
WHERE FontName = 'Gill Sans'

Once the font is installed I can amend this script to change the font back to Gill Sans.

Ian Grieve

About Ian Grieve

Ian is a Microsoft Dynamics GP certified consultant specialising in the delivery of Microsoft Dynamics GP projects and currently working for Perfect Image Ltd., a Microsoft Partner and VAR in the North East of England. Ian has worked with Microsoft Dynamics GP since 2003 and, over the nine years since, has dealt with all aspects of the product life-cycle from presales, to implementation, to technical and functional training, to post go-live support and subsequent upgrades and process reviews. In his spare time, Ian runs the azurecurve | Ramblings of a Dynamics GP Consultant blog dedicated to Microsoft Dynamics GP and related products.
This entry was posted in Dynamics, FRx, Management Reporter, Microsoft and tagged , , , , , , . Bookmark the permalink.

2 comments on “Missing Font Causes Crash In Management Reporter

  1. Pingback: Interesting Findings & Knowledge Sharing » Missing Font Causes Crash In Management Reporter | azurecurve

  2. Pingback: Missing Font Causes Crash In Management Reporter | azurecurve - DynamicAccounting.net - GP Technical Blogs - Microsoft Dynamics Community

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>