Bypass Obiee Log On Screen


If you want to bypass log on screen when you first time access obiee page through launch url i.e. http://localhost/analytics then here is solution.

Locate analytics virtual folder (C:\OracleBI\web\app\) in this folder replace default.asp page with following.

I am assuming you have anonymous user exists and particular user role has assigned some dashboards.

##%@ LANGUAGE="JScript" %##

##%Response.Redirect("saw.dll?Dashboard?NQUser=Anonymous_user&NQPassword=Anonymous_user");%##

Replace default.jsp contents with following

##% response.sendRedirect("saw.dll?Dashboard?NQUser=Anonymous_user&NQPassword=Anonymous_user");%##

Please replace ## with < 'or' > respectively as shown in following figure

When ever users access obiee launch url , it bypasses logon screen and redirect to dashboard.

--Coming soon with new stuff

3 comments:

  1. Hai, I had exposed a webservice in a particular URL, I have to write client to access the web service and i want to redirect the OBIEE login user name and password to that web service, How i can make a call to external web service from default.jsp?is this necessary to write code in default.asp also?

    ReplyDelete
  2. hey, i want when the user click on a report link..they go directly to the report without having to log in as some user. is that possible using the same idea above

    ReplyDelete

Please give me your feed back