cancel
Showing results for 
Search instead for 
Did you mean: 

adding webdynpro application to login page.

Former Member
0 Kudos

Hi Friends,

I have some doubts in login page, plese suggest me :

1) how to add webdynpro java application to the login page.

2) Is it necessary to restart the server after adding webdynpro appication.

Thanks & Regards,

Murali

Accepted Solutions (0)

Answers (3)

Answers (3)

satish_kumar106
Explorer
0 Kudos

Hi,

Do the changes as told above in umLogonPage.jsp.

In the authschemes.xml file, replace all occurrences of the string u201Ccom.sap.portal.runtime.logonu201D with project name you have specified in the tags <frontendtarget> and save the file. Edit the authschemes.xml file as described in http://help.sap.com/saphelp_nw70/helpdata/en/1a/3afd4e641b8f42ac07bb77fe30375b/frameset.htm.

Restart the nodes in the cluster for the changes to take effect.

Regards,

Satish S.

Qualiture
Active Contributor
0 Kudos

Modify the login page so it will contain an iFrame displaying your web dynpro app

Former Member
0 Kudos

Hi Robin ,

i Didn't get u, Please can u explain more about that how to do?

Thanks & Regards,

Murali

Qualiture
Active Contributor
0 Kudos

Download the com.sap.portal.runtime.logon.par file from the server

Add an iframe html element to the logon page JSP file

Add the url of your WD app to the src attribute of that iframe

See for more info on changing the logon page

Former Member
0 Kudos

It depends on your portal version. You can put a link on the logon page which redirects user to the wdj app. Changing logon page on 7.3:

http://nwturk.com/blog/2011/06/06/changing-logon-page-on-netweaver-7-3/

or

Former Member
0 Kudos

Hi Erthan,

We are using 7.0 version.

Thanks & Regards,

Murali

Former Member
0 Kudos

Dear Murali,

did you get the answer . I'm facing the same problem.

regards,

Former Member
0 Kudos

Hi,

Why do you want to add WDJ application to login page? What is your need? What do you mean "add"? If you want to change your login page with your WDJ, it is not supported.

Former Member
0 Kudos

Hi Erhan Keseli,

In the standard login page we have "Get Support Link" instead of that link, my own creation WDJ application have to add.

Is it possible or not.

Thanks & Regards,

Murali

former_member182372
Active Contributor
0 Kudos

You have to change logonPage.jsp in sap.com~com.sap.security.core.logon and replace


<sap:link type="logonhelp" linkClass="urLnk" textClass="urTxtStd" infoTextClass="urLblStdBar"/>

with the link to your app.

or you can rewrite tag lib by replacing path in doStartTag method in com.sap.engine.applications.security.logon.tags.LinkTag


        if("logonhelp".equalsIgnoreCase(type))
        {
            if(SAPMLogonServlet.getLogonHelp())
            {
                writeInfoText("LOGON_IN_PROBLEM");
                writeLink("/webdynpro/dispatcher/sap.com/tc~sec~ume~wd~enduser/LogonHelpApp?newWindowOpened=true", "GET_SUPPORT", "_blank");
            }
        }