Filter Function for Contacts.app

Apple Contacts.app needs to be able to filter contacts with more flexible criteria.
I have maybe hundreds of useless contacts synced from Gmail. Neither Apple Contacts nor Google Contacts offers an ability to filter contacts with following criteria:
- have phone number but no email
- have email but no phone number
- have name but neither phone number nor email
- don't have name but both name and phone number
These filters seems impossible to achieve through the existing keyword search. (Maybe with "@" ?) and these would help organize my contacts dramatically more efficiently. For example:
- I would delete all contacts without either an email nor a phone number
- I would categorize all contacts without phone numbers into a group
- I would name all contacts with both name and phone number
Therefore, this improvement would be very useful.

> This is a continuation of a previous issue I've been working on. This
> falls into the realm of filters, so I thought I'd move it here.
The same sysops cover all the BM forums, therefore it doesn't matter.
> I have a
> java app that needs to connect to the internet. It works fine when I
> unload ipflt. Using filter debug, it seems as if packets are going out
> correctly, but are being dropped coming back. I thought, that with dynamic
> NAT, I wouldn't have to create an inbound exception. Am I off base with that?
Is the exception you made STATEFUL? If it's not stateful the return
packets will be dropped.
Cat
NSC Volunteer Sysop

Similar Messages

  • I purchased an additional audio function for the apps "baby monitor"today, but this function didn't work on my ipad. Grateful if you would let me know how to refund the cost.

    I purchased an additional audio function for the apps "baby monitor"today, but this function didn't work on my ipad. Grateful if you would let me know how to refund the cost.

    Refund
    http://www.apple.com/emea/support/itunes/contact.html

  • Filter function for measures

    Hi All,
    Is there any way to use Filter function for measures also because we have compare dates along with measures as below
    FILTER("1. Fact - Order"."Order Amt" USING (("Invoice (with fact 3)"."Promise Date (with fact 1 & 3)" < @{date1}{date '2013-04-08'}) AND (("Order Lines"."Ship Date (with fact 1)" > @{date1}{date '2013-04-08'}) OR ("Order Lines"."Ship Date (with fact 1)" = date '1901-01-01'))))
    here we have to compare like measure1< measure2 then Order Amt.

    You can use CASE WHEN as Saichand said, the syntax would be like this,
    Case when <compare your measures> then FILTER("1. Fact - Order"."Order Amt" USING (("Invoice (with fact 3)"."Promise Date (with fact 1 & 3)" < @{date1}{date '2013-04-08'}) AND (("Order Lines"."Ship Date (with fact 1)" > @{date1}{date '2013-04-08'}) OR ("Order Lines"."Ship Date (with fact 1)" = date '1901-01-01')))) end
    Mark points if it helps :)

  • Anyway to selectivily enable/disable bluetooth function for selected apps like papago in iphone.

    Hi,
    Anyway to selectively enable/disable bluetooth function for selected apps like papago navigator in iphone.
    I want to maintain bluetooth connectivity to car headset for handsfree driving while papago navigator on ky iphone continuously guide me on the road using the  iphone speaker. So when someone called me on the phone, it will use the car headset. is there such as apps?
    Rgds,
    Kpk

    Hi,
    In pageflow definition, "Train Stop-->Skip" property controls the enable/disable state.
    If Skip value is true (it can be controlled with EL expression) than related link and button in train components are disabled.
    They are enabled other If Skip value is false (It is default).

  • Suggestion: map function for contacts

    suggestion for iphone contacts - i think it would be awesome if there was a "map" function associated w the contacts addresses, so that if you are traveling or whatnot you could pull up an area and see what friends are around there, i know facebook had a similar app for a while, but a lot of people no longer but their addresses on there or just aren't on facebook, this way you would see where their actual location is based on what is in your phone

    Find My Friends already does this.

  • "Control + F5"  standard filter functionality for ALV Grids

    Hi all,
    After an ALV Grid is displayed on screen there is a standard functionality to filter a selected column.
    You can select a column (click on the head) of the ALV, then "Control + F5" and a pop-up appears to insert a value or a range by which the filtration is going to be done.
    But a I have problem with a concrete field. It doesn`t seem different on comparison with other fields (CHAR30), but I don`t know why it doesn`t work correctly as others.
    Have you had any situation like this ??
    Thanks & sorry for my bad english,
    Rubè

    Hi Frank,
    When you are entering  89012  and pressing enter the additional zeros are adding up because of the data type of VBELN We have standard conversion routine attached with this .So when ever u wrtie any text that routine will works.
    Can you please check what data type are you using in the internal table that you are binding  to the node?
    Thanks and Regards,
    NSingh
    Edited by: Nsingh on Feb 17, 2012 4:52 AM

  • E71 switch function for contacts - help!

    Hello
    I am trying to put contacts onto an E71 from an 8800 Arte. The built in switch function has transferred numbers only. They are useless without names. Is there any way to get the FULL contact details transferred?
    Thanks
    M

    Hi,
     Try to sync it with Outlook first with ur 8800 and then connect ur Nokia E71 and resync back to the device
     Bluetooth is also a good option i doubt whether u will get full details again since i havent tried this personally
    check it out
    Message Edited by krizanand on 05-Sep-2009 01:31 AM
    If a reply has solved your problem click Accept as solution button, doing it will help others know the solution. Thanks.

  • Filter Function problems on ALV report. [Resolved]

    Hi,
    I developed an ALV report by using function as below:
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
             EXPORTING
                  I_CALLBACK_PROGRAM = G_REPID
    *            I_CALLBACK_PF_STATUS_SET = status_set
    *            I_CALLBACK_USER_COMMAND  = USER_COMMAND
                  I_STRUCTURE_NAME = 'T_BSIK'
                  IS_LAYOUT        = GS_LAYOUT
                  IT_FIELDCAT      = GT_FIELDCAT[]
             TABLES
                  T_OUTTAB    = TAB_BSIK.
    And this ALV custom report is referenced from standard function FBL5N.
    After i completed this report, i made an comparision of FBL5N and my custom report.
    When I apply the filter function, for example, on the document type, I cannot input 2 characters in the document type field under the filter function. The field length is only 1 character. Similar case results on the field document date.
    While the standard function FBL5N works very nice.
    What should i do to make the filter function of my own ALV report as the same as the standard function FBL5N do?
    Thanks in advance.
    Lala
    Message was edited by:
            Hoo lala

    Oh, i found where the problem is...
    add below 2 statements, then the question is resolved.
      LS_FIELDCAT-ref_fieldname = ****
      LS_FIELDCAT-ref_tabname = ***
    FORM FIELDCAT_INIT tables RT_FIELDCAT.
    CLEAR LS_FIELDCAT.
      LS_FIELDCAT-COL_POS   =  3.
      LS_FIELDCAT-FIELDNAME = 'BLART'.
      LS_FIELDCAT-TABNAME   = 'TAB_BSIK'.
      LS_FIELDCAT-SELTEXT_L = 'Document Type'.
      LS_FIELDCAT-ref_fieldname = 'BLART'.
      LS_FIELDCAT-ref_tabname = 'BSIK'.
      APPEND LS_FIELDCAT TO  RT_FIELDCAT.
    endform.
    Fine now.
    Lala

  • How to create a single login for multiple apps on tomcat server?

    Hello,
    I am running the most recent versions of apache and tomcat on several dells with XP pro.
    When I login to an app I have created, a session variable is set, but when I browse to one of the other apps on the same computer, it does not recognize that the session variable has been set and I have to login again.
    Can somebody please suggest how, or where I can find docs, to configure tomcat to pass the session variables to other apps?
    Thank you very much.
    Or, can anybody suggest the most effective strategy for creating single-logon functionality for multiple apps with tomcat and apache running on one computer? and with tomcat and apache running on multiple computers? (i.e., each computer has tomcat and apache integrated).
    The database is Oracle 10g running on each computer.
    Thank you again.

    A good place to start is http://www.javaworld.com/javaworld/javatips/jw-javatip34.html
    Also, do a search in this forum on HttpURLConnection. That class allows you to use POST method to send form data to a web server.
    "Hidden" variables are only hidden in HTML. The HTTP that gets POSTed to the web server doesn't distinguish between hidden and not hidden. That is, the content you would write to the HttpURLConnection.getOutputStream() would be something like:
    hidden=1&submit=ok(Of course, the variable names would depend on what the web server was expecting from the form.)
    Also, be sure to set the Content-Type request parameter to "application/x-www-form-urlencoded"

  • Class to Generate Dynamic Filter Function

    I have built an ActionScript Class to allow me to create a
    dynamic Filter Function for the several ArrayCollections I use in
    my Flex Application. It works just as I intended, however, I'm
    wondering if it's too verbose, and can be skimmed down to use less
    code. For example, is there some way I could extend the Function
    class? See a snippet of my Class attached.

    I have built an ActionScript Class to allow me to create a
    dynamic Filter Function for the several ArrayCollections I use in
    my Flex Application. It works just as I intended, however, I'm
    wondering if it's too verbose, and can be skimmed down to use less
    code. For example, is there some way I could extend the Function
    class? See a snippet of my Class attached.

  • Question about the Filter type for the trace provide "Microsoft-Windows-Kernel-File"

    Hello all,
    I have moved this question from the Windows
    Server General Forum accorfing to the suggestion from Mr. Justin Gu 
    I have a question about the Filter function for the trace provider "Microsoft-Windows-Kernel-File".
    I can find the Filter function with the following operation.
    Mr. Justin Gu wrote:
    > You create a Data Collector Set for the trace provider "Microsoft-Windows-Kernel-File" and finish completely, then you > can right click it and select Properties.
    In the Properties dialog box, click Filter and
    then select ‘Edit…’. You will be> able
    to see the Filter type and Filter data in the Filter dialog box.
    What
    Kind of Filter can
    I use in this Filter dialog box?
    And, how can I set to exclude the some kind of datas?
    Could you give me your suggestion?
    Thank you.

    What
    Kind of Filter can
    I use in this Filter dialog box?
    And, how can I set to exclude the some kind of datas?
    Could you give me your suggestion?
    Thank you.
    I'm looking for the same information.

  • HT201210 When I go to my contacts function for my phone and do search, or try to edit a contact, my keypad won't come up.  It seems to come up on all other apps.  Any idea what the problem is?

    The keypad doesn't come up on the phone, contacts function.  I can't search by typing in a name or edit existing contacts.  Keypad works on other functions.  Any ideas what is going on?

    I'll guess that you are taping into the search bar in Contacts? If so, why not try forcing closed the contacts app. Double tap on the home button and find the contacts app and swipe upwards on the thumbnail of the app. Then tap the home button to close. Next hold the sleep/wake and home button together until you see the Apple logo and then release. The phone will reboot and will have no affect on your data. After the phone reboots, check to see if it functions.

  • Seeking recommendations for contact management app

    I'm looking for a great professional contact management app for use on ipad, iphone, and Mac.
    Need base functionality:
    Import 1,000 contacts from .csv file
    Contact tracking (history and details of discussions), ticklers (reminders for next contact)
    Search and filter functionality
    Nice to have:  custom fields
    Thanks for suggestions!
    Lynne

    I do a lot of counselling about a very complicated and dynamic subject.  Right now I have to lug 20-30 pounds of reference texts from point A to point B to point C.  I bought the iPad Air in hopes I could store this material in the tablet.  But the reference material is complicated -- I guess I said that -- and I need lots of words to clarify what the subject is of each pamphlet and brochure, etc, before I can clearly differentiate one from the other.  Imagine I have documents A, B and C.  In the best of all worlds I would see a metadata display that looked like this:
    File A -- Comments
    File B -- Comments
    File C -- Comments
    Taking the filenames and the comments together I decide I need to look at C. I tap that and it displays.
    That is the best of worlds.  But I see GR allows me to rewrite filenames and maybe doing that will get me to where I want to go.
    It does seem strange that with all document-handling packages out there there isn't one that allows comments in metadata.  Oh well.
    Thanks again,
    Fred

  • Filter Function Not Working Properly on iOS App

    Spotify Community, The latest version of the desktop app features a filter (Crtl + f) function that allows a user to filter certain tracks from the playlist and "bring them to the forefront."  For example, if I filter my largest playlist (which is 3,000+ songs) for "Nirvana," Spotify presents the 68 Nirvana tracks I have in the playlist.  If I play this playlist while it is featured, it will only play the 68 Nirvana tracks that I have filterd; regardless of being on shuffle or not, the playlist will not play any songs that are not based on the filter criteria. I believe the functionality that I just described above is excellent and how the software is intended on working.  However, in the Spotify mobile app for iOS, the filter functionality does not work like this.  Using the filter function in a playlist will filter the presented songs based on the user's inputed criteria/query, however, the playlist that is being filtered will not restrict it's playback to the criteria that the user has inputted.  For example, if I searched "Nirvana" on the same playlist above on my iPhone, the same 68 Nirvana songs that I have on that playlist would be presented to me.  However, if I selected "Love Buzz" (one of the tracks), then placed the playlist on shuffle, then skipped to the next track, the playlist would then play one of the other 3,000+ tracks from the playlist; it would not restrict playback based on my inputted criteria/querry.   In summary, the filter function on the mobile app does not work propely in accordance to the way it works on the desktop app.  I think most users who have large libraries would like the filter app to work similar to the way I described above. What can we do to get the correct filter functionality implemented on the iOS app? 

    Not sure if this is the way to update my question however I have found an app - "I clear my clipboard" that has cleared the entry so I can copy and paste properly again.

  • I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.

    I have one apple ID for multiple devices in my family.  I'd like to keep it that way for itunes/app purchases.  I would like a simple step 1, step 2, step 3 response on what I need to do to separate all other features like imessage, contacts, emails, etc.
    I have been reasearching how to do this on the internet, but I haven't found an easy explanation yet.  My family is going crazy over each others imessages being sent to others in the family and not being able to use FaceTime because of conflicting email addresses.  I have read that if each person gets their own iCloud account, this would work.  However, I need to know what to do after I set everyone up with their own iCloud account.  Do I make that the default email address to be contacted or can they still use their hotmail email addresses.  Any help- with easy explanation- would be much appreciated!!

    We do this in my family now.  We have one account for purchases, so it is used to share music and apps (I think that is in Settings/iTunes & App Stores).  Each iDevice has this configured.
    Then, each of us has our own iCloud account that is configured under Settings/iCloud.  That then allows us to have our own Mail/Contacts/Calendars/Reminders/Safari Bookmarks/Notes/Passbook/Photo Stream/Documents & Data/Find My iPhone/and Backup.  That Backup piece is pretty sweet and comes in handly if you replace your iDevice.  You can just restore from it.
    So we all share the Apple Store account but we all have our own iCloud accounts to keep the rest seperate or things like you mentioned are a nightmare.
    In answer to what iCloud does for you: http://www.apple.com/icloud/features/
    Think of it as an internet based ("cloud") area for all of those items listed in my response.  What you need to remember is photo stream only maintans the last 1000 pictures so don't count it as a complete backup solution for your pictures.  Even though I rarely sync with a computer these days, I do still try to sync my phone with iPhoto (I have an iMac) so that I have copies of all of my pictures.  1000 may not stretch as far as it sounds.
    Message was edited by: Michael Pardee

Maybe you are looking for