Regarding Logon screen

Hi All,
I would like to change the Portal Logon Screen.
I am having two IP for my portal Intranet and Public IP.
I would like to change the logon screen according to the IP.
Is it possible?
If yes, how can I achieve that?
Thanks and regards
Vivek.

1.
umLogonPage.jsp
HttpServletRequest req = request.getServletRequest();
req.getServerName()  will give you the server name
So you can have include the logon pages according to the servername
2 refer this blog
Portal Customizations Intro - Login Part 2
3 .Multitenant Portal
All for One and One for All - New Functions for the SAP NetWeaver Portal in 2004s  Part II
All for One and One for All - New Functions for the SAP NetWeaver Portal in 2004s

Similar Messages

  • Insert Button on SAP GUI Logon Screen

    Hello,
    is it possible to insert a button on the SAP GUI logon screen like the "new password" button?
    We want to insert a button, with which the user can generate a new initial password, if he has forgotten his password.
    Thanks for answers
    regards
    Christian

    >
    Anand Munuswamy wrote:
    > Hi,
    >
    > I very strictly advice to avoid of providing "Reset password" button to user, this will make any user to reset the password of other users.  This is one of the security violation.
    I fully agree.
    > If you want to provide option for reseting the passwords to user, you can make a custom program which can be executed by user and can reset the password for their own user, but not for others.
    >
    > Regards
    > Anandm
    Well, I'd propose to leave the SAPGUI screen untouched but only place a comment on the logon screen (see [note 205487|https://service.sap.com/sap/support/notes/205487]) which informs the user on a URL to a web application (BSP) which provides the desired "forgotten password" self-service functionality.
    In the internet you find many examples of such "forgotten password" self-services - good ones and not so good ones. What all of them have in common is the requirement that the user has provided a valid email address or mobile number (during the account registration) which can be used for the required off-band communication. However they differentiate in the way they try to mitigate misuse: some prompt for a so-called passphrase (in most cases: the user has entered a free-text answer to a question chosen from a fixed set of predefined questions, during accoutn registration) before sending a newly created password to the email address retrieved from the user account; others generate a (random) "password change token" which they send to the email address and prompt the user to enter this "password change token" on the webpage (the account remains untouched until the correct "password change token" was entered, in most cases this is also time-restricted). I prefer the latter one.
    Cheers, Wolfgang

  • Customize SAP GUI Logon screen

    Hi,
    I have seen that some logon screens (where you enter client, user, password, language) has additional written information, like "needing a user for this system, please call xxx". My question is how and where can i define this additonal information on the SAP GUI logon screen?
    Best regards,
    Martin

    Hello, it means the system creators (for example if is IDES or trial SAP systems) or system administrators creates this information, try read how --> Note 205487 - Own text on SAPGui logon screen
    Regards.

  • How to display a specific SAP logon screen per system?

    Hello,
    I woud like to display a logon screen which contains system-specific information, e.g. for the QAS system it would be something like "This system was created by a system copy from PRD on MM/DD/YYYY"...
    I have gone through the SAP Note 205487 and my understanding is that I have to create the ZLOGIN_SCREEN_INFO in the development (changeable) system and transport it.
    Note 205487 : "Creating/changing this text requires a changeable system. Therefore, for production systems, SAP recommends maintaining the text in the upstream system and then transporting it."
    Can anyone please provide me with some hints on how to create a different logon screen for each system and apply them via transport requests?
    I prefer not to "open" the QAS system in order to create the logon screen because I would then have to "open" the productive system to create a different logon screen...
    Any help is appreciated.
    Thanks and Regards,
    Michel M.

    Hi Michel,
    Please refer to below documents for modifying SAP Logon screen and transporting to other system.
    [How to customize the login screen|http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=22219]
    [Customizing SAP Login Screen|http://www.abap-tutorials.com/2009/12/30/customizing-sap-login-screen/]
    [SAP logon screen, SE61, ZLOGIN_SCREEN_INFO|SAP logon screen, SE61, ZLOGIN_SCREEN_INFO; 
    Hope it helps
    Regards
    Arun

  • Bypass Logon screen of the SAP R/3 system where WDA application resides

    Hi,
    I created an application in WDA. I have another appplication in WDJ. On one of the views of WDJ application, I created a link to URL UI elem and provided WDA application's URL to it as a reference. When I click on the link to URL,  I expect that WDA should launch. But instead a logon screen appears. This logon screen is the logon screen of the SAP R/3 server in which I created the WDA application.
    I want to bypass this logon screen. how do i do this ?
    Regards
    seventyros

    For that you need to establish the SSO between the R/3 system and the JAVA system.
    you can import the sso ticket form key store and then put it in abap stack..
    or one more method is to give hardcoded user id and password in SICF for the web dynpro application.
    however this approach is not recommended.
    thanks
    sarbjeet singh

  • Logon Screen Modificatio : Using JCo for Executing a Func Module in SAP R/3

    Hi all
       I am new to Portal(EP: 6.0: SP12) and JCo.
       We are customizing the Logon Screen of the Portal to include a CLIENT field.
        And  we are planning to Call a Z Function Module present in the R/3 of the specified client(in the Logon Screen) using JCO.
        But i am really new to the Environment..
        Could anyone please help in carrying out this work???
        And also i would like to know how a Fuc Module can be called with the help of JCO. Providing a sample Code would really help me a lot!!!!!!  
    Thanks
    Kam
    Message was edited by: Kam

    Hi Kam
    You need to create a connection to that R/3 system for that.
    Try the following code:
    creating connection:
    =====================
    IConnectorGatewayService cgService = (IConnectorGatewayService)
         PortalRuntime.getRuntimeResources().
         getService(IConnectorGatewayService.KEY);
    IConnection con = cgService.getConnection("systemalias",request);
    ConnectionProperties cp = new ConnectionProperties(request.getLocale(),request.getUser());
    IInteraction ix = con.createInteractionEx();
    IInteractionSpec ixspec = ix.getInteractionSpec();
    ixspec.setPropertyValue("inputParameter","BAPI_SALESORDER");
    RecordFactory rf = ix.getRecordFactory();
    MappedRecord input = rf.createMappedRecord("inputParameter");
    input.put("EMPLOYEE_NUMBER",empNo);
    input.put("EMPLOYEE_NAME",empName);
    BAPI_SALESORDER==>calling fuction
    EMPLOYEE_NUMBER,EMPLOYEE_NAME===>parameter name
    empNo,empName===>parameter value
    <u>To retrive the value:</u>
    ============================
    MappedRecord output = (MappedRecord)ix.execute(ixspec,input);
    object rs = null;
    object result = output.get("SALES_ORDERS");
    if(result instanceof IRecordSet) {
         rs = (IRecordSet)result;
    con.close();
    Required jar files:
    ====================
    com.sap.portal.ivs.connectorserviceapi.jar,                                  genericconnector.jar,
                       connector.jar,
                       activation.jar
    regards,
    Yoga

  • Why do I have a grey logon screen now after downloading Yosemite ?

    Hi, sorry if this sounds daft but please could anyone tell me why I no longer have my regular login/start up screen when I turn my macbook pro on ? I used to get a small flower icon with my name underneath it that I just had to enter my password into, now, after installing Yosemite, I am presented with a grey/white screen with a torso silhouette and then my name underneath and then space to enter my password.  If I enter my password it oddly starts a bar system loading with an apple icon above it, it then mostly goes to my desktop ( eventually ) but sometimes goes to the original logon screen where I have to enter my password again ???
    I am not certain that Yosemite has installed correctly? if I click the apple logo and "about this mac" - it says I am running OS X Yosemite 10.10 but in my app store account, the download is not listing as done or even waiting to be done ?
    Does anyone have any ideas please ?
    Many thanks

    Hello Armando
    Check out the article below for troubleshooting your issue with the display. There are a few things that can be done, like changing the resolution of the display and also to reset the NVRAM to see if that resolves that for you.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/ht1573
    Regards,
    -Norm G.

  • Unable to get the logon screen when i open the sapgui

    Hi gurus,
    I have recently installed SAP 4.7 R/3 enterprise with the necessary requirements and after installation i am unable to get the logon screen (i am just getting the navigation bar which cannot be accessd) when i start my sapgui logon.I am getting a message at the bottom of the screen program SAPMS380,i cannot find any client or userid or password screen so can anyone help me...i need the reply as quickly as possible.
    Regards,
    Arun

    when you first install a system you'll notice that on Windows environment it takes too much to present the logon window because it needs to compile a lot of programs.
    What's the status on SAP MMC?
    Do you get or net the logon window? that's not clear on your message.
    cheers

  • Custom Logon Screen (Branding)

    Hi All,
    We want to chagne the WebDynpro login screen to achieve the following:
    - Custom Logo
    - Change Password functionality.
    I've located the login war file.
    com.sap.security.core.logon.war that contains the logon screen and have changed the JSP accordingly and it has worked.
    Does anyone know of a better way to change this?
    Regards,
    Michael

    Hi,
    The actual way of doing the Branding is as follows
    1. get the com.sap.portal.runtime.logon.par.bak in the irj deployed folder.
    2. remove the .bak.
    3. import it in the NWDS, do the changes in the jsp pages of login, logout, etc.
    4. make the par
    5. upload the same
    6. if you change the par name and uploaded then u need to do the changes to the authscheme.xml in the configtool, configuration
    7. restart the server.
    8. your changes are done.
    PS: Please take the com.sap.portal.runtime.logon.par.bak backup, if you gone wrong., then do upload it
    Thanks & Regards,
    Ragahvendra Pothula

  • Portal logon screen customization: size of branding image

    Hi Experts,
    1. the portal log on image should be changed to custom image. i replaced the branding image in D:\usr\sap\DP1\JC00\j2ee\cluster\server0\apps\sap.com\com.sap.security.core.admin\servlet_jsp\logon\root\layout
    and cleared the cache and refreshed the screen. the new image is seen. But i placed an image over 25kb (standard branding-image.jpg) size, it is not shown. is this the standard behaviour?
    2. i would like to change the "Welcome" text, what is the best method to change.
    I changed the test in D:\usr\sap\EPD\JC00\j2ee\cluster\server0\apps\sap.com\com.sap.security.core.admin\servlet_jsp\logon\root\WEB-INF\classes
    in <b>logonLabels_en.properties </b>file.
    3. what is the way to change "SAP Netweaver Portal Internet Explorer" on the logon screen which appears on the interenet explorer top left corner!
    i am on NW2004s SP11. EP7.0 SP11
    thanks for reading. points will be awarded for the responses.
    Regards,

    Hi,
    When you want to chane the text appering on top of Internet explorer, do following things,
    Go to System administrator-->system config -->  In detail navigation panel, find Service configuration --> open it --> Open Portal runtime --> right click on central configuration > configure>find property named <b>portal.html.head.title</b> here enter any text you want and restart the J2EE engine.
    2)You want to change "Welcome" text to say "welcome to my company", in this case you have done changes in <b>logonlables_en</b> properties, Now you have to again create the <b>umelogonbase.zip</b> file and then change the extension to <b>.jar</b> now replace this file in your<b> PAR file project in NWDS</b>, then deploy the project,
    Once this is done, In your NWDS project find <b>portalapp.xml</b> file and click on default component and <b>run</b>, see if changes are appearing..if this is successfull, then its time to change the <b>authschemes.xml</b> file.
    IF you have done with all this then please update the thread, we will proceed with authschemes file.
    Regards,
    Ameya

  • Portal Run time error after changing the logon screen

    Hi all,
    I am running an EP7 SP08 and I try to change the logon screen as described on:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/23/c0e240beb0702ae10000000a155106/frameset.htm
    I copied the 'com.sap.portal.runtime.logon.par.bak' file, renamed it to 'my.new.logon.par'. after that I extracted the file with winzip. I opened the directory 'PORTAL-INF\lib\' and there I extracted the file 'umelogonbase.jar' with winrar. I opened the  file 'logonLabels_en.properties' and changed the entry 'xtit_WELCOME=Welcome' to 'xtit_WELCOME=blablabla'.
    I repacked the umelogonbase.jar with winrar again and after that I repacked the 'my.new.logon.par' with winzip again.
    Then I placed the par file back at '<J2EE_Engine_Instance>\j2ee\cluster\server<X>\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd' and changed the authscheme.xml with the new par file and changed the 'login.authschemes.definition.file'  all described on the help.sap.com url mentioned above.
    However, when I restart the portal and open the logon screen I see the error message:
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    The exception was logged. Inform your system administrator..
    See the details for the exception ID in the log file
    The default trace shows the following message:
    An error occured during authscheme computation.
    [EXCEPTION]
    com.sapportals.portal.prt.component.PortalComponentException: Error in init method
    Component : my.new.logon.certlogon
    Is there anyone who knows what goes wrong? The description on help.sap.com is very straightforward but still it doesn't work for me...
    Any help would be appreciated.
    Kind Regards,
    Nico van der Linden...

    Hi,
      Check if you did the following steps pertaining to the authschemes.xml file:
    --> Download the authschemes.xml to local drive. Rename the file to,say, authschemes_new.xml
    --> In authschemes_new.xml, did you change <b>all</b> entries of com.sap.portal.runtime.logon with the name of modified logon par file?
    -->Upload the authschemes_new.xml file using configtool; and, change the property login.authschemes.definition.file to authschemes_new.xml in configtool.
    -->Finally,restart your portal. Hope it helps.
    Regards,
    M.Subathra

  • CProjects - How to get the logon screen?

    Hello!
    I've started the cProjects Web-Dynpro Application in our future production system for the first time. The strange thing is that the logon screen doesn't appear (I've got "logged in" as Anonymous ), althougth in development system the logon screen appears and works!
    I use the SICF-Path /default_host/sap/bc/webdynpro/sap/cprojects; login procedure is in both systems 'Standard' with no logon data.
    I appreciate any advice!
    Regards
    Wolfgang

    Hi Neil!
    In this case a SAP-user account was definied in the logon data section of the root SICF-node 'default_host'. This overruled the logon data configuration of the cprojects node. So check if a superior node of cprojects contains logon data!
    Regards
    Wolfgang

  • 7.01 to 7.3 Upgrade - Logon Screen - "Logon Problems? Get Support" occuring

    Hi
    We have upgrade our ABAP and JAVA stacks from NW 7.01 to NW 7.3.
    After the upgrade is the "Logon Problems? Get Support" occuring on our portals logon screen. In 7.01 this was controlled with the parameter ume.logon.logon_help - however after the upgrade we do not see this parameter anymore.
    Screen dump (requires a couple of clicks)
    http://www.filefactory.com/file/c26d20b/n/Portal_Logon_Page_Issue.jpg
    Any idea about how we remove the "Logon Problems? Get Support" part?
    Thanks and kind regards,
    Torben

    Hi Torben,
    On my fresh 7.3 installation, everything is clean and ... fresh ...
    So, for example, the built in group AnonUsers only has the user Guest as it's solely relation (no parent, no child groups); the guest user has the Guest role, which has (via it's groups) roles Everyone and Guest; onbly the role Everyone as got UME actions.
    All together, this sounds much like an upgrade issue (on my fresh 7.3, there is no group "J2EE_GUEST" at all).
    Two possibilities to go:
    - Open an OSS message (should be done in any case probably, to report this issue to SAP, so that this can be fixed);
    - Check the UME consistenty by yourself (http://help.sap.com/saphelp_nw73/helpdata/en/44/aecb4253217037e10000000a422035/frameset.htm)
    Maybe the second point already will fix some things; would be great for you, anyhow, I still would advise to report this issue officially to SAP.
    Hope it helps
    Detlev

  • Changes in Logonlables.properties are not reflecting in Logon screen in EP

    Hi frndz..
    Am chnaging the logon screen branding image and text and also the WELCOME text n the copy rights text also.
    For this am following a like  in that itz saying to take the PAR file "com.sap.portal.runtime.logon.apr"  
    from the following localtion.
    <J2EE_Engine_Instance>\j2ee\cluster\server<X>\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\pcd.
    but i didn't find any par like above the above specified location, but i found tha same par in the path of
    <J2EE_Engine_Instance>\j2ee\cluster\server<X>\apps\sap.com\irj\servlet_jsp\irj\root\WEB-INF\deployment\temp.
    so i taken tha PAR from ther n made the chnages in same PAR only i did't renamed PAR in same par only i made the chnages but itz not reflecting after server restart also
    Thanks in Advance
    Regards
    Rajesh

    Hi,
    Why don't you try from portal end? downloading and uploading the par file from portal.
    Check this blog https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60caa539-8e51-2a10-0e83-e0a68ab3f5aa
    PradeeP

  • Disable language on logon screen

    Hello,
    is it possible to disable a language on the PeopleSoft PIA logon screen? I know I can edit the signin.html to not provide the option to change this language, but that would be incomplete since the language gets recognized automatically. For example when a time-out occurs and a user is signed out, the warning page promting the user to log back in is in the automatically selected language. How can I change this behaviour? I only want to keep ENG as the only language available. I believe this won't be configured though the PS application itself, rather I need to edit java scripts and html pages for that weblogic uses.
    I'm on PeopleSoft 9.2 and PeopleTools 8.53, running Weblogic 10.3.6 I believe.
    Thank you for input.

    If you want to completely hide the language selections, you could try changing the styles.css stylesheet by adding display:none; to the pslanguageframe style.
    .pslanguageframe {
         display: none;
         background-color: #FFFFFF;
         border-right: 1px solid #D6D6D6;
         border-bottom: 1px solid #D6D6D6;
         border-top-width: 1px;
         border-top-style: solid;
         border-top-color: #D6D6D6;
    The file is in the PORTAL.war/<site> folder.
    I tried this on PT8.51 and it worked for the initial login screen, but you'll have to verify that it still works the same on 8.53 and that it applies to all of the other login pages.
    Regards,
    Bob

Maybe you are looking for

  • Link from delivery to subcontracting purchase order

    Hi Guys, anyone know how to pick up the link from a delivery (LIKP / LIPS) and the subcontracting purchase order (EKKO / EKPO) which was used to create it? I'm not sure such a link exists - the PO does not appear in the document flow of the delivery,

  • Black ink cartridge in printer won't print the black data on paper

    Product Name and Number: HP Photosmart 5514 e-All-in-One Printer - B111h Operating System Installed:  Windows 7 64-bit Error Message:  None Any Changes Made To Your System Before The Issue Occurred: None I went to copy data on my printer and noticed

  • No zune hd 32gb in store could not use coupon.

    I wanted to purchase a zune hd 32gb in store using the reward zone coupon, however it seems that none of the places in Arizona has ANY!  These reward zone coupons are totally USELESS.  It would've been nice if Best Buy had their buyer buy more than a

  • How can i increse query performance other than creating aggregates

    Hi,        i created one query and it will take more time to give a report i created aggregates but no use again it will take same so pls give me a option to increase the query performance. bye . sandhya.

  • Safari won't start up In Yosemite 10.10.1

    For some reason Safari won't startup in Yosemite. This started occurring in the last few days. All else appears to be functioning ok. I have used Disk Utility to repair permissions but no change. Any thoughts anyone? Thanks in advance.