Fixing The Management Reporter Sample Reports Part 2

Microsoft Dynamics GPWell, I return to fixing the Management Reporter sample reports with an, unexpected, part 2. Last week I installed the sample reports into Management Reporter and then found a problem with the sample reports where the Segment didn’t link correctly to the segments in Microsoft Dynamics GP.

The same issue exists with the Reporting Trees in the sample reports with the Dimensions column;

The problem is that the segments in the Reports are defined as Segment1, Segment2 and Segment3 but in Microsoft Dynamics GP they are called Division, Account and Department;

As mentioned in the last post, one solution would be to rename the segments in GP, but this would leave names in the demo company which are not descriptive. I therefore chose to use a SQL script to update the ControlRowCriteria table in the Management Reporter database with the descriptive segment descriptions

Below is a script which will do the update on the ControlTreeCriteria table for Segment1 and Segment3 (Segment2 is not used in the Reporting Trees);


UPDATE
   ControlTreeCriteria
SET
   DimensionCode = 'Division'
WHERE
   DimensionCode = 'Segment1'

UPDATE
   ControlTreeCriteria
SET
   DimensionCode = 'Department'
WHERE
   DimensionCode = 'Segment3'

Once the above script has been run against the Management Reporter database, opening a Tree Definition will show the Dimensions correctly;

What should we write about next?

If there is a topic which fits the typical ones of this site, which you would like to see me write about, please use the form, below, to submit your idea.

Your Name

Your Email

Suggested Topic

Suggestion Details

Looking for support or consultancy with Microsoft Dynamics GP?

I no longer work with Microsoft Dynamics GP, but the last company I worked for was ISC Software in the UK; if you’re looking for support or consultancy services with Microsoft Dynamics GP you can contact them here.

2 thoughts on “Fixing The Management Reporter Sample Reports Part 2

Leave a Reply

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