How to display only contact containing a number when accessing from phone

Many of the contact in the address book, contain e-mail only data. These are very useful for mail but are distracting when you launch the address book to call someone. Is there a way to show only names that actually have a phone number, when you open the contacts from the Phone app.

Not that I'm aware of.

Similar Messages

  • Friends receive different contact information (name/number) when coming from different apple devices (iPhone 4 & Macbook Air)

    Whenever I use iMessage on my iPhone 4 and send messages to my friends they receive the messages just fine and I can also view them in the iMessages app on my Macbook Air, however, whenever i reply to their response via my Macbook Air it doesn't seem to use the same contact information as my iPhone 4. My friends receive a new contact with the message i sent from my Macbook Air. How do i get them to use the same contact information so i can continue a conversation without my friends realizing that im using different devices?

    HI,
    On the iPhone
    Settings > Messages  and adjust the Send From and Received At options
    On the Mac
    Messages > Preferences > Accounts iMessages account
    You may need to go to the Send From drop down at the bottom.
    The Mac version has  Received At check boxes and a separate Send From drop down.
    The issue comes around which type of iMessage the Mac versions see the messages as.
    The chances are that it arrives after the iPhone gets the "original" and therefore is seen as A "Sync copy".
    As this is not an on-going conversation the app regards what you see as a reply and a New Message and Sends From comes in to play.
    You may also have different Received At and Send Froms set up on each device.
    9:12 PM      Wednesday; August 14, 2013
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.4)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How to display only one row in report when...

    Hi,
      I've a report display in which i've 3 fields EBELN, LIFNR , MENGE. EBELN, LIFNR are from EKKO table and MENGE id from EKPO table .
             On clicking the EBELN there will be getting another report in which we get EBELN,EBELP and MATNR and MENGE from EKPO table .
           The problem is while displaying 1st report if the purchase order has two items in EKPO table then its displaying two times. How can i get only one time and the MENGE should be sum of those two item prices.

    hi use the statement not to get the  multiple items..
    sort itab by ebeln.
    delete adjacent duplicates from itab comparing vbeln.
    i will give u an example to get the total and subtotal ....
    *& Report  ZR_A1
    REPORT  ZR_A1
            NO STANDARD PAGE HEADING.
    Tables declarations
    TABLES: VBAK, VBAP.
    Variable declarations
    DATA: C1 TYPE C.
    Internal Table declarations*
    DATA: BEGIN OF IT_VBAK OCCURS 0,
          VBELN LIKE VBAK-VBELN,
          VKORG LIKE VBAK-VKORG,
          VTWEG LIKE VBAK-VTWEG,
          SPART LIKE VBAK-SPART,
          END OF IT_VBAK.
    DATA: BEGIN OF IT_VBAP OCCURS 0,
          VBELN LIKE VBAP-VBELN,
          POSNR LIKE VBAP-POSNR,
          MATNR LIKE VBAP-MATNR,
          NETWR LIKE VBAP-NETWR,
          BRGEW LIKE VBAP-BRGEW,
          NTGEW LIKE VBAP-NTGEW,
          END OF IT_VBAP.
    DATA: BEGIN OF IT_FINAL OCCURS 0,
          VBELN LIKE VBAK-VBELN,
          VKORG LIKE VBAK-VKORG,
          VTWEG LIKE VBAK-VTWEG,
          SPART LIKE VBAK-SPART,
          POSNR LIKE VBAP-POSNR,
          MATNR LIKE VBAP-MATNR,
          NETWR LIKE VBAP-NETWR,
          BRGEW LIKE VBAP-BRGEW,
          NTGEW LIKE VBAP-NTGEW,
    END OF IT_FINAL.
    Selection-screen design
    SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-R01.
    SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN.
    SELECTION-SCREEN: END OF BLOCK B1.
    TOP-OF-PAGE.
    FORMAT INTENSIFIED ON COLOR 5.
    WRITE:/7 'LIST TO DISPLAY SALES ITEM INFO'.
    START-OF-SELECTION.
    Populating it_vbak table
    SELECT VBELN
           VKORG
           VTWEG
           SPART
           FROM VBAK
           INTO TABLE IT_VBAK
           WHERE VBELN IN S_VBELN.
    populating it_vbap table
    IF NOT IT_VBAK[] IS INITIAL.
    SELECT  VBELN
            POSNR
            MATNR
            NETWR
            BRGEW
            NTGEW
            FROM VBAP
            INTO TABLE IT_VBAP
            FOR ALL ENTRIES IN IT_VBAK
            WHERE VBELN = IT_VBAK-VBELN.
    ENDIF.
    populating the final list
    LOOP AT IT_VBAP.
    READ TABLE IT_VBAK WITH KEY VBELN = IT_VBAP-VBELN.
    IF SY-SUBRC = 0.
    MOVE:  IT_VBAK-VBELN TO IT_FINAL-VBELN,
           IT_VBAK-VKORG TO IT_FINAL-VKORG,
           IT_VBAK-VTWEG TO IT_FINAL-VTWEG,
           IT_VBAK-SPART TO IT_FINAL-SPART,
           IT_VBAP-POSNR TO IT_FINAL-POSNR,
           IT_VBAP-MATNR TO IT_FINAL-MATNR,
           IT_VBAP-NETWR TO IT_FINAL-NETWR,
           IT_VBAP-BRGEW TO IT_FINAL-BRGEW,
           IT_VBAP-NTGEW TO IT_FINAL-NTGEW.
    APPEND IT_FINAL.
    ENDIF.
    ENDLOOP.
    SORT IT_FINAL BY VBELN.
    LOOP AT IT_FINAL.
    AT FIRST.
    FORMAT INTENSIFIED ON COLOR 1.
    WRITE:/35 'SALES DOCUMENT ITEM LIST'.
    ULINE AT (100).
    *endat.
    FORMAT INTENSIFIED ON COLOR 5.
    WRITE:/ SY-VLINE,
          2  'SALES.DOCU.NO',
          13 'ITEM',
          21 'MATERIAL',
          50 'NET-VAL',
          65 'GROSS-WT',
          82 'NET-WT',
          100 SY-VLINE.
    ENDAT.
    FORMAT INTENSIFIED ON COLOR 2.
    WRITE:/ SY-VLINE,
           2   C1 AS CHECKBOX,
           5 IT_FINAL-VBELN,
          13  IT_FINAL-POSNR,
          21  IT_FINAL-MATNR,
          41  IT_FINAL-NETWR,
          56  IT_FINAL-BRGEW,
          71  IT_FINAL-NTGEW,
          100 SY-VLINE.
    AT END OF VBELN.
    SUM.
    FORMAT INTENSIFIED ON COLOR 3.
    WRITE:/    SY-VLINE,
             30   'SUB-TOTAL:',
             41   IT_FINAL-NETWR,
             56   IT_FINAL-BRGEW,
             71   IT_FINAL-NTGEW.
       WRITE:/100 SY-VLINE.
    ENDAT.
    AT LAST.
    SUM.
    FORMAT INTENSIFIED ON COLOR 6.
    WRITE:/ SY-VLINE,
              30  'GRAND-TOTAL:',
              41  IT_FINAL-NETWR,
              56  IT_FINAL-BRGEW,
              71  IT_FINAL-NTGEW.
      WRITE:/100  SY-VLINE.
      ENDAT.
      ENDLOOP.
    regards,
    venkat .

  • ALV: how to display only subtotals and total rows in the output

    ALV: how to display only subtotals and total rows in the output
    i am getting output
    i am getting subtotals for respective fields
    but i want to display only subtotals and totals rows in the output
    i have tried the
    totals_only   parameter in slis_layout_alv
    but it is not working.

    hi,
    For TOTAL
    For the amount field / quantity field in the field catalog give DO_SUM = 'X'    for WHOLE total
    For SUBTOTAL
    For subtotal you will have to create an internal table sort..Let's say you want to do subtotal for each customer..
    DATA: lt_sort type SLIS_T_SORTINFO_ALV,
    ls_sort type slis_sortinfo_alv.
    CLEAR ls_sort.
    ls_sort-spos = 1.
    ls_sort-fieldname = 'Give the field name that you do the sum'.
    ls_sort-up = 'X'.
    ls_sort-subtot = 'X'.
    APPEND ls_sort TO lt_sort.
    fieldcatalog-do_dum = 'X'.
    for subtotals
    WA_SORT-FIELDNAME = 'ERSDA'.
    WA_SORT-SPOS = '2'.
    WA_SORT-UP = 'X'.
    WA_SORT-SUBTOTAL = 'X'.
    APPEND WA_SORT TO IT_SORT.
    Refer
    http://help.sap.com/saphelp_erp2004/helpdata/en/ee/c8e056d52611d2b468006094192fe3/content.htm
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/doesnt-function-event-subtotal_text-in-alv-713787
    regards,
    Prabhu
    reward if it is helpful

  • Displaying metadata, how to display ONLY the Date

    I would like to display the Date below each image in Aperture 3. When I select "Date" in the Browser & Viewer Metadata window, the result is a very long string with the Date, the Time and the Time Zone. meaning that most of the time I see nothing because the string is much too long to be displayed...
    How to display ONLY the Date ?
    Thank you.
    Olivier

    om28 wrote:
    I will do that but still... if the Date could be ONLY the Date "without time and time zone", I would be able to display more information.. and it will look nicer.
    I said at the top of my first response above: +Afaik, there is no way within Aperture to change the date format of the date metadata overlay.+
    Send Aperture feedback to Apple via "Aperture→Provide Aperture Feedback"
    In the past I used Expression Media and the config for displaying such info was better.
    Aperture has a strange interface for it (and for other parameters), it does not behave at all like an Apple software (for the GUI), probably an external development team... but I agree it is more complex than iPhoto.
    Aperture is 10x more complex than iPhoto.
    If you want to see a rigid, boxed, "engineer"-style image database interface, take a look at Lightroom 3. It's a great program -- but it's a very different concept of information presentation and interaction.
    Thanks again.

  • How to display the details of particular order when click on button in sapui5

    Hi Experts,
        How to display the details of particular order when click on button in sapui5?
    I Have a requirement that is i want display all the list of orders coming from backend as shown in image below
    then in that i have a button when i press the button  it need to display the details of particular order as shown in image below
    Please help me .
    Thanks & Regards
    chitti

    Does anyone know how to display the index of current desktop?
    Brute force - - I have written the number of the Desktop directly onto the wallpaper picture I am using for each Desktop  (easy to do with Preview).
    All Desktops are using different wallpaper photos, so they are easily recognized by the color scheme, and in the upper left corner is the number.
    Regards
    Léonie

  • How can i pull up a deleted number when i accidentally deleted it.

    How can I pull up a deleted number when i accidentally delete it

    Not possible, once it's deleted it is gone.
    There is no trashcan or temporary holding area to recover deleted items from.

  • How to display  all the under menus options when pressing the main menu on adobe muse?

    How to display  all the under menus options when pressing the main menu on adobe muse?

    How to display  all the under menus options when pressing the main menu on adobe muse?

  • How do you reduce/turn off keypad sound when making a phone call

    How do you reduce/turn off keypad sound when making a phone call?

    If I understand the question correctly, it is not about turning off keyboard clicks, it's about silencing the beeps made when manually keying in a  phone number. With keyboard clicks turned off, the beeps still sound when keying in a phone number. If I'm reading the iPhone User Guide correctly, it explains how to turn off keyboard clicks but not how to silence the   beeps when keying in a phone number. The only way I have found to silence the beeps is to put the phone into silent mode.

  • How do i set up my airport extreme to access from my work windows based PC

    How do I set up my airport extreme to access from my work windows based pc?

    To mount the AirPort Disk in Windows 7 or Vista:
    Open the Network browser by double-clicking Network on the Windows Desktop.
    The AirPort Extreme base station name should appear in the browswer.
    Double-click the name and you should get a login prompt.
    Now depending on how you set up disk access:
    In the Name field, either enter the user account name or for base station/disk access, leave this field blank.
    In the Password field, enter the base station, disk, or user account password.
    Select the volume(s) you want to mount, and then, click OK.

  • Our company have just upgraded to iOS 6 and the majority of the users are now receiving the following error 'Cannot Get Mail – Server error. Contact your server administrator' when accessing ms exchange this never happened on iOS 5 can anyone help

    Our company have just upgraded to iOS 6 and the majority of the users are now receiving the following error 'Cannot Get Mail – Server error. Contact your server administrator' when accessing ms exchange this never happened on iOS 5 can anyone help

    Have you tried deleting the account and re-adding it on the phone?
    What version of Exchange server are you running?

  • HT1296 I edit my playlists using my iPhone. How do I set up iTunes to update my playlists from phone to computer?

    I edit my playlists using my iPhone. How do I set up iTunes to update my playlists from phone to computer?

    Are you referring to the password for your email account? If so, recovery of that password would be dependent on your email provider. Normally they have a web based access for email, check there and see if there is a "forgot password" link.

  • How do i know for sure if someone is accessing my phone and viewing my activities which i think are private

    how do i know for sure if someone is accessing my phone and viewing my activities which i think are private

    Why do you think this?
    There are no tracking software for a non jailbroken phone.
    do you share an apple id with someone?

  • How long would the iPhone 4s battery last when shipped from the factory and going to be opened on Christmas?

    How long would the iPhone 4s battery last when shipped from the factory and going to be opened on Christmas? Or how long does the iPhone battery last when it is off? Or would I activate the iphone 4s with a flat battery?  Thankyou

    Thankyou!

  • How to display only last 4 digits of tax number in Vendor Master view MK03

    Dear experts,
    In the Vendor Master view by Purchasing Organization (MK03), is there a way that will allow the user to view only the last four digits of the Vendor tax number?
    For example: Display only **-*-6789 (or blank spaces), instead of 123-45-6789 ?
    Any ideas and insights are much appreciated. Will award points for help.
    -TW

    In your report, just do a substr(ssn,5,4) for your new & improved SSN field to be displayed:
    SELECT First,
    Last,
    SUBSTR(ssn,5,4),
    Phone
    FROM Employees
    Thank you,
    Tony Miller
    Webster, TX

Maybe you are looking for

  • How do i back up playlists and Library

    I will be reinstalling iTunes on a new computer and i want to keep my settings. How do i back up or export my playlists and my library as well to restore when i reinstall iTunes. I am using iTunes 10.6.3.25 thank you!

  • Mac OS 10.5 Compatibility With Adobe CS2

    I am currently operating Mac OS 10.4 and want to upgrade to 10.5 and want to know if CS2 is compatible with 10.5.  Thank you for any help regarding this question. Jerri

  • Jumbled Text in PDF Graph Output

    Hi there, I have an unnusual problem with one of my BI Publisher templates. The template is an RTF Template and I'm trying to output to PDF. I'm using an external font which I have added to the two font folders on the BI Server and added the mappings

  • Master data from transaction data

    Hi All, I am getting data from R/3. I am also getting data from another web based application which takes its basic master data from R/3. Now from the transaction data from the web based application(coming to BW as flat file), I am getting a field Ma

  • Final confirmation issue in project system activities

    Dear all,             I have having problem in final confirmation. I created activities.Planned some scope of work , after completion of the same scope of work I marked Final confirmation as system automatically ask for.But the situation now is that,