With the move from OBIEE 10 to OBIEE 11, the default behavior when editing a report changed. While earlier you would automatically be taken to the criteria view, with OBIEE 11 you are taken by default to the results view. This is can be a problem for 2 reasons:
With 11.1.1.6.x onwards, there is a way to change this in the front end. When logged in, click on the My Account tab in the top right corner and make your selection in the Analysis Editor dropdown.
(Thanks to Ajay Sreedharan for showing me this)
The front end does not have any option to change this on a global basis. If you want to change this on a global basis, you will need to change this property in the dashboardeditor.js
file found in /app/res/b_mozilla/dashboards
folder.
The steps involved in doing this are:
***"&Action=results&Path="****
****"&Action=criteria&Path="*****
Do note, this will affect for entire dashboard, and for ALL users.
Also, if you don't want to re deploy the code and bounce the servers, you can also make these changes in the dashboardeditor.js
file in the <MIDDLEWARE_HOME>/user_projects/domains/BIfoundation/servers/bi_server1/tmp/_WL_user/analytics_11.1.1/<ONE_OF_THE_RANDOM_FOLDERS>/war/res/b_mozilla/dashboards
and just restart the services. After restarting, do a clear cache and refresh on your browser.
As with any changes, I would recommend thorough regression testing after the JavaScript change.
With the move from OBIEE 10 to OBIEE 11, the default behavior when editing a report changed. While earlier you would automatically be taken to the criteria view, with OBIEE 11 you are taken by default to the results view. This is can be a problem for 2 reasons:
With 11.1.1.6.0, there is a way to change this in the front end. When logged in, click on the My Account tab in the top right corner and make your selection in the Analysis Editor dropdown.
(Thanks to Ajay Sreedharan for showing me this)
As with any changes, I would recommend thorough regression testing after the JavaScript change.