Hi Sanguine007,
Actually this kind of exception occurs when you navigate directly to view if it is in overview page. So for this follow the steps below:
1. Create an inbound plug in overview page and in your normal view page where you want to navigate.
2. In inbound plug of overview page write the following code which navigates to the inbound plug of your normal view page:
" Create an reference variable of your view's Implementation Class
DATA: l_ref_view TYPE REF TO your_view_impl_class.
" Get the controller of your view by passing the your view name
l_ref_view ?= me->get_subcontroller_by_viewname( 'ZDRPOPUPS/StateView' ).
" Call inbound plug of view where your want to navigate
l_ref_view->ip_fromstate( iv_collection = iv_collection ).
Here ip_fromstate is inbound plug of my view which is in ZDRPOPUPS/StateView View. Don't forget to pass collection while calling inbound plug of overview page.
3. In navigation link give the target inbound plug as your overview page's inbound plug.