Reports menu item not displaying

Surely in the documentation, but I’m not finding the solution.
I simply want the Reports menu item to display, but it’s not, even though I’ve checked the “reports” checkbox in project properties.

reportMenuItem

Hi,
It can be if you have switched your menu in “Single” mode. Click Open web menu on Generic UI tab in Studio and make sure your menu is in “Composite mode”.

If you enable the reports add-on in an existing project you have to add the Reports menu item yourself. This needs to link to the ‘report$Report.browse’ screen, which is the report builder interface.

Here’s what I added to my web-menu.xml file:

<menu-config xmlns="http://schemas.haulmont.com/cuba/menu.xsd">
...
<item insertAfter="sec$Role.browse"
          screen="report$Report.browse"/>
...
</menu-config>

This added a “Reports” item to the standard Cuba app Administration menu.

Matt.