Wednesday 12 August 2015

Dataset parameter must reference a valid report parameter - Axapta 2012

Hello Guys..!

Issue :

 while deploying SSRS report from visual studio getting error in Axapta 2012

"Dataset parameter must reference a valid report parameter".

Reason :

If you have a dataset parameter in your report that references the report parameter that you moved to the parameter group, you must update the dataset parameter reference or you will get an error that the Dataset parameter must reference a valid report parameter. The following steps describe how to update the reference to the report parameter.

Solution :

-> The default naming convention for a report parameter is [DatasetName]_[DatasetParameterName]. In Model Editor, expand the dataset that contains a reference to the report parameter that you added to the parameter group, and then select the dataset parameter.

-> In the Properties window, select the Report parameter drop-down list and then select the report parameter that you added to the parameter group.

For more information go through below link
https://technet.microsoft.com/en-us/library/gg731925.aspx


@Rahul Talasila

No comments:

Post a 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...