Wednesday 28 August 2019

Something went wrong while generating the report Please try again in D365F&O SSRS reports

I was getting the below error while trying to run some SSRS report.

Something went wrong while generating the report Please try again

Reason: Usually we get this error when the parameters are not properly loaded/refreshed when you run the report.

Solution: 

Check out your SSRS report parameters and whether it has been re-added when you restore DataSet  after modifcations in DP Class.
In my case I removed the parameters and re added the data set and restored the data set to readd the parameters to the report.

don't forget to restart the SSRS service.

If you still see the error,  it must be the time out of the report. Optimize the DP and query of the report.


@Rahul

1 comment:

Adding a newline into a string in C# and X++

Below is the sample code we can use for  adding a newline after every occurrence of "@" symbol in the string in C#   using System...