Customizing Password Reset App - Login Page

Hi All,
I have a requirement to modify the SAP delivered webDynpro based Password reset App - Logon Help app in the logon page of portal.
Can anybody tell me how to proceede on this.
Thanks
Supriya

Hi,
See this post
Item - Password
>
Populating a password field with a password shouldn't be possible since you should never store a password in clear text and thus can't populate it.
>
Br, Jari

Similar Messages

  • Adding custom message on the login page

    I have done the following to try and get a custom message to display on the oracle login page:
    1:
    In the System Administrator Responsibility, went into the System Profile Options and searched for "Local Login Mask" The default value was 32, I set it to 96. This was done because 64 is the number to display a "Corporate Policy Message" on the login page (32+64 = 96).
    2:
    Switched over to the Application Developer responsibility, and went to Application->Messages. Here I did a search for "FND_SSO_SARBANES_OXLEY_TEXT". A result came back with current message text: "Corporate Policy Message". I changed this to a test message and hit save.
    3
    Still in Application Developer responsibility, I went to Other->Requests->Run and chose "Generate Messages", for parameters I chose:
    Language: US
    Application: Application Object Library
    Mode: DB_TO_RUNTIME
    while leaving the others blank. I submitted this request and it completed normal.
    4
    I logged out of applications, closed my browser and cleared my cache. I went to login into the apps and at the login page... it does display "Corporate Policy Message" but it never updated it to my custom one.
    Question: Do I need to restart the HTTP server or something to see the updated results? I am confused why it will display "Corporate Policy Message" but the value for FND_SSO_SARBANES_OXLEY_TEXT is clearly changed. Even when you go back into it and look.
    The Generate Messages conc prog is a spawned process so I cant find out what its doing.
    Any help would be loved!
    OH PS
    I know I started a previous thread on a similar topic, but the method has changed completely and I think it merits its own thread. My apologies if it shouldn't have been.

    Hi;
    What is your EBS and OS?Please check below thread
    password-Lock User when enter password in wrong 3 times
    Re: Lock User when enter password in wrong 3 times
    Regard
    Helios

  • Custom Error message in Login Page

    Hi,
    I am using MVC framework for my project. I want to display custom error messages to the user in the Login page(JSP).
    For eg: invalid password, password has been expired etc. How do I pass these messages from Java to my login page & display it?

    This is a sample action class for login page in struts : -
    package xxx;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import LoginForm.java;
    public class Action extends org.apache.struts.action.Action
    public ActionForward execute(ActionMapping mapping, ActionForm form,
    HttpServletRequest request, HttpServletResponse response)
    throws Exception {
    ActionErrors errors = new ActionErrors();
    ActionForward forward = new ActionForward(); // return value
    String username;
    String password;
    try {
    LoginForm lf = new LoginForm;
    username =lf.getUserName();
    password = lf.getPassword();
    if( username== null)
    forward=mapping.getInputForward();
    if( (username == "admin" ) && ( password="admin"))
    // do something here
    } catch (Exception e) {
    // Report the error using the appropriate name and ID.
    //Errors will be caught here.
    errors.add("name", new ActionError("id"));
    // If a message is required, save the specified key(s)
    // into the request for use by the <struts:errors> tag.
    if (!errors.isEmpty()) {
    saveErrors(request, errors);
    // Forward control to the appropriate 'failure' URI (change name as desired)
    //     forward = mapping.findForward("failure");
    } else {
    // Forward control to the appropriate 'sucuess' URI (change name as desired)
    forward = mapping.findForward("success");
    // Finish with
    return (forward);
    You need to have LoginForm.java as Model and Login.jsp as View . Action.java will be your controller.

  • Username and password with new login page

    i have created an application where in which in login page i have created
    3 items username and password confirm password . where does the
    data entered in the items fall . how can i retrieve the data .

    Just some information :
    - The problem with LOGIN page exists. I don't have that problem with for example GMAIL when defined as external application, but with my applications in Oracle Application Server.
    - There is also another thing I don't understand. The link to external application is something like:
    javascript:open_jwindow('../ealogin?ID=76D4766','76');
    and couldn't be executed outside pls/orasso
    in other words we can't give that to our users, can we? They should login to orassso and see that?
    We don't want to involve them in Identity Management...
    Any help is appreciated....
    Regards

  • Reset Button @ login page

    Good Morning,
    I would like to know how to create reset button in login page.
    Thanks in advance,
    NY APEX

    Sorry to jump on someone else's post It's best to start a new thread, you can always reference this post in your question
    but I am very interested in the point you raise "you have other options... database" - can you kindly explain how you could utilise a database to replace standard OBIEE user security - or point me at a reference on how to do this.See Oracle Business Intelligence Server Administration Guide http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/b31770.pdf chapter 15 - Security in Oracle BI, in particular p.326 "Setting Up External Table Authentication"

  • Customizing LiveCycle Rights Management login page

    Hi,
    I would like to know how to customize the login page of Right Management (and if possible the AdminUI one). In the Adobe documentation, I've only found how to customize the login page of LiveCycle WorkSpace, but nothing for the other modules.
    Do you have any hint for this customizaton ?
    Thanks

    We don't provide the source code for adminui like we do for Workspace.
    Jasmin

  • Customizing the Biller Direct login page.

    Hi,
    How can I customize the Biller Direct login page?
    I know the files available in com.sap.security.core.admin, but..how can we deploy from one machine to another..what file we have to deploy.
    Thanks
    Rohini Kumar J.

    Hi,
    I think it is par file. Once you done with your change in the JSP file, rebuid it and then the builed par file can be deployed
    in  System admin ->support
    click portal runtime.
    In the tools
    click on Administration console and upload your par file
    Note that the par file should with the same name.
    Hope it helps you
    Raghu

  • Customizing Password Reset Mechanism in Opensso

    Hi,
    The password reset functionality in Opensso works in a manner that when a user wish to reset his password, he is asked to provide a answer to a security question and than opensso resets his password and send it via email.
    What I need to achieve is , for some users OpenSSO should not prompt for security Question and Answer, rather when he tries to reset his password, it is directly send to his email. I have a value in LDAP via which I can identify which user should not be prompted for security question but want to know how to and where to inject this code to achieve this.
    Is this task doable? If yes please provide some help to achieve this.

    You can change the settings in amPasswordResetModuleMsgs_en.properties

  • Re: Satellite L450D - Password reset on login screen

    Hi,
    How do I reset the password on the main login screen of Satellite L450D? I cannot remember the password and cannot get beyond this screen?
    Thanks

    *@Jurgo*
    > If you reset bios you loose all information saved in bios memory - which contains password
    How you would be able to reset BIOS? This is not possible like on desktop PC!
    BIOS can be rested only by ASP technician too so please dont mix different notebooks with an common desktop PC.

  • Open safari and enter username and password into opening login page

    I have managed to alter pictures in iphoto and photoshop but I am struggling to sort this one out. Initially it seems simple but I just cannit figure it out.
    Can anyone help?
    Mark

    Hey Prion- Glad It works. I promise that its really not too technical. It may seem like a lot of code but it just insures that it runs properly every time. I don't know if you're interested, but here's a description of what each part does...
    tell application "Safari"
    activate
    ---Tell safari to open...
    make new document
    set URL of document 1 to "https://email.ntwsha.co.uk"
    --- Make a new window with the above address...
    end tell
    if page_loaded(10) then
    ---This line says "If the action 'page_loaded' is complete and true then con't this section." See the "On page_loaded" below to see what it does...
    tell application "System Events"
    ---Send an action to the system (this could be any type of GUI scripting)...
    keystroke "account"
    delay 1
    keystroke tab
    delay 1
    keystroke "password"
    delay 1
    keystroke return
    ---Self-explanatory- I put in the delay to allow the page to react after tab is pressed...
    end tell
    else
    ---if page_loaded has not completed within the timeout period or returns false then...
    display alert "The URL Has Not Loaded."
    end if
    on pageloaded(timeoutvalue)
    ---when page_loaded is called upon do the rest below...
    delay 2
    repeat with i from 1 to the timeout_value
    ---Repeat the following command until the time reaches the timeout_value (10)...
    tell application "Safari"
    if (do JavaScript "document.readyState" in document 1) is "complete" then
    return true
    ---Tells safari to check if the page has finished loading. If yes, return true, if no-repeat...
    else if i is the timeout_value then
    return false
    If the timeout_value is reached (10 secs) and the page has still not finished, then return false...
    end if
    delay 1
    end tell
    end repeat
    end page_loaded
    So its really not that technical of a language. In fact, its one of the closest to english as far as computer languages go. Its a pretty good asset to learn, because pretty much everything you could want to do in automator, would be possible in applescript. And if you aren't real interested, no big deal. Just thought you want to know how the script worked. Good Luck!
    --Justin S.

  • Apps Login Page Error- Insufficient privileges for the current operation

    Hi Gurus,
    We migrated application node from HP-UNIX to SUN Solaris with 11.5.10.2 and 10.2.04 database. When i try to login as sysadmin, got the error You have insufficient privileges for the current operation.
    But i can able to go in with Forms URL and it works. I don't see any errors on IAS except
    Fatal error in parsing device registration file in jserv.log.
    Any help is appreciated.
    Thank You.

    I found 150 invalid objects in the database. Also i have question here my database and the application is on different domains.Where do you have those invalid objects? Under what schema?
    Using different domain names should be OK.
    Do you think that will work. If the application and database put it in the same domain( put the apps in same database domain), by running the autoconfig will update the domain name in application server globally.I cannot assure if it is going to work or not.
    Have you checked Apache log files?
    If not change the domain name globally what else need to be done to change it. Please suggest on that.These are the docs you need to access if you want to change the domain name.
    How to change the hostname of an Applications Tier using AutoConfig [ID 341322.1]
    How to change the hostname and/or port of the Database Tier using AutoConfig [ID 338003.1]
    Steps To Clean Nonexistent Nodes or IP Addresses From FND_NODES [ID 260887.1]
    Thanks,
    Hussein

  • How to enable "Forget Password" link on Apps 11i Login Page?

    Hi All,
    How to enable the functionality of "Forget Password" link on Apps login page?
    Apps 11i
    DB: 10g
    OS: HP-UX
    Thanks,

    Afia wrote:
    Hi All,
    How to enable the functionality of "Forget Password" link on Apps login page?
    Apps 11i
    DB: 10g
    OS: HP-UX
    Thanks,
    This topic was discussed many times in the forum before -- https://forums.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=Forgot+AND+Password+AND+11i&rankBy=relevance
    Thanks,
    Hussein

  • How to add "reset password" to login page

    Hi,
    I am new to HTMLDB. I created a login page which ask for username/password. How can I add "reset password" to the login page so that the user can change the password when login to the application. Thanks for your help.

    hi Bunty,
    For that pasword input feild first select in the webdynpro screen, goto  properties tab , in that you find one option called passwordField , set it true.
    this will solve your problem
    Regards
    Govardan Raj

  • 10g904 - custom login pages & development method of applics for SSO

    i am getting baffled with these custom login pages and their connection with the SSO.
    I have now read extensive documentation from the following:
    Oracle® AS SSO Admin Guide for release 10g (9.0.4) (B10378-01)
    Oracle® AS SSO App Developers Guide for release 10g (9.0.4) (B10852-01)
    Oracle® AS SSO Admin Guide 10g (9.0.4) (B13791-01)
    Oracle® AS App Developers Guide for release 10g (9.0.4) (B10378-01)
    Oracle® SSO Developers Guide for version 306
    what baffles me is how custom login pages are to be defined for the 10g versions of AS.
    in 10g (904) version, applications for SSO can be protected using mod_osso, and may be developed using mod_osso or using SSO-SDK which is deprecated from this version.
    1. this means that if we do not have to use SSO-SDK (which is deprecated in 904 version) and where we need to protect applications using the mod_osso, then why do we need to use the custom pages.
    2. how do the custom-defined deployment specific login pages or change-password pages work?
    3. what is the role of SSO for partner applications if we do not configure it specifically.
    any helpful hints or links would be highly appreciated.
    thanks

    i am getting baffled with these custom login pages and their connection with the SSO.
    I have now read extensive documentation from the following:
    Oracle® AS SSO Admin Guide for release 10g (9.0.4) (B10378-01)
    Oracle® AS SSO App Developers Guide for release 10g (9.0.4) (B10852-01)
    Oracle® AS SSO Admin Guide 10g (9.0.4) (B13791-01)
    Oracle® AS App Developers Guide for release 10g (9.0.4) (B10378-01)
    Oracle® SSO Developers Guide for version 306
    what baffles me is how custom login pages are to be defined for the 10g versions of AS.
    in 10g (904) version, applications for SSO can be protected using mod_osso, and may be developed using mod_osso or using SSO-SDK which is deprecated from this version.
    1. this means that if we do not have to use SSO-SDK (which is deprecated in 904 version) and where we need to protect applications using the mod_osso, then why do we need to use the custom pages.
    2. how do the custom-defined deployment specific login pages or change-password pages work?
    3. what is the role of SSO for partner applications if we do not configure it specifically.
    any helpful hints or links would be highly appreciated.
    thanks

  • Custom Login page error

    HI,
    I am trying to modify the Apps login page. I just renamed the page AppsLocalLogin.jsp to xxxAppsLocalLogin.jsp and try to access from the server. This gives me error
    java.lang.RuntimeException: Cannot access oracle.app.fnd.sso
    Here .app. access though in oracle apps folder structure there is not folder like app
    Can anybody help me on this why this error is coming.

    Security layer may display error messages which has no meaning and not helpful to to figure out what is the root cause. You can addres this to the Security forum if you hit there. But have the same question Ram asked. Any need to change the jsp name?

Maybe you are looking for