How to Restrict Apps to use Mobile Data in Nokia X...

Hi Friends,
Can any one shared me some information about Data Usage in Nokia X as i want to save Mobile data. Is there any option to restrict other applications to use mobile data. (for example, i am using WhatsApp and Facebook in my mobile but most of the data is used by Facebook so i want so rescrict facebook to not using mobile data and want Whatsapp to use).
Please Suggest me on this.
Thanks,
DVHC

What you can do is..
Go to settings>>Data Counter>>
Now select facebook...And scroll down..
Just Check the box...Restrict Background Data..
And its done..
Do it for all app which you dont Use...and save more data..

Similar Messages

  • How to stop apps from using cellular data?

    When I'm out traveling I sometimes enjoy gaming on my iPhone 3G.
    Recently I noticed that one of the games (And other apps which "shouldnt" be doing cellular data) I've been playing is downloading cellular data (For in-game commercials!) even though I never gave it permission to do that. I also sometimes see the data network icon animating some times without having any apps running..
    The thing is, I live in Norway and cellular data traffic is very expensive here. I want to have full control and give/deny access to cellular data in the moment, alternatively turn it completely off.
    Is there any way to turn off the celluar data traffic (And hopefully an easy way)?

    Turn on Airplane Mode and turn off WiFi in Settings.

  • I updated to 7.0.5.  I can't turn off apps from using cellular data. How to turn it off? Many thanks in advance!

    I updated to 7.0.5 just now, now I can't turn off apps from using cellular data, I turn them off but  as soon as I back out they automatically turn back on.  How to turn it off? Many thanks in advance!

    Yes i did that, but when i went back to my home screen all the applications that i've choose to not using data just automatically activate themselves.... ><

  • Send and receive messages on social apps using mobile data

    guys i cant seem to be able to use apps like whatsapp, fb messenger or hike to send or receive messages when connected over mobile data network. the only app working is hangouts. however all seem to be working over wifi. i use a vodafone 3g connection. please suggest some remedy as i am at my wits end. for whatsapp i cant even verify my number using mobile data connectivity. data is working for other purposes like downloading through google play or playing videos or searching the web.

    Hi AraniHalder
    Welcome to the Community.
    You forgot to mention the Lenovo model you are using and it's firmware build number(Settings->About phone....)
    Regards.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as ''ACCEPT AS SOLUTION"! 
    Unsolicited PM's will not be answered! ....Please post your question/s in the appropriate forum board.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • How can i turn off apps for using cellular data??????

    I. Having a problem of turning off apps from using my data. Whenever  i close it, all the apps just automatically activate them when i go back to my home screen or i go to another page. Can anybody give me a solution??? Thanks in advance!!!! >&lt;

    Yes i did that, but when i went back to my home screen all the applications that i've choose to not using data just automatically activate themselves.... ><

  • Why can't I disable certain apps from using cellular data?

    (iPhone 4 on iOS 7.0.4)
    I can't seem to turn off the ability for certain apps to use my cellular in the "Cellular" menu.  I would usually to go Settings>Cellular and begin turning on/off app from using cellular.  But now, I can't turn them off.  I would switch them off and turn off cellular, then I would turn the "cellular" option on and the same apps would have their switches on instead of off.  They would switch on automatically without my consent. 
    Before you say that maybe I have "allow changes" or "don't allow changes" on the cellular data use.  Even if I had one or the other, the manual changes gets ignored.
    I have to have the "cellular restriction use" to allow changes to try to turn off the individual apps that have cellular data on. But the second I leave the sub menu or turn off and then on the cellular data, those same individual apps switch on by them selves. 
    What am I missing?  What is the new changes that isn't allowing me to decided which apps can use cellular data and which can't?
    My only guess is that it's a problem based on 7.0.4.  I never had this problem before.  Sometimes though, I would have "Don't Allow Changes" locked on cellular usage, but some how manage to have the ability to turn them on and off where I shoulded.  They should be "greyed" out.

    Yes. But you may still be able to download compatible versions.  You will have to download the App to iTunes on a computer or another device that does support the App using the same Apple Id you have on your iPad.  With that done you can follow these instructions from your iPad to get a compatible version:
    App Store: Install the latest compatible version of an app
    http://support.apple.com/kb/ht5919

  • Use Mobile Data For: Settings - Why does Settings need a cellular data connection?

    iPhone 5 iOS 8.1
    Settings > Mobile > Use Mobile Data For: Settings
    Just curious, why does the iPhone need this turned on? Why does the settings app need a cellular mobile data connection?
    If you turn it off, you're pestered to turn it on every time you go into settings?

    Because, that's the way Siri works...it needs an Internet connection...requests are sent to Apple's servers. No Internet, no Siri.

  • How to restrict values displayed using a select-options

    Can someone please tell me how to restrict values displayed using a select-options.
    Example- in my table I have 100 entries. However when the user will click on the required field- I want to be display only 25 options based on a given value of another field in the table.
    Thanks,
    Mahesh.

    get the screen value for the selectd field  using the fm
    DYNP_VALUES_READ.
    for that value filter the internal table values and pass the table to f4 help of the field.
    below code will help u
    write the f4 help for the field.
    At Selection Screen on value request                                *
    F4 help for Corporate
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_CORP.
    Get Corporates for selected division
      PERFORM GET_CORP.
      PERFORM F4HELP_CORP.
    *&      Form  GET_CORP
    Get the corporates for the selected division
    There are no interface parameters to be passed to this routine
    FORM GET_CORP .
    Table for conglomerate
      DATA:
        LT_CONG      LIKE STANDARD TABLE OF FS_CORP,
    Fields of current screen
        LFS_DYNPREAD TYPE DYNPREAD,
    Table for current Screen fields
        LT_DYNPREAD  LIKE STANDARD TABLE OF LFS_DYNPREAD.
      LFS_DYNPREAD-FIELDNAME = 'P_DIV'.
      APPEND LFS_DYNPREAD TO LT_DYNPREAD.
    Get selection screen value for division
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          DYNAME               = SY-REPID
          DYNUMB               = SY-DYNNR
        TABLES
          DYNPFIELDS           = LT_DYNPREAD
        EXCEPTIONS
          INVALID_ABAPWORKAREA = 1
          INVALID_DYNPROFIELD  = 2
          INVALID_DYNPRONAME   = 3
          INVALID_DYNPRONUMMER = 4
          INVALID_REQUEST      = 5
          NO_FIELDDESCRIPTION  = 6
          INVALID_PARAMETER    = 7
          UNDEFIND_ERROR       = 8
          DOUBLE_CONVERSION    = 9
          STEPL_NOT_FOUND      = 10
          OTHERS               = 11.
      IF SY-SUBRC EQ 0.
        READ TABLE LT_DYNPREAD INTO LFS_DYNPREAD INDEX 1.
        IF SY-SUBRC EQ 0.
          P_DIV = LFS_DYNPREAD-FIELDVALUE.
        ENDIF.                             " IF SY-SUBRC EQ 0
      ENDIF.                               " IF SY-SUBRC EQ 0
      REFRESH T_CORP.
    Get the conglomerate for the selected division
      SELECT KUNNR                         " Conglomerate
        FROM KNVH
        INTO TABLE  LT_CONG
       WHERE HITYP  EQ C_HITYP
         AND VKORG  EQ C_VKORG
         AND VTWEG  EQ C_VTWEG
         AND SPART  EQ P_DIV
         AND DATAB  LE SY-DATUM
         AND DATBI  GE SY-DATUM
         AND HKUNNR EQ SPACE.
      IF SY-SUBRC EQ 0.
        SORT LT_CONG BY KUNNR.
        DELETE ADJACENT DUPLICATES FROM LT_CONG
                        COMPARING KUNNR.
    Get the corporates for the selected conglomerates
        SELECT KUNNR                       " Customer Number
          FROM KNVH
          INTO TABLE  T_CORP
           FOR ALL ENTRIES IN LT_CONG
         WHERE HITYP  EQ C_HITYP
           AND VKORG  EQ C_VKORG
           AND VTWEG  EQ C_VTWEG
           AND SPART  EQ P_DIV
           AND DATAB  LE SY-DATUM
           AND DATBI  GE SY-DATUM
           AND HKUNNR EQ LT_CONG-KUNNR.
        IF SY-SUBRC NE 0.
          CLEAR: SSCRFIELDS.
          MESSAGE I531(0U) WITH TEXT-005.
          STOP.
        ENDIF.                             " IF SY-SUBRC NE 0
      ELSE.
        CLEAR: SSCRFIELDS.
        MESSAGE I531(0U) WITH TEXT-004.
        STOP.
      ENDIF.                               " IF SY-SUBRC EQ 0
    ENDFORM.                               " GET_CORP
    *&      Form  F4HELP_CORP
    F4 help for corporate
    There are no interface parameters to be passed to this routine
    FORM F4HELP_CORP .
    F4 help for corporate
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          RETFIELD        = 'KUNNR'
          DYNPPROG        = 'Z_EXCESS_USAGE'
          DYNPNR          = '1000'
          DYNPROFIELD     = 'P_CORP'
          VALUE_ORG       = 'S'
        TABLES
          VALUE_TAB       = T_CORP
        EXCEPTIONS
          PARAMETER_ERROR = 1
          NO_VALUES_FOUND = 2
          OTHERS          = 3.
      IF SY-SUBRC EQ 0.
    Do nothing
      ENDIF.                               " IF SY-SUBRC EQ 0
    ENDFORM.                               " F4HELP_CORP

  • Search not working when using mobile data

    DescriptionWhen using mobile data, every time I try to search for tracks, I get the 'error occurred' message. A more detailed description, using numbered steps1. Be using mobile data as opposed to wifi2. Use search function   What I expected to happenSee my search results What actually happenedSee 'an error occurred' message. Important - even though the screenshot shows 1 'bar' of signal on 3G, this problem occurs regardless of signal level. I've tried to search using full-strength 4G and still seen this problem. My iPad/iPhone modeliPhone 6 / 64GB Device’s Operating SystemiOS 8.4 (12H143) Is your device jailbroken?No Approximately how many playlists do you have?More than 200 My mobile Spotify version3.5.0.1069 My desktop Spotify version (if applicable)1.0.10.107.gd0dfca3a My provider and countryEE UK My usernametombot18 Do you have any screenshots you can attach to more clearly explain your issue?See attached screenshot 

    I have the same problem.... anything fix it?

  • IPhone 5 unable to use mobile data, only FaceTime and passbook listed

    my iPhone 5 is unable to use mobile data, only passbook and face time are listed, none of my apps. I have tried re setting and this didn't work, mobile data is switched on

    Hi Lydia,
    It may help to force close all open apps and reset your iPhone.
    Force an app to close in iOS
    http://support.apple.com/en-us/HT5137
    Turn your iOS device off and on (restart) and reset
    http://support.apple.com/en-us/HT1430
    If you still can't enable mobile data for your various apps, the next step would be to reinstall iOS on your device by placing it in Recovery Mode, then choosing Update in iTunes.
    Make sure that you have iTunes 12 or later on your computer.
    Put your device in recovery mode.
    When you get the option to restore or update, select Update. This will reinstall iOS without erasing your data.
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on
    https://support.apple.com/en-us/HT201412
    Sincerely,
    Allen

  • Using mobile data connection for updates

    How can I update my Nokia Lumia 925 using mobile data connection to black software update?

    ..or see if THIS is of any help... but will be at the cost of erasing all data from the phone.

  • Can i use imessage on iphone 4 using mobile data

    Can i use imessage and facetiome using mobile data? in 3G. on iphone 4.

    Hi No this only works on iPhones from 4 S with ios 8 Cheers Brian

  • Does it cost to use mobile data

    I was wondering whether it costs money to use mobile data because many people say it does but I hav been using it nd it hasn't taken any money off
    So I just wanted to know if mobile data actually costs money

    Your cellular carrier charges for using mobile data. Depending on the plan you have you buy a certain amount of data, and when you use it up you pay for more. I can't be more specific, because there are several hundred cellular carriers that support the iPhone, and each of them has different plans. So the best thing for you to do is to call your carrier and ask, or log in to your carrier's web site and review your account.

  • HT1338 I have forgotten how to place apps commonly used on my bar?

    I have forgotten how to place apps commonly used on my bar?

    Drag them there. Or, if they are open, move the icon to a place other than where it is. Or, right-click on the dock icon, select Options, then Keep In Dock.

  • HT5622 how to purchase apps without using credit cards

    how to purchase apps without using credit cards

    If they are available in your country, you can use Gift Cards. Basically a prepaid card of a specified amount you can redeem to your iTunes account to get the balance for it added to your account.
    Then you can use that balance to buy things in iTunes, iBooks, and App Stores.
    http://support.apple.com/kb/ht1574
    If available in your country, thye can be bought form most convenience and electronic stores.

Maybe you are looking for

  • How can I change the path location for an entire album?

    Hi everyone: If I move a folder containing an album to another location for organizational purposes, every song in the album is now lost in the library. As I know it there are two options: 1. Manually open each individual song info and find the locat

  • Can't Open Any File Formats

    I've read some of the posts that seem to be related to my problem, but the solutions provided aren't helping me. I can't import any movies into iMovie, regardless of format. I have converted my .MOVs to AVI, MPG4, etc. If I try to "drag media here to

  • Moving from DPP/iPhoto to Aperture

    With the price cut I succumbed and bought Aperture and am pretty pleased with it. I love the workflow - miles better than before. Now though I have to decide how I am going to deal with all my old images. I've had my Canon 350D for about a year now a

  • FaceTime will not complete calls on MBA

    Ever since activating Facetime on my iPhone 4S (linked to PTN), incoming and outgoing Facetime calls to my MBA (linked to my AppleID) will not complete. I had initially had my appleID and PTN linked to the iPhone so all Facetime calls would go to the

  • Flash player on consoles: wii + ps3 etc...

    Hi guys. Googled this but the info is very diverse. I want to make my website flash educational games available to students through TV consoles such as wii etc... Does anybody have solid info as to their support. wii - I think somebody mentioned down