Wednesday 17 February 2021

Serial Number in Report Group SSRS Dynamics Ax 2012 R3.

 Today I have small tip. Let me share a scenario. Suppose you have to display Customer group as report level group and customer at detail level who did purchased products from your organization in given period of time.

Serial number on detail level can be achieved by RowNumber(“Scope Name”)

But serial number shown on Group level is tricky because RowNumber not works there. For example in above mention scenario, Client wants serial number on Customer Group instead of Customer at detail level.

I used following single line SSRS expression helps me to achieve this.

=Runningvalue(Fields!FieldName.Value,countdistinct,”Dataset1″)

SSRS Matrix Report

 In this article, we will show you how to create a Matrix Report in SSRS (SQL Server Reporting Services) with a practical example.

The below screenshot will show you the Data Source and Dataset we used to create this SSRS Matrix Report.

MATRIX REPORT IN SSRS 2014

SQL Command we used for this SSRS Matrix Report in the above screenshot is:

SELECT Geo.[EnglishCountryRegionName] AS [Country]
      ,Geo.[StateProvinceName] AS [State]
      ,Geo.[City]
      ,Cust.FirstName +' '+ Cust.LastName AS [Full Name]  
      ,Cust.EnglishEducation AS Education 
      ,Cust.EnglishOccupation AS Occupation
      ,Cust.Gender
      ,SUM(Cust.YearlyIncome) AS YearlyIncome
      ,SUM(Fact.SalesAmount)AS SalesAmount 
FROM  DimCustomer AS Cust
  INNER JOIN
      FactInternetSales AS Fact ON 
 Cust.CustomerKey = Fact.CustomerKey
 INNER JOIN
     [DimGeography] AS Geo ON
   Cust.GeographyKey = Geo.GeographyKey
 GROUP BY Geo.[EnglishCountryRegionName]
         ,Geo.[StateProvinceName] 
	 ,Geo.[City]
	 ,Cust.FirstName
         ,Cust.LastName  
         ,Cust.EnglishEducation 
         ,Cust.EnglishOccupation 
         ,Cust.Gender
  ORDER BY [Country]

Creating Matrix Report without using Report Wizard in SSRS

Please refer to the SSRS Table Report to understand the creation of a basic Report. Drag and drop Matrix from the SSRS Toolbox to the Data region.

MATRIX REPORT IN SSRS 2014

We can add the Column names to the SSRS Matrix Grouping in three ways:

  • We can Drag the Column name from Report data to the Row Grouping or Column Grouping Column.
  • Drag and Drop the Column name from Report data to the Row Grouping Pane or Column Grouping Pane.
  • When we click on the particular cell, it will open the context menu displaying available column names in that Dataset. We can select the required column from the list. Here we are selecting StateColumn as a Row Grouping item
MATRIX REPORT IN SSRS 2014

Now, we are choosing Occupation Column as a Column Grouping item

MATRIX REPORT IN SSRS 2014

and we are selecting the Sales Amount Column as a Data item.

MATRIX REPORT IN SSRS 2014

NOTE: When you add Column to Data Column, the Reporting Server will automatically aggregate the data. If you want to change the aggregate functions, then goto fx Expression and change them accordingly.

We successfully created our first SSRS Matrix report. If you observe the below screenshot, we have done the formatting as well. Please refer to Format Fonts and Background Color of a Textbox article to understand them.

MATRIX REPORT IN SSRS 2014

Click on the Preview button to see the report preview

MATRIX REPORT IN SSRS 2014

Add Header Column For Column Grouping in SSRS Matrix Report

If you observe the above screenshot, we all know that Clerical, Management, Manual, etc., are the Customer Occupation. What if we don’t know, or we want to provide extra information to the user about each column? In these situations, we have to add row (containing Header Details of the columns).

To add a new row to SSRS Matrix Report, Please select the Header column of a report and then right-click on it to open the context menu. From the menu, Please select the Insert Row option. Here we have multiple options, and their functionalities are:

  • Inside Group – Above: This option inserts a new row on top of the Header column, and inside the Group. Inside the Group means Header text will repeat for every row
  • Inside Group – Below: This option will insert a new row below the Header column and inside the Group.
  • Outside Group – Above: It inserts a new row on top of the Header column and Outside the Group. Outside the Group means Header text will be static and will not repeat for every row
MATRIX REPORT IN SSRS 2014

We named the Header text as Profession as shown below

MATRIX REPORT IN SSRS 2014

If you observe the below screenshot, we have done the background formatting.

MATRIX REPORT IN SSRS 2014

Click on the Preview button to see the SSRS Matrix Report preview

MATRIX REPORT IN SSRS 2014

Thursday 11 February 2021

Get an error “An error occurred during report data sets execution”

 enter image description here

Solution 1:

  1. First of all build + synchronize of all models

  2. Redeployed all reports using Power Shell script

  3. Checked that report's (not of all, but only the one I need) data source tables are all of TempDB type

  4. Checked settings in "Reporting Services Configuration Manager" - Web Service URL and Web Portal URL are correct.


Solution 2 :

The problem was in SSL certificates.

So you can solve the issue following steps below:

1) go to environment which causes the errors in Lifecycle Services

2) there click Maintain => Rotate secrets => choose "Rotate secrets" tile on the right side

3) Click "Yes"

It took about 20-30 minutes to rotate them. After that i didn't get any errors when printing reports.


 

D365 Enum Values SQL

 select t1.NAME,t2.ENUMID,t2.ENUMVALUE,t2.NAME EnumValueName from ENUMIDTABLE t1

inner join ENUMVALUETABLE t2 on t1.ID=t2.ENUMID

where t1.NAME='SalesType'