Unable to view "Change password" page in other lang than English

Hello,
We have a stange problem:
Installed APEX 3.0.1 over 10.2.0.3 Database, no errors.
Applied Spanish and French translations (load_es and load_fr), no errors.
Create a new Workspace.
Create a single application (blank page).
Create a new user (no developer, no admin) and checked "Require Change of password on first use"
Default language in Browser English, try to login into single app with the new user and redirected to change password correctly.
If the Default language in browser is Spanish or French, trying to log into single app next error appears:
Error: El elemento "P50_USER_NAME" no aparece porque la pantalla HTML todavía no estaba abierta.
Same error for elements "P50_ENTER_CURRENT_PASSWORD", "P50_PASSWORD" ,"P50_CONFIRM_PASSWORD" and "P50_SESSION".
A simple error translation into English will be something like that:
Error.The element (or item) "P50_USER_NAME" does not appear because the HTML screen were not open yet.
If I try to enter with and admin user into /pls/apex app in Spanish...work fine!!!
Any ideas....to desperate with this error. I tried to translate the application.
Thanks in advanced.

Hi Scott,
Are you saying that when you run your application using an end-user account whose password must be changed, but that user is also an admin, that the change password page works fine?
No, the application fails using end-user and admin user.
When I said /pls/apex I was talking about the page that has "Application Builder", "SQL Workshop"...etc in this page it works fine.
Any ideas???
Regards.

Similar Messages

  • Unable to view saved passwords in Safari. Again.

    Unable to view saved passwords because I whenever I check the box to “view password” it immediately reverts the box back to being “unchecked”. Thus, I’m unable to view any or all passwords saved within Safari on my MBP (mid-2012) running 10.9.5. Also, auto-fill of passwords isn’t working at all.
    This has been an ongoing problem for quite some now. I’ve fixed it somehow before but I can’t recall what it was that I did.
    Any help? 
    Thank you.

    Delete Cookies
    Safari > Preferences > Privacy > Cookies and other website data:
    Click “Remove All Website Data”.
    Empty Caches
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click Develop and select "Empty Caches" from the dropdown.
    Turn off Extensions if any, and launch Safari.
    Safari > Preferences > Extensions

  • Change password page in 11,5,10

    Need to know how to add some text to the Change password page in 11,5,10

    The Tip message is stored in FND_NEW_MESSAGES table.
    http://etrm.oracle.com/pls/trm11510/etrm_pnav.show_object?c_name=FND_NEW_MESSAGES&c_owner=APPLSYS&c_type=TABLE
    To modify the message, use the Application Developer responsibility and navigate to Application --> Messages, then query up the message and make needed changes.
    Handy SQL for the Oracle Applications (Doc ID 731190.1) (See Section 2.1)
    You will need to bounce Apache for the change to take effect.
    Pl be aware that future patches and upgrades will reset the message back to it's original value.
    HTH
    Srini

  • Java.lang.NullPointerException in end user change password page

    Hi All
    I need to notify a user whenever he changes his password. when i log in to the user page and change password i get java.lang.NullPointerException.
    Any ideas???
    Help is appreciated.
    Thanks

    What exactly are you clicking on in the end user page? Your problem could be a number of things. You can get this error when the xml in a file it is referencing is not properly formed. e.g if you had not properly closed a tag in a config file.

  • Help needed - about change password page

    I had created a change password page and successfully connected to the access database via jdbc-odbc bridge. But, there are still some errors with the coding.
    The situation is like that: whether the NewPassword==ConfirmPassword or NewPassword!=CofirmPassword or both blank, there will always pop up a message dialog "The confirm password and new password must be same."(which I wrote in JOptionPane) and will not update the database that i had linked. I try to correct it but fail.
    Can somebody help me to correct the code below?
    Thank you!
    ========================================================================void jButton1_actionPerformed(ActionEvent e) {
    String userid = jTextField1.getText(); //UserName
    char[] passwd2 = jPasswordField2.getPassword(); //NewPassword
    char[] passwd3 = jPasswordField3.getPassword(); //ConfirmPassword
    try {
    connection = getDBConnection();
    if( passwd2 != passwd3 ){
    JOptionPane.showMessageDialog(null, "The confirm password and new password must be same.", "Change Password Fail", JOptionPane.INFORMATION_MESSAGE );
    jPasswordField2.setText("");
    jPasswordField3.setText("");
    else {
    String query = "UPDATE UserInfo SET Password = '"+ passwd2 +"' WHERE UserID='" + userid +"'";
    Statement statement = connection.createStatement ();
    ResultSet resultSet = statement.executeQuery( query );
    int result = statement.executeUpdate ( query );
    if ( result == 1 )
    JOptionPane.showMessageDialog ( null," Password successfully changed", "Password changed", JOptionPane.INFORMATION_MESSAGE );
    else {
    jPasswordField2.setText( " " );
    jPasswordField3.setText( " " );
    JOptionPane.showMessageDialog ( null,"Fail to change password.\n Please reenter the new password.","Fail", JOptionPane.INFORMATION_MESSAGE);
    catch (SQLException sqlex ){
    sqlex.printStackTrace();

    yup, i change as the code as u suggested..the change password page run success but got bugs as below. i don't know the reason. please correct me though the coding. thanks!
    ========================================================================
    java.sql.SQLException: No ResultSet was produced
         at sun.jdbc.odbc.JdbcOdbcStatement.executeQuery(JdbcOdbcStatement.java:255)
         at logintry.DataMiningFrame.jButton1_actionPerformed(DataMiningFrame.java:239)
         at logintry.DataMiningFrame$1.actionPerformed(DataMiningFrame.java:77)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1450)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1504)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:216)
         at java.awt.Component.processMouseEvent(Component.java:3715)
         at java.awt.Component.processEvent(Component.java:3544)
         at java.awt.Container.processEvent(Container.java:1164)
         at java.awt.Component.dispatchEventImpl(Component.java:2593)
         at java.awt.Container.dispatchEventImpl(Container.java:1213)
         at java.awt.Component.dispatchEvent(Component.java:2497)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
         at java.awt.Container.dispatchEventImpl(Container.java:1200)
         at java.awt.Window.dispatchEventImpl(Window.java:914)
         at java.awt.Component.dispatchEvent(Component.java:2497)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)

  • I'm unable to view a multiple page pdf document using Safari. A locked padlock appears in the right corner of the tab. Thanks

    I'm unable to view a multiple page pdf document using Safari. A locked padlock appears in the right corner of the tab. Thanks

    hello prgc37, you original problem was likely caused by a fault extension that you have installed. can you try to [[Reset Firefox – easily fix most problems|reset firefox]] and see if this can address the issue...
    otherwise such connection issues are also often caused by a firewall/security software which doesn't recognize & therefore blocks new firefox versions. please remove all program rules for firefox from your firewall and let it detect the new version of the browser again.
    [[Fix problems connecting to websites after updating Firefox]]
    finally please also [https://www.mozilla.org/en-US/plugincheck/ update your plugins] (flash seems a bit out of date).

  • Going to change password page from link in application

    We don't intend to give our users access to the OID self-service console, but we do want a "change password" button in the SSO partner app. I've written a change password page according to spec and it's plugged into the configuration database, but the question is, how do I invoke it from a link?

    You mean "Customizing the Single Sign-On Interface?
    What that says is "The WWSSSO_APP_USER_MGR.CHANGE_PASSWORD routine is invoked", which, I presumed, in this context means using the URL I found.
    As I said, I can't see how to do this from an external site without making a nasty hole in the firewall. How would you "invoke" WWSSSO_APP_USER_MGR.CHANGE_PASSWORD from a servlet or the like?
    The only idea I could come up with is for the servlet to copy the SSO headers an make it's own URLConnection to the directory interface. That seems improbably clumbsy, and would require me to change the password change page to (in order to relay the results in a similar fashion).

  • Complete List of Error Codes for Customized Change Password Page

    Hi,
    does anyone has a complete list of "Change Password Page Error Codes"?
    The list provided in the document:
    Oracle® Application Server Single Sign-On Administrator's Guide
    10g (9.0.4)
    Part Number B10851-01
    seems to be incomplete. (See: http://download-uk.oracle.com/docs/cd/B10464_01/manage.904/b10851/custom.htm#1009955 )
    I found at least three additional / different error codes:
    auth_fail_err
    pwd_minlength_err
    pwd_numeric_err
    I'm using a JSP Page.
    Thanks for help

    Hi,
    I found the list in the OID Admin Documentation. The list contains the error messages the OID sends to the client. In case of SSO, the client for the OID is the SSO server. So now I know which errors are transmitted to the server, I have to find out what the server sends to the SSO Page for Password change. Probably I should test all cases documented in the OID Admin doc to find the appropriate values for SSO Server.
    Thanks for the tip

  • IE7 settings in other languages than english

    Hi all,
    I have a question concerning the IE7 settings for CRM (PCUI, WebUI):
    From the SAP support we received the recommended settings in english. We have several users in different countries and their Internet Explorers are in in french or hungaria or whatever.
    Now the questions is: are there documents with the IE7 settings in other languages than english? Or do the users have to compare the english settings with their version of the IE?
    What is your experience with this?
    Thanks for your help!
    Greetings
    Anne

    By typing in a language other than English. You can change the keyboard to more suitable forms for many languages.
    "Add international keyboards:
    1 Choose General > Keyboard > International Keyboards.
    The number of active keyboards appears before the right arrow.
    2 Tap “Add New Keyboard…,” then choose a keyboard.
    You can add as many keyboards as you want. To learn about using international keyboards, see Appendix A, “International Keyboards,” on page 248.
    Edit your keyboard list: Choose General > Keyboard > International Keyboards,"
    From page 199 of the User Guide:  http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf

  • How do I message in other languages than English

    How do I text in other languages than English?

    By typing in a language other than English. You can change the keyboard to more suitable forms for many languages.
    "Add international keyboards:
    1 Choose General > Keyboard > International Keyboards.
    The number of active keyboards appears before the right arrow.
    2 Tap “Add New Keyboard…,” then choose a keyboard.
    You can add as many keyboards as you want. To learn about using international keyboards, see Appendix A, “International Keyboards,” on page 248.
    Edit your keyboard list: Choose General > Keyboard > International Keyboards,"
    From page 199 of the User Guide:  http://manuals.info.apple.com/en_US/iPhone_iOS4_User_Guide.pdf

  • JSAPI - other languages than English; MIDlet - settings loading; JSAPI - al

    Hello!
    I need to create application which uses speech recognition. At first I thought about using CMU Sphinx (PocketSphinx or, possibly, Sphinx4). Later I thought about JSAPI. (Sphinx somehow uses JSAPI but I don't know what is the difference between JSAPI and Sphinx).
    I have read almost all (up to 6.7.9) of the following tutorial: http://java.sun.com/products/java-media/speech/forDevelopers/jsapi-guide.pdf. Unfortunately I couldn't've found one important thing, i.e. how to create acoustic model for other language than English?
    Thanks in advance for your answers :-)!
    PS There are some other things which I'd like to know:
    1) How to load some settings from file (I guess nowadays configuration files are created with the use of XML but I dunno)?
    2) How to maintain algorithm which is used by MIDlet which involves JSAPI? I mean there are some different things which my MIDlet needs to do. I guess it is good habit to divide different goals into separate parts of code (due to object-oriented programming).
         In my case there are some different things:
         a) speech recognition of audio input, i.e. changing input audio stream into output text string
         b) analysis of that text string and according to this string choosing the proper transition in my algorithm
         In general I have written my algorithm on sheet of paper and it takes about ten A4 sheets of paper. Because of it I thought there should be some way to write this algoritm maybe outside the code, in some kind of file which would contain this algorithm. Maybe there is other good way to implement this algorithm, not necesarilly in the code.
         c) sending of results through httpconnection with the use of POST method
         d) receiving in on TomCat on server
    3) Which method should I use to receive the recognized speech? I found these:
         a) FinalRuleResult, b) Result -> getBestToken, c) getSpokenText, d) ResultToken of RuleGrammar
    4) Can you give me any full examples of JSAPI usage? (Not just short parts of code like in this JSAPI guide)?
    Greetins :-)!

    Praveen, Yes the infoobject is language dependent.  The problem did not happen in BWQ but came up in BWP.  so I am not sure at this time what is causing in production that didn't happen in BWQ.
    Thanks,
    Syed.

  • B2Bconsole in any other languages than English?

    Does anyone know if there is a civilised way to localize the B2Bconsole GUI, to display in any other language than English?
    I have found no documentation nor settings, and not sure if there is any way to do it (except for decompiling the orignal one, or writing you own console...).
    thanks,
    Norbert

    Dheeraj,
    Sincerelly, I don't think you will have prepared translation to Polish , but maybe? If not, is there any possibility to create such a translation oneself?

  • Web report print PDF in other language than English

    Hi,
    when i try to print the queries thro' web analyser(web output seen on Enterprise portal), the pdf document is generated in some other language than English.
    What is the problem?
    thank you....

    Hi BI.
    I would check the default language in the portal for the specific user. You will find this in the EP user administration in the general information tab.
    Hope it helps.
    BR
    Stefan

  • I have 2 apple IDs, one for Itunes, one for Icloud.  Have forgotten pasword for icloud ID.  When i try change password it invites me to change password on my other ID, which I don't want to do. How can i change the password?

    I have two apple IDs.  One is used for most things - Itunes, Apps.  The other is the Icloud apple ID which I set up separately when I got my Ipad.  I decided to keep them both as I was worried about losing info.  However, on updating my Ipad to IOS7, it asked for a password for Icloud apple ID which I have forgotten.  I have tried to reset it.  The first time, Apple sent me a link inviting me to change the password on my Itunes apple ID which I don't want to do.  So I tried to sign in again using the Icloud ID.  Rather than asking for email verification this time I asked it to verify security information.  It asked for my date of birth which I gave, but it was rejected.  So I seem to have no way of resetting the password for the Icloud apple ID.  I know I can't merge the 2 IDs so i don't know what to do now!!

    Firstly, go to http://iforgot.apple.com and sign in with the ID you use for iCloud. A new password will be sent to your associated email address.
    If that doesn't work, for example because it's going to an address you can't access, then you will have to contact Support. Go to https://expresslane.apple.com ; click 'See all products and services' at the bottom of the page. In the next page click 'More Products and Services, then 'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Lost or forgotten Apple ID password' and click 'Continue'.

  • SBS 2008 RWW displays "Your password has expired. Change it on the Change Password page."

    I have one User Account that when logging into RWW , a dialog (as attached) comes up? From my experience, when a password needs to be changed you are simply taken to the change password screen to enter old password and new. This AD account even has Password
    does not expire set.
    Even after changing password in AD this comes up - there are some other worrying things happening with this account as when the User opened their mailbox all of their Unread Items were marked as Read. Not sure if this is related. 
    When I login with another Test User Account, I cannot force the same dialog to come up and a google does not show me much.
    Could RWW of been compromised or is there something in User AD Account? I ended up resetting Users' password via AD just to be safe, but dialog still comes up. 

    Hi,
    Did this encounter for all the user accounts or just for a specific one?
    In general,if it is determined that the user must change the password upon logging on to the site (for example, the password has expired or set to User must change password at next logon), the logon page will present that error message to the user.
    Please check the prperties of that user account to see if you have selected "User must change password at next logon"check box.
    In addition, please check the default domain policy via the path below: Computer Configuration/Windows Settings/Security Settings/Account Policies/Password Policy
    Pleae check the value you have configured for “Maximum password age”.
    Best regards,
    Susie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for

  • ICloud, How to use it?

    How to use iCloud? I red a lot in the apple website buy I can´t find  good  answer  I have iPad, iPhone and MacBook but only can open www.icloud.com form the  Mac with my ID apple, these it´s not possible from other device because the ID apple doesn;

  • Inter company order billing error

    Hi Experts , Purchase order (Inter company order ) and delivery note have been placed ,when created intercompany billing ,we got message " Error no WBS billing element found while substituting WBS element 00003799" , pls give me a hand how to solve i

  • Leave based seniority not calculate correctly

    Hi guru, The Annual leave entitlement will be given base on the seniority.  At the Set the Base Entitlement portion. I have set 001  000-007 14 days 002  007-999 15 days day type 01 - Techn Entry date. When I hire an employee, he suppose only entitle

  • Extract query-text from a cursor: is possible?

    Is possibile, having a cursor like that: cursor c is select name, phone from addressbook; ...extract the "query text", i.e. a varchar2 variable (str) so that it contains: str = 'select name, phone from addressbook'

  • My Macbook air is not charging.

    It's connected to a power source and is running off of this power source, but the battery itself is not charging.  I've already tried doing the shift-control-option-power button reset and it did not work.  My battery report is as follows: Battery Inf