cancel
Showing results for 
Search instead for 
Did you mean: 

How can I make a change at the logon screen ?

Former Member
0 Kudos

Can I change the Mobile client logon screen (on the PDA) at the mobile device? For example adding our company logo at the head of the logon page.

Thanks

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

hello kamal,

here's a very quick way:

- create an index.jsp and put it in the

webapps/me folder.

or edit index.html and point the refresh

URL to your customized login jsp page or

servlet.

inside your customized page create a form

for your login info. take note that the parameter

names and the target action are different from

2.1 and 2.5.

your form action should point to

[2.1]

action="/me/servlet/com.sap.ip.me.core.LoginServlet"

[2.5]

action="/me/servlet/com.sap.ip.me.apps.jsp.LoginServlet

parameters names:

[2.1]

user field: SYNC_USER

password field: SYNC_PASSWORD

login event: eventlogin

[2.5]

user field: USER

password field: LOCAL_PASSWORD

language field: LANGUAGE

login event: eventlogin

regards

jo

Former Member
0 Kudos

Hi Bakor,

Yes you can change the Logon page means you can design the page the way you want. For that you have to do following.

1. First design your jsp page the way you want.

e.g. the jsp page name is logon.jsp

2. Start your MI engine it will show you the default logon screen. Then right click on that and view source.

Following elements are important in my case.

<b><form name ="loginform" method="post" action="/me/servlet/com.sap.ip.me.apps.jsp.LoginServlet?1135263408968"></b>

<b><input type="text" name="USER" value="" size="12" id="USER" tabindex="0"></b>

<b><select name="language" tabindex="0" id="LANGUAGE">

<option selected value="en">en</option>

<option value="cs">cs</option>

<option value="da">da</option>

<option value="de">de</option>

<option value="es">es</option>

<option value="fr">fr</option>

<option value="hu">hu</option>

<option value="it">it</option>

<option value="ja">ja</option>

<option value="ko">ko</option>

<option value="nl">nl</option>

<option value="pl">pl</option>

<option value="pt">pt</option>

<option value="ru">ru</option>

<option value="sv">sv</option>

<option value="zh">zh</option></b>

<b><input type="submit" name="_event_login" value="Log On" tabindex="0">

<input type="submit" name="_event_changepw" value="Change Password" tabindex="0">

<input type="submit" name="_event_adduser" value="New User" tabindex="0"></b>

Use these tags carefully in your jsp page. rest is your design part.

3. Now go to webapps folder then to me folder then to WEB-INF directory. Edit web.xml.

find following element

<b><servlet>

<servlet-name>jsp.login.login</servlet-name>

<servlet-class>jsp.login.login</servlet-class> </servlet></b>

and put your designed jsp file in <b>me</b> directory. replace it with

<b><servlet>

<servlet-name>jsp.login.login</servlet-name>

<jsp-file>login.jsp</jsp-file>

</servlet></b>

Now start the MI engine. It will show you your page.

If it satisfies you then don't forget to reward me points.

regards,

Abhijit

Former Member
0 Kudos

Hi,

you could change the ME images in the directory:

C:\Program Files\SAP Mobile Infrastructure\webapps\me\images

However, in help.sap.com it's written that we have the possibility to change jsp files of the Me application, I think it will be available in the next version because the actual version is delivered with the compiled jsp.

Regards,

Rachid

Former Member
0 Kudos

I think this is not possible, but I'm not very sure. The question is interesting.