13 Oct 2015

Report empty display message like "No data found in SSRS" + AX 2012

In the property window  Visual studio (SSRS) check 'NoRowsMessage' property for tablix. You can set this property to show a custom message when no row is returned.
NORowsMessage = "No data available for current filter selection" //user defined msg that is to be displayedYou can also specify the specific font style like size, color, format etc.
Add a text box with expression =IIF(Count(<SomeId Field>,"DataSet1")=0,"No Data Returned", nothing)

                                                      (OR)

In the table header (header fields), use expression for each of the column headers to Set the visibility to false 
so that the end user won’t be able to see the table header when there is no data.
set the visibility of this textbox as =IIF(Count(<SomeId Field>,"DataSet1")=0,False,True)

No comments:

Create number sequence in D365 FO

Create the data type. Add code in the loadModule method of the appropriate NumberSeqModule subclass. Add a method to the module’s paramet...