E52 -no incomihg calls from numbers that are not i...

Hello everybody!
Greatly appreciate if someone could advise how to solve the problem - phone doesn't receive the calls from anyone whose number is not in the contacts and there is some strange icon (like blue receiver). Has anybody faced such trouble? How to help this?

Go to Applications. Open Adv. Comm. Manager. Check "No filter/Off"
500.21.009
02-06-2010
RM-346
Nokia E71-1 (27)

Similar Messages

  • Is there a way to change the settings on my iPhone so I cannot receive calls from people who are not in my contacts?

    Okay so I barely use the calling/phone app (the one that comes on it) on my iPhone but most of the calls I get are from random people who I do not know who have the wrong number asking for the same people! I block them all I can but they're not always the same number there's different numbers all the time it's extremely annoying and driving me crazy, the one person left a voice mail again asking for the same person so I called them back and they denied they ever called I kept telling them I got a voicemail from that number and they kept saying no one called from that number. I literally cannot take this anymore. I remember seeing somewhere when I was setting up my phone where I can set it so people cannot call you if they're not in your contacts list. Is there a way to do that? If there is could you please let me know and how to do so? I seriously really need this please. I have an iPhone 4s that's on ios 7.1.2 if that helps any. Thanks so much.

    hi, this thread already deals with the issue:
    How can I prevent getting calls from number that are not in my address book?

  • How do I include those empployee numbers that are not 8 digits?

    Hello all again.
    My script currently doesn't find those employee numbers that are NOT 8 digits (some emp nos are 6, 7, 9) when doing comparisons. I've tried LPAD but it still doesn't find. Can anybody suggest a reason for this? I can post my whole script if you want but basically it doesn't match record in my temp table (SU_TEMPLOYEE_DETAILS):
      SELECT std_hire_date, std_last_name, std_sex, std_date_of_birth,
                 std_email_address, std_emp_status,
                 LPAD (std_employee_number, 8, '0') std_employee_number,
               --  std_employee_number,
                 std_first_name, std_marital_status, std_middle_names,
                 std_nationality, std_title, std_national_identifier,
                 std_address_line1, std_address_line2, std_address_line3,
                 std_address_line4, std_post_code, std_telephone_1, std_country,
                         std_location_id,         LPAD (std_supervisor_number, 8, '0') std_supervisor_number
          FROM   SU_TEMPLOYEE_DETAILS
           WHERE  std_employee_number = :p_emp_number..with the existing record in Production instance:
                 SELECT DISTINCT per.person_id, per.business_group_id, per.last_name,
                          per.start_date, per.date_of_birth, per.email_address,
                         --LPAD (per.employee_number, 8, '0') employee_number,
                        per.employee_number,
                          per.first_name,
                          per.marital_status, per.middle_names, per.nationality,
                          per.national_identifier, per.sex, per.title,
                          padd.address_id, padd.primary_flag, padd.address_line1,
                          padd.address_line2, padd.address_line3,
                          padd.town_or_city, padd.postal_code,
                          padd.telephone_number_1, paas.assignment_id,
                          paas.assignment_number, paas.object_version_number,
                          paas.effective_start_date, paas.effective_end_date,
                          paas.job_id, paas.position_id, paas.location_id,
                          paas.organization_id, paas.assignment_type,
                          paas.supervisor_id, paas.default_code_comb_id,
                          paas.set_of_books_id, paas.period_of_service_id
                     FROM per_all_people_f per,
                          per_all_assignments_f paas,
                          per_addresses padd
                    WHERE padd.person_id(+) = per.person_id
                      AND paas.person_id(+) = per.person_id
                      AND per.employee_number LIKE 'C%'-- :p_emp_number 
                          AND per.national_identifier = :p_ni_number
                          AND  REGEXP_LIKE(per.employee_number, '[[:alpha:]]');The Employee Number is 7 digits long (0000016). But I need the script to match its record where it may be 000016 or 00000016 in Production. Is this possible?
    Many thanks for looking..
    Steven

    JackyWhite wrote:
    My script currently doesn't find those employee numbers that are NOT 8 digits (some emp nos are 6, 7, 9) when doing comparisons. I've tried LPAD but it still doesn't find. Can anybody suggest a reason for this? I can post my whole script if you want but basically it doesn't match record in my temp table (SU_TEMPLOYEE_DETAILS):
    The Employee Number is 7 digits long (0000016). But I need the script to match its record where it may be 000016 or 00000016 in Production. Is this possible? I would like to use the TRIM Function here rather than a simple LPAD (with hard coded length) especially if the length of the column std_employee number varies based on the leading zeroes. Something like:
    SQL> WITH test_tab AS
      2       (SELECT '000016' col
      3          FROM DUAL
      4        UNION ALL
      5        SELECT '10000016'
      6          FROM DUAL
      7        UNION ALL
      8        SELECT '00000016'
      9          FROM DUAL)
    10  -- "end of test data "
    11  SELECT col, TRIM (LEADING '0' FROM col) changed_col_2
    12    FROM test_tab
    13  /
    COL      CHANGED_
    000016   16
    10000016 10000016
    00000016 16
    3 rows selected.
    SQL> variable param VARCHAR2(30);
    SQL> exec :param := '00016';
    PL/SQL procedure successfully completed.
    SQL>  WITH test_tab AS
      2        (SELECT '000016' col
      3           FROM DUAL
      4         UNION ALL
      5         SELECT '10000016'
      6           FROM DUAL
      7         UNION ALL
      8         SELECT '00000016'
      9           FROM DUAL)
    10   -- "end of test data "
    11   SELECT col, TRIM (LEADING '0' FROM col) changed_col_2
    12     FROM test_tab
    13    WHERE TRIM (LEADING '0' FROM col) = TRIM (LEADING '0' FROM :param)
    14   /
    COL      CHANGED_
    000016   16
    00000016 16
    2 rows selected.
    SQL> exec :param := '016';
    PL/SQL procedure successfully completed.
    SQL>  WITH test_tab AS
      2        (SELECT '000016' col
      3           FROM DUAL
      4         UNION ALL
      5         SELECT '10000016'
      6           FROM DUAL
      7         UNION ALL
      8         SELECT '00000016'
      9           FROM DUAL)
    10   -- "end of test data "
    11   SELECT col, TRIM (LEADING '0' FROM col) changed_col_2
    12     FROM test_tab
    13    WHERE TRIM (LEADING '0' FROM col) = TRIM (LEADING '0' FROM :param)
    14   /
    COL      CHANGED_
    000016   16
    00000016 16
    2 rows selected.
    SQL> So your where clause will become something like:
    WHERE TRIM (LEADING '0' FROM std_employee_number) =
                                              TRIM (LEADING '0' FROM :p_emp_number)Hope this helps.
    Regards,
    Jo

  • Removing songs from iTunes, that are not saved on the computer

    Hey guys.
    First of all i would like to thank you for reading my post and trying to help.
    Anyways, i rent an external harddrive from one of my friends, and he had a huge amount of songs, that i would like to get on my computer. Stupid as i am, i started downloading directly from the harddrive, which result in a lot of songs in my iTunes, that are not saved in the computer, and when i remove the external harddrive from my computer, all the songs cannot play. So after that, i saved them on my computer, and tried getting them into iTunes once again. This has resulted in a double of every songs. Which is quite much.. Are there any ways, that i can do a "Clean-up" and remove all the songs that are not saved on my computer or not working or something like that?
    I appreciate your help. Thanks in advance.

    Hi,
    If your previous library was matched on you your computer, you can retrieve your music from itunes match on your computer.
    Sign in to match and add your computer. Your library will now show all the music that is in match. You should be able to download all your music back on to your computer.
    Jim

  • Roaming Profiles hiding desktop shortcuts from programs that are not installed on PC

    Hi Technet, 
    I am in the middle of a GPO review and I am making a few changes to the roaming profile policy on my network. It is currently working but I have come across an issue that I am unsure how to correct. I am trying to hide desktop shortcut
    that are not installed on the end users PC while roaming profiles is enabled. 
    Let me explain further
    Let’s say I have two PC but with different program installed (as an example one PC has Adobe Photoshop and one does not) I want the end user to be able to log into both PC and only see desktop shortcuts that match the software which is
    installed on that PC but while using a roaming profile. Currently when the user logs into the PC that doesn’t have Adobe Photoshop installed they are presented with a blank desktop icon as the roaming profile has cached this icon from the first PC. Is there
    a way to hide program icons that do not exist on another PC while still using roaming profiles.     
    Any assistance would be most appreciated. 
    Thanks Nick 

    > Let’s say I have two PC but with different program installed (as an
    > example one PC has Adobe Photoshop and one does not) I want the end user
    > to be able to log into both PC and only see desktop shortcuts that match
    > the software which is installed on that PC but while using a roaming
    > profile.
    Remove all related shortcuts from the user's desktop dir and recreate
    them on the all users desktop dir. These will NOT roam :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • TS1292 There are two numbers that are not visible in the middle of the code What can I do?

    There are two digits that are not visible in the middle of the itune code. How can I still access this card?

    Click here and request assistance, supplying as much of the code as you can.
    (74408)

  • I am getting many days Called US holidays that are not US holidays and ones I do not celebrate.  How can I manage this list of days

    I am getting many days showing up in the US holiday Ca;endar that are not US holidays and days that I do not celebrate.  How can I manage this list

    You could also go through your messages app and see if you have videos or photos in there. Delete unwanted emails and empty the trash in each account. If you are trying to update over wifi try doing it by plugging into iTunes.
    If you need more space for an iOS update - Apple Support

  • Why won't any videos load from safari that are not related to YouTube work?

    I'm trying to load video replies from ask fm but they are not loading, and it's the same with all other videos that aren't related to YouTube. Is there some sort of software or programme that I need to download?

    https://itunes.apple.com/us/app/skyfire-web-browser-your-path/id384941497?mt=8
    http://www.guidingtech.com/16698/play-flash-videos-iphone-ipad-ipod-touch/

  • How do you delete songs from iphone5, that are not in your iTunes library on the computer?! I have the spot unchecked where it says show all music and I still have songs on my iPhone that I want gone, but they're not in my iTunes library...HELP

    I have a iPhone 5 with the most up to date software and I have songs appearing on my phone that I've deleted prior too from iTunes on the computer. How do I remove them from my phone, I've tried the left to right swipe and that just plays the songs! :/ Can anyone help me, I'd be forever grateful if I didn't have to go back to the store! I went I today abc he unchecked the show all music and there's still songs I don't want on my iPhone! :(

    The answer to the question in the title of the thread is yes, but it is not necessarily a good idea. At some point you are likely to find you need to restore your iPod for one reason or another, or it could be lost, stolen or damaged. If your songs aren't on your computer, and backed up too, then you will be less than happy.
    tt2

  • How do I delete songs from iPhone that are not in my iTunes library. "Swiping" to delete it does not work as the delete option does not appear.

    Just tried to remove all songs by changing synch entire music library to selected playlists, didn't select anything and says 0 songs at top, however the 5 **** songs that I'm trying to remove are still left on my phone!! This is so stupid but bugging me so much!!

    Hi, Jixx0615.
    Thanks for using Apple Support Communities.
    When you try to delete from a device running iOS 7, make sure to hold your finger on the song for a few seconds before swiping to the left. This should expose the red Delete button.
    Try Again,
    -Marcus

  • Thunderbird is showing me messages from Yahoo that are not from Yahoo.

    I have 7 email accounts using Thunderbird and it normally works well, but while normal mail through Yahoo works fine, I am getting a hundred spams a day addressed to my Yahoo account but not showing up on Yahoo's webmail. They seem to have found their way into Thunderbird without passing through any mail servers I am signed up with.
    Here the headers from one of them:
    From - Thu Apr 02 14:30:08 2015
    X-Account-Key: account1
    X-UIDL: ABnnjkQAAALxVR2I9gdW6D2X+Ro
    X-Mozilla-Status: 0001
    X-Mozilla-Status2: 00000000
    X-Mozilla-Keys:
    X-Apparently-To: [email protected]; Thu, 02 Apr 2015 18:22:46 +0000
    X-YahooFilteredBulk: 173.246.181.56
    Received-SPF: pass (domain of todayasseenontv.com designates 173.246.181.56 as permitted sender)
    X-YMailISG: 6SAfCL8WLDuFWJyCetTLHyeMJhsDF5fNLzBG82DtmHWdJ27u
    21eyudITujl.csR29EMxApxWZldSwLxuPcoQ2aXHw_SmO_WBJOEnHApIRcrw
    L3_ApwFyKMjNbf8GcW.PTitHZ.Tx8ASswFVlAeK42KsuSZV6aUo6OiSskgy7
    wJO0wq25ApUKS3GEot7S2rNZhsPZr4tRq3QeXPoh8oRO_vsgbi0KMGvVJKz0
    B3rvBJdnPlfJJ4nTZ.kAE2x916atEyIsipogXStixRtJAmQOkWrbMXylu7IA
    X4YvElb_mZy7eN_5oNBzfBxx3rZHrzIb9n6qg014ulKi6L2HHLsd2A.ANWP3
    Gv5oNf5E3.hCDlBqbD3749_QCoOOK2qnmg7r0aA0DmGQLQ0p.cCf3KAUX7zQ
    b0_UqoJQ_fvgCVjELGmX14HDZJ2ndv2ERf3L6eTlpBgOQVIyKnqpMpUIgiLb
    f23.66FXDT4fEJ21n3dPVnfhCT1UVCHfCDonERoEoty.FI45atvi_0mErDkl
    VyXaCDwbtM1.n9.QJC17_ZDfFxx8EmV2AY4AbVq2WwBIkO.BFk00mTrFDGR.
    0umniSJeeBmrUHKC5Lsf3wOBXmbaNgY6__8OlFXpIJ7TSeEv4wetwkyN6hwI
    8jbBNamihYNY40I4cxbVFi3usD5uqWhWTA2Mkqqw1vKjaIaQOKbf2z9RbMxz
    TUm49WHs2g7YTpXZq.CtX9EwzvbzJFYg90PCiR77zMEqiZhEJ7C._64IjQtG
    DgWmLs0aXvZc6pqmCFtNv_xKGFYNTUqDaXzgXqPop9Oicn3LL4AYCjoY1pOk
    tRsEZ3WdPrSV6s0KsH7Egoik1087OOD0aaPwYWfd8jx5CtplCsH0VlV41YCV
    HsFsj9LfZFP.sfWFbj3Y_igiF_X0GwgNep5lEnIm9AuNRrobUtoFBDyucoP7
    bRNOrjabUZvA75BIdZfHcJLHsj.6bO3L4UqWlCydQYXAu4kcs0UCE6_hpc5H
    2lW7Xr0ZDOGKbWmFdhxL9U0I54i.5z3Tzi7.W7TnSRhIzG99m7qQmlyBnGlL
    .eg3hk4QxijV9zCTzSHQns6ROAqijCbPXZkSSITdzBU33WJR7_mzWYf.258.
    TArr5hSMRlRUTHMevS3hlONPEa1itnRBgfGW0.LB1zLZ_ul8yqLRRWBKL0cq
    4EpheYhml9T2FbxuTiSnXeR7KXovED1_u6ZKqycPGH3lU2cmbtQrCpO_cFqp
    yDSzqTaHd8oksgIbDane5mHrXleLisWIzdfmp31CABoBUej9KiWLO9dhCtH2
    ryyeFnOz5YNX4XoKuk8C42HyzShyyQCsFJFmAsPlxVCcZBxz95aL6buKb5yN
    2EC3WQr6VAPGoMf63psCtpVq5vJh8RTlPtOigo0Gw8ZwFP0kJusLrIMFy7da
    nOGom3L9aCKCabLKp2eheJpC__rllfQbnsh0qBmtT.u3nXkD1N0Yl8bL1f4n
    H3K02aFdRKreFetsdv4dQ44rq8VHikmn6u4MqhllWuUR.khvOuaqf9iR8CLa
    JHzwGHxbgpSM9LYxj3clIz4jwFh.1KESRviHyiY-
    X-Originating-IP: [173.246.181.56]
    Authentication-Results: mta1451.mail.ne1.yahoo.com from=todayasseenontv.com; domainkeys=pass (ok); from=todayasseenontv.com; dkim=pass (ok)
    Received: from 127.0.0.1 (EHLO host-6835318.todayasseenontv.com) (173.246.181.56)
    by mta1451.mail.ne1.yahoo.com with SMTP; Thu, 02 Apr 2015 18:22:46 +0000
    DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; s=todayasseenontv; d=todayasseenontv.com;
    h=Mime-Version:From:To:List-Unsubscribe:Reply-To:Message-ID:Subject:Date:Content-Type; [email protected];
    bh=sMDUDzIV0+Ycf0h5XP9kJBYgFYk=;
    b=YNwU0OEo153o5TfIYUjAHwvcxILKBCjfrapoAOaVNNl7SEulGSm0q87jDuQP0KeVgSQzvzORSbZs
    PrfymCEbKE5+WQx9DqtBqpdxEhMm1vZWUG8C32mKYyITInBZQQRxuUxjXW7kA/AVnFlTRBeuYQCb
    L3yqDr1Jmy0OL2JT+vo=
    DomainKey-Signature: a=rsa-sha1; c=nofws; q=dns; s=todayasseenontv; d=todayasseenontv.com;
    b=fcMFF/w1OtN2yRt9z9SVaKqaljJA/GkQ3kFFgte1jtAEA07PtCqd3QTcIJv8QCF0KzncibNdo3yP
    BblyIV4GEyb4ZkaALls7rwv7vYESNi7PFFnRvU7xkzoHF6In87HsPCUrQzYhYvKe5wC010GZRM2J
    iMSVWTFZGNEMbzXwITw=;
    Mime-Version: 1.0
    From: "As Seen On TV" <[email protected]>
    To: <[email protected]>
    List-Unsubscribe: <http://todayasseenontv.com/297024430710>
    Reply-To: <kkdjaeqhyssewgsbxviebskygsbssstjrsbxcxisksknysumssbcotpjfsbjbsaqq@todayasseenontv.com>
    Message-ID: <kkdjaeqhyssewgsbxviebskygsbssstjrsbxcxisksknysumssbcotpjfsbjbsaqq@todayasseenontv.com>
    Subject: [Bulk] Why you should consider As Seen on TV products
    Date: Thu, 02 Apr 2015 11:22:45 -0700
    Content-Type: text/html;

    Doh!
    Some are there, most are in the trash folder, which makes sense since I deleted them in thunderbird.
    It is curious that TB caught some of them before the web app showed them, but I'll leave that as one of the mysteries of email.

  • Why does Siri not able to find phone numbers that are not listed in contacts

    What could be dragging my battery life down to less than eight hours per day with minimal usage

    Hi darceyam,
    I'm sorry to hear you are having these issues with iCloud Drive. If you are having issues accesssing your previous files, you may find the following article helpful:
    What if I don't see all my files at iCloud.com?
    Any documents that you've already stored in iCloud are automatically moved to iCloud Drive when you upgrade. iCloud.com will display these files in the new iCloud Drive app in addition to the iWork apps (Pages, Numbers, and Keynote) that you're used to seeing.
    If you don’t see your files in the iWork apps or in iCloud Drive, then make sure that you set up iCloud Drive on all of your devices.
    Get help using iCloud Drive - Apple Support
    Regards,
    - Brenden

  • I keep receiving verification emails from apple that are not from me

    Hi, I've received more than 20 emails from [email protected] in the same day to verify my email address, the messages are in French, and according to google translate:
    "Dear (Not me),
    You entered (my Gmail address missing the dots) as contact email address for your Apple ID. To complete the process, we need to verify that it is your email address. Just click the link below and log in using your Apple ID and password.
    Should I be worried? Did someone access my account? I changed my password but received the same email later.
    The last email was different, it say, according to google translate:
    "Find My iPhone was disabled in iPhone (Not me but same as above)..."

    Hey there Mr.224,
    It sounds like you are getting emails from a sender that appears to be Apple, but with information that clearly is not yours. I recommend a couple of things here. First log into your account at http://appleid.apple.com, and see if the email address from the message you got is listed in your Alternate Email address. If so, and you do not want it there, delete the email address.
    If it is not there, then take a look at this article with informatin about identifying Phishing emails:
    Identifying fraudulent "phishing" email
    http://support.apple.com/kb/ht4933
    If you have additional concerns about your account security you may want to consider Two Step Verification:
    Apple ID: Frequently asked questions about two-step verification for Apple ID
    http://support.apple.com/kb/ht5570
    If you have any additional account security issues, you can contact our Account Security team for assistance. Note you will need to verify your account info.
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • Is there any way to subscribe to Creative Cloud from countries that are NOT listed on the Purchase site (Bosnia and Herzegovina)

    I'm from Bosnia and Herzegovina and just recently started a IT StartUp Company with a great success. Now we have the requirements for tools like Adobe Illustrator, InDesign and Photoshop, but still as a StartUp, to buy the full licence is out of question for now.payment.
    The solution would be te CC version with the monthly, but as many other countries, our country is not supported through the Adobe Purchase Page.
    Is there a alternative way to do that.

    Hi there
    Creative Cloud for Teams is available through resellers in your country.
    Thanks
    Bev

  • HT3702 There are charges to my credit card from itunes that are not showing in my purchase history. How do i find out what they are?

    Having trouble identifying charges to my credit card bill. The charges can not be found in my purchase history.

    You haven't got any auto-renewing subscriptions (I'm not sure if they show on the purchase history or not, I don't have any so I can't check) - there are instructions on this page for managing and stopping them : http://support.apple.com/kb/HT4098
    And have you added or changed your credit card details on your iTunes account ? If you have then each time that you do so a small temporary store holding charge may be applied to check that the card details are correct and valid and that it's registered to exactly the same name and address as on your iTunes account - it should disappear off your account within a few days or so.
    Store holding charge : http://support.apple.com/kb/HT3702
    If you still can't find them, and your card isn't or hasn't been linked to any other accounts, then you may want to contact your card issue. You can also try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

Maybe you are looking for

  • Problems in at selection-screen output - setting pushbutton invisible

    Hello, I hope I can get some help here I have a problem with setting a pushbutton invisible i have a field (long-text) in my screen - and behind this a pushbutton for calling the editor if in a variant the parameters field is set invisible i also wan

  • ORA-00280

    hi, i create new control file. i got error,please help me out Control file created. SQL> recover database; ORA-00283: recovery session canceled due to errors ORA-01610: recovery using the BACKUP CONTROLFILE option must be done SQL> recover database u

  • Spaces keyboard shortcut no longer works

    I restarted my computer because expose/dashboard stopped working. After the restart, they were fine, but there was a new problem. The shortcut to view all spaces (F8 on my computer) will not work no matter what key I assign it to...though it works if

  • Advanced-Table in Advanced-Table Query RN

    I'm having difficulty creating a query region in the inner table within an Advanced-Table in Advanced-Table relationship. The inner tables searchable items appear in the outer tables simple search region and an error is raised when I open the detail

  • Pages Freezes Everytime App Is Opened

    I have both the Pages app on both my iPhone 4S and iPad 3. I use it fairly often on my iPad for school. One day I tried to open up the app on my iPhone (after months of it working correctly) and the app would constantly freeze. I have tried deleting