Menu key not available on app

New owner of S5 after having S3. Notice that the menu key brings up loaded apps not the menu for the app what the s3 home key did when held down. Lot of apps don't have the new style menu.

tangerine wrote:
OK, so when you press the unlock icon that has flashed up, does the phone not select the homescreen?
Yes, it does. I have an update though. I left the phone switched off all night and when I restarted it this morning the button is working again! Very confusing as I restarted it countless times yesterday after the problem first emerged.
However, I now have another problem with the unit though where the battery is only lasting about 4 hours. There is an incredible amount of heat on the back of the phone.
I will post it as a new thread....
Ilove nokias but they do have a habit of behaving like this. Frustrating.

Similar Messages

  • I erased my drive on Macbook pro, trying to reinstale os x Maverick but it is not available on App store, what should I do?

    I erased my drive on Macbook pro, trying to re-install os x Maverick but it is not available on App store, what should I do?

    Install Yosemite instead of Mavericks. Or you can do the following if your computer supports Internet Recovery:
    Install Mavericks, Lion/Mountain Lion Using Internet Recovery
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    Select Disk Utility from the main menu and click on the Continue button.
    After DU loads select your newly installed hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion. Mavericks: Select Reinstall Lion/Mountain Lion, Mavericks and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.
    This should restore the version of OS X originally pre-installed on the computer.

  • Security Question - Public Key not available

    Hello! I am trying to access some online class, but I'm having difficulty accessing them. I tried looking at the log and I found this:
    4/11/14 3:59:23.215 PM secd[235]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    Can I have any help/clue in order for this to stop? If it helps, I tried doing this in AKO (military).
    Thanks!

    Thanks Mark M - That was the issue.
    Of all the documentation in books and online i saw, basically say:
    --Create a page, give it alias PUBLIC_PAGE
    --At the page level,  set it to "page is public"
    --Change the logout URL in authentication template to redirect to the new page
    The fourth step i guess is to make sure your app level authorization is set appropriately as well.
    Thanks again.

  • Primary key not available

    Hi!
    When i run my appication client to connect to Oracle9i database i have a next exception:
    javax.ejb.CreateException: java.lang.IllegalStateException: Primary key not available.
    In Oracle i set a primary key field ID.
    Here is my code:
    /* Generated by Together */
    package ejb;
    import javax.ejb.EntityBean;
    import javax.ejb.EntityContext;
    import javax.ejb.EJBException;
    import javax.ejb.CreateException;
    import java.sql.SQLException;
    import java.sql.Connection;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import java.sql.PreparedStatement;
    import javax.ejb.NoSuchEntityException;
    import java.sql.ResultSet;
    import javax.ejb.DuplicateKeyException;
    import javax.ejb.RemoveException;
    import java.util.Collection;
    import java.util.ArrayList;
    import javax.ejb.FinderException;
    import javax.sql.DataSource;
    import java.lang.Integer;
    import java.lang.String;
    import java.rmi.RemoteException;
    import javax.sql.*;
    import java.sql.DriverManager;
    public class TestingBean implements EntityBean {
    private EntityContext ctx;
    public Integer userID;
    public String userLogin;
    public String userPassword;
    public String userPrivilege;
    static private final String users_res_ref = "jdbc/Oracle";
    public void setEntityContext(EntityContext context) throws EJBException {
    System.out.println("EntityContext before = " + ctx);
    ctx = context;
    System.out.println("EntityContext after = " + ctx);
    public void unsetEntityContext() throws EJBException {
    ctx = null;
    public void ejbActivate() throws EJBException {
    public void ejbPassivate() throws EJBException {
    public void ejbRemove() throws EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    userID = (Integer)ctx.getPrimaryKey();
    ps = con.prepareStatement("DELETE FROM TLogon WHERE Id = ?");
    ps.setInt(1, userID.intValue());
    if (!(ps.executeUpdate() > 0)) {
    throw new RemoveException ("ejbLoad: Can't remove user - " + userID);
    catch (Exception e) {
    throw new EJBException(e);
    finally {
    closeStatement(ps);
    closeConnection(con);
    public void ejbStore() throws EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    ps = con.prepareStatement("UPDATE TLogon SET Login = ?, Password = ?, Privilege = ? WHERE Id = ?");
    ps.setString(1, userLogin);
    ps.setString(2, userPassword);
    ps.setString(3, userPrivilege);
    ps.setInt(4, userID.intValue());
    ps.executeUpdate();
    catch (Exception e) {
    throw new EJBException(e);
    finally {
    closeStatement(ps);
    closeConnection(con);
    public void ejbLoad() throws EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    userID = (Integer)ctx.getPrimaryKey();
    try {
    con = getConnection();
    ps = con.prepareStatement("SELECT Id, Login, Password, Privilege FROM TLogon WHERE Id = ?");
    ps.setInt(1, userID.intValue());
    ps.executeQuery();
    ResultSet rs = ps.getResultSet();
    rs.next();
    userLogin = rs.getString("Login");
    userPassword = rs.getString("Password");
    userPrivilege = rs.getString("Privilege");
    catch (Exception e) {
    throw new EJBException("ejbLoad: Can't load user - " + userID);
    finally{
    closeStatement(ps);
    closeConnection(con);
    public Integer ejbCreate(Integer aUserID, String aUserLogin, String aUserPassword, String aUserPrivilege) throws CreateException, EJBException, SQLException {
    System.out.println("Inititialization parameters...");
    this.userID = aUserID;
    this.userLogin = aUserLogin;
    this.userPassword = aUserPassword;
    this.userPrivilege = aUserPrivilege;
    System.out.println("Setting connection to null...");
    Connection con = null;
    PreparedStatement ps = null;
    try {           
    System.out.println("Getting connection...");
    con = getConnection();
    System.out.println("EntityContext before getting primary key... = " + ctx);
    System.out.println("Getting primary key...");
    userID = (Integer)ctx.getPrimaryKey();
    System.out.println("Primary key is done...");
    ps = con.prepareStatement("INSERT INTO TLogon (Id, Login, Password, Privilege) VALUES (?,?,?)");
    System.out.println("Inserting data...");
    ps.setInt(1, userID.intValue());
    ps.setString(2, userLogin);
    ps.setString(3, userPassword);
    ps.setString(4, userPrivilege);
    ps.executeUpdate();
    return aUserID;
    catch (Exception e) {
    throw new CreateException(e.toString());
    finally{
    closeStatement(ps);
    closeConnection(con);
    public Integer ejbFindByPrimaryKey(java.lang.Integer pk) throws FinderException, EJBException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    ps = con.prepareStatement("SELECT Id, Login, Password, Privilege FROM TLogon WHERE Id = ?");
    ps.setInt(1, pk.intValue());
    ps.executeQuery();
    ResultSet rs = ps.getResultSet();
    rs.next();
    return pk;
    catch(Exception e) {
    throw new FinderException (e.toString());
    finally {
    closeStatement(ps);
    closeConnection(con);
    public void ejbPostCreate(Integer aUserID, String aUserLogin, String aUserPassword, String aUserPrivilege) throws CreateException, EJBException, SQLException {
              /* Write your code here */
    public Collection ejbFindAllUsers() throws EJBException, FinderException {
    Connection con = null;
    PreparedStatement ps = null;
    try {
    con = getConnection();
    ps = con.prepareStatement("SELECT Id FROM TLogon");
    ps.executeQuery();
    ResultSet rs = ps.getResultSet();
    ArrayList v = new ArrayList();
    Integer pk;
    while(rs.next()) {
    pk = new Integer(rs.getInt(1));
    v.add(pk);
    return v;
    catch(Exception e) {
    throw new FinderException(e.toString());
    finally {
    closeStatement(ps);
    closeConnection(con);
    public Integer getUserID() throws RemoteException, EJBException {return userID;}
    public void setUserID(Integer param) throws RemoteException, EJBException {this.userID = param;}
    public String getUserLogin() throws RemoteException, EJBException {return userLogin;}
    public void setUserLogin(String param) throws RemoteException, EJBException {this.userLogin = param;}
    public String getUserPassword() throws RemoteException, EJBException {return userPassword;}
    public void setUserPassword(String param) throws RemoteException, EJBException {this.userPassword = param;}
    public String getUserPrivilege() throws RemoteException, EJBException {return userPrivilege;}
    public void setUserPrivilege(String param) throws RemoteException, EJBException {this.userPrivilege = param;}
    private Connection getConnection() throws SQLException {
    InitialContext initCtx = null;
    try {
    initCtx = new InitialContext();
    DataSource ds = (javax.sql.DataSource)initCtx.lookup("java:comp/env/" + users_res_ref);
    return ds.getConnection();
    catch (Exception e) {
    throw new EJBException(e);
    private void closeStatement(PreparedStatement ps) {
    try {
    if (ps != null) {ps.close();}
    catch (Exception e) {
    throw new EJBException(e);
    private void closeConnection(Connection con) {
    try {
    if(con != null) {con.close();}
    catch(Exception e) {
    throw new EJBException(e);
    What i do wrong?
    Please help!!!!

    Very BIG thank you!!!!
    That's right, but i must delete this method only in ejbCreate?
    And i have a next exception: java.sql.SQLException: ORA-00947: not enough values. Why?
    Here is my code db:
    CREATE TABLE "SYSTEM"."TLOGON" ("ID" NUMBER(20) NOT NULL, "LOGIN"
    VARCHAR2(20 byte) NOT NULL, "PASSWORD" VARCHAR2(20 byte) NOT
    NULL, "PRIVILEGE" VARCHAR2(20 byte) NOT NULL,
    CONSTRAINT "ID" PRIMARY KEY("ID")
    USING INDEX
    TABLESPACE "SYSTEM"
    STORAGE ( INITIAL 12K NEXT 12K MINEXTENTS 1 MAXEXTENTS
    2147483645 PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1)
    PCTFREE 10 INITRANS 2 MAXTRANS 255)
    TABLESPACE "SYSTEM" PCTFREE 10 PCTUSED 40 INITRANS 1
    MAXTRANS 255
    STORAGE ( INITIAL 12K NEXT 12K MINEXTENTS 1 MAXEXTENTS 249
    PCTINCREASE 50 FREELISTS 1 FREELIST GROUPS 1)
    LOGGING
    And my client:
    package ejb.client;
    import javax.naming.Context;
    import javax.rmi.PortableRemoteObject;
    import ejb.TestingHome;
    import ejb.Testing;
    import java.util.Collection;
    import java.rmi.RemoteException;
    import javax.ejb.FinderException;
    import javax.naming.InitialContext;
    public class TestingClient {
    public static void main(String []args) {
    try {
    System.out.println("Step #1");
    Context initial = new InitialContext();
    System.out.println("Step #2");
    Object objref = initial.lookup("java:comp/env/ejb/SimpleTesting");
    System.out.println("Step #3");
    ejb.TestingHome home = (ejb.TestingHome)PortableRemoteObject.narrow(objref, ejb.TestingHome.class);
    System.out.println("Step #4");
    ejb.Testing aTesting;
    for(int i = 0; i < 3; i++) {
    String login = users[0];
    String password = users[i][1];
    String privilege = users[i][2];
    System.out.println("Adding user..." + login + "\n" + password + "\n" + privilege);
    home.create(new Integer(i+1), login, password, privilege);
    Integer i = new Integer(2);
    home.create(i, "Zatoka", "password", "admin");
    catch(Exception e) {
    e.printStackTrace();
    //private static String JNDI = "ejb.TestingHome";
    private final static String[][] users = {{"Zatoka","*****","admin"}, {"Ivanov","234fds","user"},{"Petrov","dcd2","user"}};
    BIG thanks!!!

  • Menu key not working on N8

    My menu key has stopped working all of a sudden.
    The key is recognised as when it is pressed when the phone is locked the on screen unlock option flashes up. I just can't access any settings, apps etc.
    Any ideas?
    Solved!
    Go to Solution.

    tangerine wrote:
    OK, so when you press the unlock icon that has flashed up, does the phone not select the homescreen?
    Yes, it does. I have an update though. I left the phone switched off all night and when I restarted it this morning the button is working again! Very confusing as I restarted it countless times yesterday after the problem first emerged.
    However, I now have another problem with the unit though where the battery is only lasting about 4 hours. There is an incredible amount of heat on the back of the phone.
    I will post it as a new thread....
    Ilove nokias but they do have a habit of behaving like this. Frustrating.

  • "Always Available off line" menu item not available for user on computer where another does see it. This is on Active Directory Computer

    I have a lap top that I want to add files via Always available off line.
    When I logon and right click on a folder share I can see the menu item all was available offline.  When the user logs on this option is not available.  I have turned the feature on and off, rebooted, I have deleted the cache folder but I cannot
    see how to get this menu item to show up.  It's odd that it shows up for one user but not another on the same computer.  I have searched the web and tried the above things and others but cannot seem to resolve this problem.  It seems pretty
    common and their. This computer is on a domain.
    thanks.

    Hi,
    So as we edited the group policy settings in the default domain policy, the menu item is now available?
    And as we are in a domain environment and the settings is configured under the default domain policy, how the domain users behave different from each other? Which someone could see and the other not?
    Could we please generate a
    GPO report to take a check?
    And regarding group policy issue, it is recommended to seek help in the group policy forum, experts there may share some insights:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/home?forum=winserverGP
    Best regards
    Michael Shao
    TechNet Community Support

  • Loaded fonts not available to apps

    Running 10.6.8, using Font Agent Pro, have not had problem for past year and a half, and all of a sudden yesterday, fonts not recognized by apps. Using Quark, versions 6 - 9, Adobe Creative Suites CS3 - CS6, Word, Excel, etc. I have loaded fonts through Fontbook instead of using Font Agent Pro, I have removed caches with terminal, ran Repair Disk Permissions, Shutdown, boot in Safe Mode, everything I can think of. In Fontbook, fonts display correctly but a lot of them are not available in other Apps. For instance, Arial & Arial Bold not available, but Italic & Bold Italic are fine. I work at a commercial printer and this is killing me!

    Did you repair permissions and restarted your computer after the font installatons?

  • Changes to VO not available in Apps

    Hi,
    I have made some changes to my custom VO, copied the xml and class files to the correct directory on the server, however my changes are not available/visible in apps. I already cleared the mid-tier cache and bounced the Apache webserver, but with no result. The path of the VO in the XML of the AM is correct.
    All unix users should have enough rights on the files to access them.
    Does anyone have an idea what can be the cause that my changes are not reflected in Apps?
    Help is very much appreciated!
    Br
    Guy

    Please make sure you added new attributes only at the end of existing attributes in sql, not in-between
    If in R12,
    First bounce apache:
    $ADMIN_SCRIPTS_HOME/adapcctl.sh stop
    $ADMIN_SCRIPTS_HOME/adapcctl.sh start
    Then bounce OC4J process:
    $ADMIN_SCRIPTS_HOME/adoacorectl.sh stop
    sleep 10
    $ADMIN_SCRIPTS_HOME/adoacorectl.sh start
    If in R11i, $COMMON_TOP/admin/scripts
    adapcctl.sh stop sleep 10
    adapcctl.sh start

  • Menu option not available in SAP GUI transaction in Portal

    Hi all,
    When accessing SAP Transaction iview via the portal 7.31 the drop down menu option is not available in the first session.
    It is available in the second session and when accessing SAP Traansaction directly from the SAPLOGON pad, the option allows users to open other sessions and stop transactions.
    How can we enable the menu option in Transaction iview in Portal? 
    Plz find the attaches screen shot of error.

    Hi Chandra,
    Can you try the same senario with broswer compatible mode?
    Because these function will be over ride the style sheet.
    Thanks
    Patrick

  • Multimedia Menu Key not working (N95)

    I have problem in the multimedia menu key (N95), it is not working, i pressed the key more than once, but the multimedia screen didnot appear, although it was working perfect from 2 days, Can anyone tells me how to solve this problem. Thanks

    16-May-200704:01 PM
    capbadge wrote:
    Thanks for confirming my suspicion.
    It's what Nokia will do about it now and how do we alert them?
    Well this is an official Nokia forum and there are representatives that look over the forum so I'm sure it'll be picked up as an issue and worked upon.
    Can someone do a check for me please as my multimedia key started working for me again, and I don't recall restarting it (or it rebooting) between the alarm going off and the multimedia key starting to work (unfortunately I haven't been able to find an "uptime" tool for the Symbian 60 environment).
    Could you close all open applications on your phone, then goto Tools->Memory card and backup the contents of your phone onto your memory card, and THEN try the multimedia key to see whether it starts working again ?
    If it does, then I think I know what is happening. I've noticed that if I have MobiPocket open and do a backup of my phone contents onto memory card, what the phone does is actually close MobiPocket down so that it hasn't got any files open, then back everything up, then re-opens it for me. If this is the case, and the multimedia key starts working again for other users after carrying this action out, then it may be that the backup operation is closing a process which has been left running in the background of the phone once a recurring alarm has gone off.
    Regards,
    Edward

  • Install option not available in App Store for some apps

    Why is the option to install not available for some apps?  The app info shows up but the install button is not there.

    The button should read either the price of the App, or Free if they are free. Alternatively if you have purchased/downloaded the App in the past but deleted it from the device, it should have a button with a cloud icon.
    Pressing it will initate download and installation.
    Is none of this the case?

  • Cisco Presence Server 8.5 Application - Cisco Jabber menu option not available

                       Dear Support,
                       I am trying to configure cisco jabber with Presence Server 8.5. All the documentation indicate that jabber option in Presence must be configured in the Application -> Cisco Jabber menu, however this menu option is not available in my Presence Server. Anyone know why this is happening? I am using CUCM version 8.6.1. I installed the jabber client for windows in two Windows 7 machines and I have presence and IM funcitonalities but I can not make calls or activate other features like video, desktop sharing and so on.
                        Any help would be really appreciated.
                        Best Regards,
                        Roberto López.

    Thanks a lot for pointing me to the right direction.
    Just one more question. After installing jabber for windows on a couple of laptops and signing in, the call option (right click on contact or telephone icon located right to the contact)  is not available right away meaning that I have to wait a long time for it to appear or if I start a call from the "search or enter number to call" field then all call button and options are enabled. Do you have any idea why this could be happening?
    Best Regards,
    Roberto.

  • How do i reinstall mountain lion? not available in app store anymore.

    Went through reinstallation procedure only to find mountain lion not available in the app store anymore. when it asks for apple id login the message states, not available. please help!

    If you purchased Mountain Lion as an upgrade, it will always be in your list under the Purchases tab of the App Store app. Click Download to reinstall it.

  • My order (OS X 10.8) not available at app store

    i just bought 10.8, somehow the english version, though i bought it on the germnan apple webstore. now app store tells me, this version is not available for download. it doesn`t offer a diffrent version. my apple id is not working on the us-app store either. so what can i do to get my version of mountain lion?
    german or english version is fine.

    You can only buy from the App store of the country in which you are a resident, with a permanent billing address in that country and a credit card supported by a bank in that country.
    Nor can you buy Snow Leopard 10.6.8.   You can buy 10.6.3 under the conditions I mentioned above.   That will then have to be software updated to 10.6.8.

  • AIM Messenger for iPhone not available in App Store India

    Hi,
    I understand that the AIM Messenget is available in www.aim.com for iPhone but it is not available in the India app store. It is only available in the US and if I change store, it does not allow to download as my apple id is not good for the US app store.
    Please help
    Thanks,
    Sanjoy

    No one here can help you. Contact the developer and ask about their plans for the app in the Indian app store.

Maybe you are looking for