cancel
Showing results for 
Search instead for 
Did you mean: 

redirect logoff page of sap portal

Former Member
0 Kudos

Hi, I need to redirect to a custom page when I logoff from my sap portal. How can I do it?THANKS

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Andrea,

you also can do someting like this.

  if (WDPortalUtils.isRunningInPortal()) {
			WDClientUser.forceLogoffClientUser(urlredirect);
		} else {
			wdThis.wdGetSetpwdWindowInterfaceViewController().wdFirePlugPlugExit(urlredirect);
		}

in the urlredirect = <Url where you want to go >

regards

Gunter

Former Member
0 Kudos

Change the value of the property ume.logoff.redirect.url to the url of your cusotm page to redirect to any other page.Check this link for more details

http://help.sap.com/saphelp_nw04s/helpdata/en/44/aada5230be5e77e10000000a155369/frameset.htm

You need to restart server after the change

Former Member
0 Kudos

It does not work fine!! help me

nitin_mahajan2
Contributor
0 Kudos

I have one question on the requirement.

What do you intend to do by redirecting to a custom page?

The reason i am asking is, if you do a redirect to a custom page, how will you practically logoff?

Regards,

Nitin

Former Member
0 Kudos

HI,

what is not working. What is your problem?

Ah, you post here in the Web Dynpro Forum, but you have a portal problem.

You must find yout in your framework where the logoff method is realized. Or do you use the standart SAP Framework.

Then you must implement your redirect in the standart jsp.

regards

Gunter

Edited by: Gunter Werner on Jun 23, 2009 8:17 AM