Problem with store in my lumia 520

Hi.....
i cant download apps from store above 20mb...
first above 100mb required wifi.... But now it asks for only 20mb....
what i do....
please help me.......

Hi krishna212,
Welcome to the forum!
Did you encounter any error message? What type of connection used? Please note that you will need a WI-FI connection when downloading apps or games larger than 50 MB. You can also try to download an application via web and sent it to your phone automatically. Just visit:
http://www.windowsphone.com/en-us/store
Check this out for more information:
http://www.windowsphone.com/en-US/how-to/wp8/apps/download-apps-and-games-faq
Keep us posted. 

Similar Messages

  • Constant problem with store in my Lumia 620

    Hi
    When I open store in my Lumia 620 it shows error c00cee22.
    Solved!
    Go to Solution.

    Hello, Vaibhav_16390. Have you already tried the suggestion given by eshiejamz? BTW, are you also using a Lumia 620? You may also try deleting the browser's history. Go to Settings > applications tab > Internet Explorer > delete history. Once done, press and hold both the volume down and the power keys for 10-15 seconds. 
    Let us know the outcome. 

  • Problem with glance screen on lumia 820

    I have a problem with my Lumia the glance screen does not work,only works when the phone is exposed to the sun or any light and when is not it doesn't shows up,when is always does not work the same with peek and the other ones, I need help I have this problem since the update please reply me.

    hi mate,
    have you checked that you are up to date with all the latest Nokia system app updates from the Store? also try performing a soft reset too.

  • Problem with store ResultSet and show result in table

    Hi, I'm kind of new in ADF, I need to store ResultSet and show result in table-component. I have two problems:
    1) I get my ResultSet by calling callStoredProcedure(...) and this returns actually ref_cursor as ResultSet.
    When I try to println() contains of this result set in this method - it works OK (commented part),
    but when I want to println() somewhere else (eg. in retrieveRefCursor() method) it doesn't work.
    The problem is that the scrollability of the ResultSet is lost - it becomes a TYPE_FORWARD_ONLY ResultSet.
    Is there any way to store data from ref_cursor for a long time?
    2) My second problem is "store any result set and show this data in table". I have tried use method storeNewResultSet() but
    without result (table contains only "No rows yet" and everything seems to be OK - no exception, no warning, no error...).
    I have tried to call this method with ResultSet from select on dbs (without resultSet as ref_cursor ) - no result with createRowFromResultSet(),
    storeNewResultSet(), setUserDataForCollection()...
    I've tried a lot of ways to do this, but it doesn't work. I really don't know how to make it so it can work.
    Thanks for your help.
    ADF BC, JDev 11.1.1.0
    This is my code from ViewObjectImpl
    package tp.model ;
    import com.sun.jmx.mbeanserver.MetaData ;
    import java.sql.CallableStatement ;
    import java.sql.Connection ;
    import java.sql.PreparedStatement ;
    import java.sql.ResultSet ;
    import java.sql.ResultSetMetaData ;
    import java.sql.SQLException ;
    import java.sql.Statement ;
    import java.sql.Types ;
    import oracle.jbo.JboException ;
    import oracle.jbo.server.SQLBuilder ;
    import oracle.jbo.server.ViewObjectImpl ;
    import oracle.jbo.server.ViewRowImpl ;
    import oracle.jbo.server.ViewRowSetImpl ;
    import oracle.jdbc.OracleCallableStatement ;
    import oracle.jdbc.OracleConnection ;
    import oracle.jdbc.OracleTypes ;
    public class Profiles1ViewImpl extends ViewObjectImpl {
        private static final String SQL_STM = "begin Pkg_profile.get_profile_list(?,?,?,?);end;" ;
        public Profiles1ViewImpl () {
        /* 0. */
        protected void create () {
            getViewDef ().setQuery ( null ) ;
            getViewDef ().setSelectClause ( null ) ;
            setQuery ( null ) ;
        public Connection getCurrentConnection () throws SQLException {
            // Note that we never execute this statement, so no commit really happens
            Connection conn = null ;
            PreparedStatement st = getDBTransaction ().createPreparedStatement ( "commit" , 1 ) ;
            conn = st.getConnection () ;
            st.close () ;
            return conn ;
        /* 1. */
        protected void executeQueryForCollection ( Object qc , Object[] params , int numUserParams ) {
            storeNewResultSet ( qc , retrieveRefCursor ( qc , params ) ) ;
            // callStoredProcedure ( qc , SQL_STM ) ;
            super.executeQueryForCollection ( qc , params , numUserParams ) ;
        /* 2. */
        private ResultSet retrieveRefCursor ( Object qc , Object[] params ) {
            ResultSet rs = null ;
            rs = callStoredProcedure ( qc , SQL_STM ) ;
            return rs ;
        /* 3. */
        public ResultSet callStoredProcedure ( Object qc , String stmt ) {
            CallableStatement st = null ;
            ResultSet refCurResultSet = null ;
            try {
                st = getDBTransaction ().createCallableStatement ( stmt , 0 ) ; // call 
                st.setObject ( 1 , 571 ) ; //set id of my record to 571
                st.registerOutParameter ( 2 , OracleTypes.CURSOR ) ; // my ref_cursor
                st.registerOutParameter ( 3 , Types.NUMERIC ) ;
                st.registerOutParameter ( 4 , Types.VARCHAR ) ;
                st.execute () ; //executeUpdate
                System.out.println ( "Numeric " + st.getObject ( 3 ) ) ;
                System.out.println ( "Varchar " + st.getObject ( 4 ) ) ;
                refCurResultSet = ( ResultSet ) st.getObject ( 2 ) ; //set Cursoru to ResultSet
                //   setUserDataForCollection(qc, refCurResultSet); //don't work
                //   createRowFromResultSet ( qc , refCurResultSet ) ; //don't work
                /* this works but only one-time call - so my resultSet(cursor) really have a data
                while ( refCurResultSet.next () ) {
                    String nameProfile = refCurResultSet.getString ( 2 ) ;
                    System.out.println ( "Name profile: " + nameProfile ) ;
                return refCurResultSet ;
            } catch ( SQLException e ) {
                System.out.println ( "sql ex " + e ) ;
                throw new JboException ( e ) ;
            } finally {
                if ( st != null ) {
                    try {
                        st.close () ; // 7. Close the statement
                    } catch ( SQLException e ) {
                        System.out.println ( "sql exx2 " + e ) ;
        /* 4. Store a new result set in the query-collection-private user-data context */
        private void storeNewResultSet ( Object qc , ResultSet rs ) {
            ResultSet existingRs = getResultSet ( qc ) ;
            // If this query collection is getting reused, close out any previous rowset
            if ( existingRs != null ) {
                try {
                   existingRs.close () ;
                } catch ( SQLException s ) {
                    System.out.println ( "sql err " + s ) ;
            setUserDataForCollection ( qc , rs ) ; //should store my result set
            hasNextForCollection ( qc ) ; // Prime the pump with the first row.
        /*  5. Retrieve the result set wrapper from the query-collection user-data      */
        private ResultSet getResultSet ( Object qc ) {
            return ( ResultSet ) getUserDataForCollection ( qc ) ;
        // createRowFromResultSet - overridden for custom java data source support - also doesn't work
       protected ViewRowImpl createRowFromResultSet ( Object qc , ResultSet resultSet ) {
            ViewRowImpl value = super.createRowFromResultSet ( qc , resultSet ) ;
            return value ;
    }

    Hi I have the same problem like you ...
    My SQL Definition:
    CREATE OR REPLACE TYPE RMSPRD.NB_TAB_STOREDATA is table of NB_STOREDATA_REC
    CREATE OR REPLACE TYPE RMSPRD.NB_STOREDATA_REC AS OBJECT (
       v_title            VARCHAR2(100),
       v_store            VARCHAR2(50),
       v_sales            NUMBER(20,4),
       v_cost             NUMBER(20,4),
       v_units            NUMBER(12,4),
       v_margin           NUMBER(6,2),
       v_ly_sales         NUMBER(20,4),
       v_ly_cost          NUMBER(20,4),
       v_ly_units         NUMBER(12,4),
       v_ly_margin        NUMBER(6,2),
       v_sales_variance   NUMBER(6,2)
    CREATE OR REPLACE PACKAGE RMSPRD.NB_SALES_DATA
    AS
    v_sales_format_tab   nb_tab_storedata;
    FUNCTION sales_data_by_format_gen (
          key_value         IN       VARCHAR2,
          l_to_date         IN       DATE DEFAULT SYSDATE-1,
          l_from_date       IN       DATE DEFAULT TRUNC (SYSDATE, 'YYYY')
          RETURN nb_tab_storedata;
    I have a PLSQL function .. that will return table ..
    when i use this in sql developer it is working fine....
    select * from table (NB_SALES_DATA.sales_data_by_format_gen('TSC',
                                        '05-Aug-2012',
                                        '01-Aug-2012') )
    it returning table format record.
    I am not able to call from VO object. ...
    Hope you can help me .. please tell me step by step process...
    protected Object callStoredFunction(int sqlReturnType, String stmt,
    Object[] bindVars) {
    System.out.println("--> 1");
    CallableStatement st = null;
    try {
    st = getDBTransaction().createCallableStatement("begin ? := " +"NB_SALES_DATA.sales_data_by_format_gen('TSC','05-Aug-2012','01-Aug-2012') ; end;", 0);
    System.out.println("--> 2");
    st.executeUpdate();
    System.out.println("--> 3");
    return st.getObject(1);
    catch (SQLException e) {
    e.printStackTrace();
    throw new JboException(e);

  • Lumia 920 / Problem with Store App

    Right after I bought my Lumia 920, a added few applications (viber, instagram, etc.) using store app. 
    After few days, everytime I tried to open Store App, or even visit the market page using browser on my device, I got the same message:
    ''Service unavailable at the moment. Check again in a little while.''
    My phone is totally blocked for downloading new Apps. I'm not able to, for example update ''What's Up'' App beacuse it's redirecting me automatically to Store. This haven't been changed for a while, about month or two. I even updated phone regulary once update was available, nothing changed after that. All other stuff is working perfectlly, so I'm not sure what could be the problem.
    Can anyone help?
    Thanks!

    Is everything ok with your Microsoft account? You didn't change your password recently or anything like that? Try logging into your microsoft account just to make sure everything is ok. 

  • Problem with store app, lumia 720

    hi
    i bought lumia 720 few weeks ago, and because i can't download apps from the windows store directly (cuz i'm from syria), i have to download them to the laptop then move them to the SD card, and later open the .XAP files from the store app.
    the problem is that THE STORE APP ISN'T WORKIING, it keeps saying "service unavailiable right now. Check back in a little while".
    so now i can't download any thing on my lumia and this sucks
    plz help..

    Hi, Adeptbe. Thanks for posting your concern on our community. Does the issue occur regardless of the connection you are using? Does the date and time of your phone are properly setup? Check it by going to Settings>date+time. Also, try checking if the Microsoft account on your phone is syncing properly. Do it by going to Settings>email+accounts>press and hold Microsoft account>sync. If you encounter any error message, you may check it in here: Common Windows Store error codes. Let us know if you need further assistance.

  • Problem with HERE drive on Lumia 720 in India

    I had the preinstalled HERE drive app on my Lumia which was working fine. Yesterday store was showing updates and it also had an update for HERE drive. When I updated it through WiFi the app didn't open and kept returning to home screen. This is really irritating because before the update app was working fine but now after the update it isn't working and also after uninstalling it and trying to reinstall its not published on the store. Please Nokia sort this issue out as its very irritating and hassling. At least make previous app available or clear this mess.
    Solved!
    Go to Solution.

    Please use the search function on the forum before posting. As this is a known issue it has been posted on several times and also has been answered
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • Two problems with store

    The first one I'm having is with the app store. Whenever I choose a category it loads about halfway, then goes to nothing but a blank white screen. There is no error message nor any conflict that I have been able to find even after looking at the document showing common lsp conflicts. Does anyone know what could be causing this? I am running Windows 7 64bit, current iTunes.
    The other problem is that I purchased a movie, and the iTunes Extras do not appear anywhere, even in the movie folder. The movie is Red (2010). Will Apple credit a download for the missing Extras or am I stuck having paid for the content, but only recieving part?

    1 I downloaded an album and two of the songs had digital aritifacts, almost like skipping, in the songs. I cannot figure out how to report this to Apple ( I did use REPORT A PROBLEM and never heard back) for a refund.
    Contact the iTunes Store customer support department through the form at the bottom of their web page and explain the problem to them.
    2 I was trying to download several songs by different artists. So I chose the songs, and dragged them from the iTunes store into my PURCHASED folder. They then had a BUY SONG buttton next to each one listed in my purchased folder. I thought, "Cool," and kept adding a few more. When I was done, I clicked "BUY SONG" next to one of them, and TWO copies of the song were put into my PURCHASED folder instead of one.
    First, it's not a good idea to drag tracks into your Purchased Music folder. If you want to save them for future reference, create a standard playlist and drag the tracks there.
    Anyway, my guess is that you're seeing the purchased track and the original "pointer" track from the iTunes Store. Click on the tracks and I'll bet you'll see that one of each pair still shows the "buy" button; those you can just delete. If both seem to be full tracks, log into your iTunes Store account and check your Purchase History. That would show if you were charged twice for a track.

  • Problem With Ford Sync and Lumia 920

    I have a Ford Flex with Sync by Microsoft and the Nav screen. I was able to have Sync read incoming text messages and reply with short ones with my Samsung Focus. After pairing my Lumia 920 I no longer can do this. The message I get is that "Texting is not supported by this phone via Bluetooth". It seems like Nokia either forgot to add this feature or there is a bug in the phone.

    jam3 wrote:
    I have a 2010 Ford Fusion.  My wife and I both have Lumina 920's.  We have no trouble pairing the phones to and incoming calls work fine.   When we try to make outgoing calls, SYNC puts us in Privacy mode automatically -- so we can't hear the phone ring or the party we are calling answer.  We can take the phone out of privacy mode by touching the Privacy mode on the SYNC screen -- but we shouldn't have to.
    Does anyone have any suggestions as to how we fix this problem.  We try a master reset on the SYNC system and a soft reset on the phone.
    Same issue here (and same vehicle, except 2012), it is very annoying.  My 900 I had before and One X+ do not have this issue.  My first 920 had the camera die, so I replaced it.  This issue was present on both phones.  This has just been tested and is still and issue after all of the latest updates from MS and Nokia. 
    So, 93tid, why don't you STFU with your all-knowing air about what is and is NOT fixed!
    Moderator's Notes: This post was edited as some parts were offensive to other users of the forum. We do not allow offensive posts here in our forum.

  • Best sd card with class for my Lumia 520 in 32gb

    I want to know that which sd card I purchase of 16 gb or 32 gb that will satisfatorily work in my Lumia 520

    Welcome to the Linux world. I have been a Linux user for 10 years and I can tell you that you will get no support except from fellow users. Learn to use the Linux user boards and also google.
    This might help:
    Linux board
    put a memory card in the slot and run from the command line:
    sudo modprobe usb-storage
    If this solves your problem, try adding usb-storage to your /etc/modules file so that when your computer restarts it will automatically load the usb-storage module.
    You may even have to manually mount the memory card. Install gparted from apt-get and check if the memory card does not show up as an unmounted storage device...then you can manually mount it by using the command line. You may also have to edit the fstab entries to make it hot pluggable.
    Post back if you do not understand any part of this or need more help.

  • Problem with Store.getFolder()

    I'm just writing a little program for my Blackberry Pearl that listens for email messages (in Java) Here is the relevant code:
    public void messagesAdded(FolderEvent e) {
            //Lets get the added message
            Store store = Session.waitForDefaultSession().getStore();
            Folder folder = Store.getFolder("INBOX");
            Message msgs[] = folder.getMessages();
            Message msg = msgs[0];
            //Now lets find out who sent the message
            Address from = msg.getFrom();
            //If the message is from [email protected] then make the phone ring
            if(from.toString().equals("[email protected]")){
               InputStream is = getClass().getResourceAsStream("sound.wav");
               Player p = Manager.createPlayer("http://216.7.189.162/globe/realtones/appliance/phonesring.wav");
                p.start();
            else{
               InputStream is = getClass().getResourceAsStream("sound.wav");
               Player p = Manager.createPlayer("http://216.7.189.162/globe/realtones/appliance/phonesring.wav");
                p.start();
        }So the problem is that when I use Store.getFolder, it says that I can
    t use a non-static method in a static context. But even when I create new classes in new class files that are obviously non-static it still doesn't let me do it. What am i doing wrong?
    Thanks in advance

    Is your program a MIDlet?
    Regards, Darryl

  • Problem with store procedures and Hibernate

    I got some problem when I am trying to override INSERT, and UPDATE operations in Hibernate. My delete functions works fine, and everything works when i´m not override with my stored procedure, and I have no idea why. When I am trying to make an INSERT, everything seems to be fine but no data is being insert and no excpetion throws.
    When I am trying to make an UPDATE following excpetion throws:
    Could not synchronize database state with session
    org.hibernate.exception.GenericJDBCException: could not update: [labb6Hibernate.bil#18]
    Here is my hbm.xml file:
    <hibernate-mapping>
    <class catalog="Cars" name="labb6Hibernate.bil" table="Bil">
    <id name="idNum" type="java.lang.Integer">
    <column name="idNum"/>
    <generator class="identity"/>
    </id>
    <property name="marke" type="string">
    <column length="10" name="Marke" not-null="true"/>
    </property>
    <property name="modell" type="string">
    <column length="10" name="Modell" not-null="true"/>
    </property>
    <property name="arsmodell" type="string">
    <column length="4" name="Arsmodell" not-null="true"/>
    </property>
    <sql-insert callable="true"> { call insertCars(?,?,?) } </sql-insert>
    <sql-update callable="true"> { call updateCars(?,?,?) </sql-update>
    <sql-delete callable="true"> { call deleteCars(?) } </sql-delete>
    </class>
    Here is my UPDATE code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    int s = Integer.parseInt(idTxt.getText());
    bil Bil = (bil) session.get(bil.class, s);
    Bil.setIdNum(s);
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.update(Bil);
    session.getTransaction().commit();
    session.close();
    Here is my INSERT code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    bil Bil = new bil();
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.save(Bil);
    session.getTransaction().commit();
    session.close();
    Does anyone have an idea what is wrong in my code?

    I got some problem when I am trying to override INSERT, and UPDATE operations in Hibernate. My delete functions works fine, and everything works when i´m not override with my stored procedure, and I have no idea why. When I am trying to make an INSERT, everything seems to be fine but no data is being insert and no excpetion throws.
    When I am trying to make an UPDATE following excpetion throws:
    Could not synchronize database state with session
    org.hibernate.exception.GenericJDBCException: could not update: [labb6Hibernate.bil#18]
    Here is my hbm.xml file:
    <hibernate-mapping>
    <class catalog="Cars" name="labb6Hibernate.bil" table="Bil">
    <id name="idNum" type="java.lang.Integer">
    <column name="idNum"/>
    <generator class="identity"/>
    </id>
    <property name="marke" type="string">
    <column length="10" name="Marke" not-null="true"/>
    </property>
    <property name="modell" type="string">
    <column length="10" name="Modell" not-null="true"/>
    </property>
    <property name="arsmodell" type="string">
    <column length="4" name="Arsmodell" not-null="true"/>
    </property>
    <sql-insert callable="true"> { call insertCars(?,?,?) } </sql-insert>
    <sql-update callable="true"> { call updateCars(?,?,?) </sql-update>
    <sql-delete callable="true"> { call deleteCars(?) } </sql-delete>
    </class>
    Here is my UPDATE code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    int s = Integer.parseInt(idTxt.getText());
    bil Bil = (bil) session.get(bil.class, s);
    Bil.setIdNum(s);
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.update(Bil);
    session.getTransaction().commit();
    session.close();
    Here is my INSERT code:
    Session session = MyHibernateUtil.getSessionFactory().openSession();
    session.beginTransaction();
    bil Bil = new bil();
    Bil.setMarke(markeTxt.getText());
    Bil.setModell(modellTxt.getText());
    Bil.setArsmodell(arsmodellTxt.getText());
    session.save(Bil);
    session.getTransaction().commit();
    session.close();
    Does anyone have an idea what is wrong in my code?

  • Problem with the Update Nokia Lumia 620

    The update was initialized on my Nokia Lumia 620 that I bought yesterday. When it started the phone was connected to WiFi. However, after 10 minutes I thought it stuck so I put the battery out and in again. But the update started again. The WiFi was still on. I waited an hour but nothing happened so again I put the battery out and in. Later the WiFi connection was shut down and the update still going. Later I tried to put the battery out and in all over again. I left the phone for the night, it lost all the battery so I plugged the charger in it and then the update started again! I have the 3G internet purchased, so when it's not on WiFi then it should be working. So my question is if the update is really going on (since 4am, that is almost 4 hours till now) or is something wrong. How long can it take on 3G in the situation I described? Will it ever end or should I go and return it to the service for them to fix it? Please help me! It's really urgent!

    Update is possible thru' WiFi only.. It may take in excess of an hour for the whole update process to complete ..so once you start it (thru' WiFi) just leave it .. Don't go on removing the battery all the time ...Keep the phone on charging when you update. Additionally you may have settings-->WiFi--advanced ..and select 'Keep WiFi on when screen times out..' .
    If you still get the problem visit Nokia Care to get it updated. 

  • Problem with display of nokia lumia 1320

    My lumia 1320 display has broken,,but the phone is still 100 percentage functional ,,,but there seems to be a lot of cracks on the display...so...what should i do???
    should i replace display or digitizer or front glass screen lense cover...please help

    Hi, as this is the official discussion forum, we cannot discuss warranty voiding actions such as self repair.
    What I would suggest anyway, is that you bring it to a Nokia care point to have it repaired. It will cost you, but you get it professionally done.
    Good luck!

  • Problem with store app in nokia 302

    i can't open store app in my nokia 302 after i restore the phone , when i try to open ,it just open for 2 sec. Then close automatically

    Hi Alenmanuel,
    Welcome to Nokia Discussions!
    Try to check your phone configuration settings by going to Menu> Settings> Configuration. Or try to download the necessary settings from your network provider.
    Good luck

Maybe you are looking for