Forum

This content is now out of date.

Visit Our Community

Controlling the redirect after logon.i4?LoginWebServiceId=xx

Hi,

Currently when you hit logon.i4?LoginWebserviceId=xxx, the response takes you to the Dashboards screen automatically. Is there another parameter I can pass on that url to have the response take the user to the Reports screen instead after logon.i4?

Thanks
Hi.

Yes you can determine where the user is taken after being logged into Yellowfin.

If you specify no entry point it will go to the users default, which can be set in their profile.

You can send a user to their dashboard with:

[code]http:///logon.i4?LoginWebserviceId=&entry=DASHBOARD[/code]


You can send a user to their report list with:
(This will show the reportlist specified by their viewing options)

[code]http:///logon.i4?LoginWebserviceId=&entry=REPORTLIST[/code]


You can send a user to their browse tab with:

[code]http:///logon.i4?LoginWebserviceId=&entry=BROWSETAB[/code]


You can send a user to their timeline with:

[code]http:///logon.i4?LoginWebserviceId=&entry=TIMELINE[/code]


You can redirect to a specific dashboard tab with something like this:

[code]http:///logon.i4?LoginWebserviceId=&entry=VIEWDASHBOARD&dashboarduuid=[/code]


You can redirect to a report with something like this:

[code]http:///logon.i4?LoginWebserviceId=&entry=VIEWREPORT&reportuuid=[/code]


You can redirect to a storyboard with something like this:

[code]http:///logon.i4?LoginWebserviceId=&entry=VIEWSTORYBOARD&storyboarduuid=[/code]


Hope that helps..

Peter