Error with custom view for reports module

Hi,

Using SugarController I remapped all DetailViews to EditView globally because we like everything being in edit view.

The one module, however, that needs detail view is the reports module as the detail view actually displays the report!

Therefore I’m trying to create my own custom view with link (I’ve sorted the link already).
So far I’ve created a new action/view called ‘extraview’ in controller:

function action_extraview() {
$this->view = ‘DetailView’;
}

but this isn’t work and throws the error:

Fatal error: Nesting level too deep - recursive dependency? in /home/younggu0/public_html/crm/include/utils.php on line 1068

Any ideas?
Thanks

Hi there,

Can you not simply extend the current view?