cancel
Showing results for 
Search instead for 
Did you mean: 

How to go directly (after logging on xMII) to the page?

Former Member
0 Kudos

As I wrote...

I do not want to go to the menu on the left side of xMII Portal and choose URL that opens new window (or page in xMII home page).

Thanks and Regards,

Mateusz.

Edited by: Mateusz Tarkowski on Oct 3, 2008 2:15 PM

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Mateusz,

you can define a content display tab. The page of the leftmost tab is automatically displayed after you log into MII.

- goto Navigation Services - Navigation

- define a content tab for the role (or user)

- save

See also: Help on Navigation

[http://help.sap.com/saphelp_xmii120/helpdata/en/45/6a7332785639dde10000000a11466f/content.htm]

Maybe this is what you are looking for?

Michael

Edited by: Michael Otto on Oct 3, 2008 2:59 PM

Answers (2)

Answers (2)

Former Member
0 Kudos

Were you looking for something like this?

http://server/Lighthammer/Login.jsp?target=http://server/directory/webpage.html

It will send the user to the logon page and then redirect to the webpage.

The trouble with this is that when the user bookmarks the page the url will just be http://server/directory/webpage.html.

One fix is to add some javascript that will build the right url and attach it to a link on your page.

Here's what you might use for internet explorer.

function bookmark(){
	if (navigator.appName=='Microsoft Internet Explorer'){
		var address = "http://"+document.domain+"/Lighthammer/Login.jsp?target="+document.URL
		var description = document.title
		window.external.AddFavorite(address, description);
	}//end if

}//end function bookmark

Regards

agentry_src
Active Contributor
0 Kudos

Simply use the url, perhaps from your Favorites?

Mike

Former Member
0 Kudos

You mean favorites from my web browser? If yes this is not a solution that I am looking for

Former Member
0 Kudos

With some Javascript and maybe a custom login screen you can push the user with following URL:

'/Lighthammer/Login.jsp?IllumLoginName=' + document.forms[0].username.value + '&IllumLoginPassword=' + document.forms[0].password.value + '&session=true&target=/COMP/PROJ/APP/StartPage.irpt';