notFoundReports error in 6.5

Hello,
I’m having a problem in what looks like a regression from Platform 6.4 to 6.5.
I have a screen editing and Entity and a Report Template having such entity as unique required parameter.
In the screen I set up a button to generate the report:


exportBtn.setAction(new EditorPrintFormAction("report", this, fileName) {
	@Override
	public void actionPerform(Component component) {
		getDsContext().commit();
		super.actionPerform(component);
	}
});

It was working fine in 6.4, but in 6.5 I get “notFoundReports” error

Hi,
See the documentation for the platform 6.5.
Now the screen must be specified for the Report if you want to print it with PrintformAction. Add the screen on the “Roles and Screens” tab of the Report.
Regards.

1 Like