Running AX 2012 R3 & developing SSRS Report in Visual Studio 2010.
Using RDP, data contract, and controller class. However, after report deployment report parameters dialog
box isn't showing up. See below screen shot for example. Any idea how to resolve this?
Thanks in advance!
*This post is locked for comments
Thanks it helped me a lot.
You have to share more information how did you create these classes there are some attributes needs to be set and some boolean values may hide your customize parameters.
You can have a look on this blog daxture.blogspot.co.nz/.../rdp-contract-ui-builder-and-controller.html and can compare what is missing in your classes and how can you hide/show parameters on dialog.
did you check the data contract class has proper attributes on each getter setter similar
[
DataMemberAttribute(identifierStr(FontSize))
]
public FontSize parmFontSize(FontSize _fontSize = fontSize)
{
fontSize = _fontSize;
return fontSize;
}
Please review following link
Please check the controller class of your report
if you have this method set as false
parmShowReportViewerParameters()
Indicates whether the parameter UI should be displayed in the report viewer dialog box.
Pelase verify and update us with your findings
See the Sys Attribute before the declaration of your Rdp class
[SRSReportParameterAttribute(classstr(contract class))]
please let me know more about your code
Let us know and please verify this solutions if it helps you.
Hi,
Things you must remember while working SSRS reports whether it is customized or New reports from scratch.
-->Try to put static debugger (write breakpoint; in your code)in DP Class processReport() method.
--> Run the report from visual studio (go to Microsoft dynamics AX Configuration Utility, select developer tab, and select check boxes provided) and debug it.
--> Stress (While Debugging) on query in processReport() methods because that could also be one of the reason for your problem.
--> Put static debugger in insertIntoTempTable() as well to check whether data is populating in temp table or not, change TableType as regular.
--> Refresh Report Report Server in Tools-> Caches ->Refresh report server
--> Delete the Report from report Server and redeploy it.
--> Generate Incremental Cil and Full Cil generation (Recommended)
Note: This is as per AX 2012 and higher versions
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156