Reordering items in Contacts

Hi, I have a slightly defeatist feeling that although what I am asking seems pretty basic, it's not possible.  But I'm hoping I'm the one on the idiot side of this question and that Apple has a magically hidden way to do this that I am missing.
Within a given contact card, I need to reorder an individual's email addresses, and phone numbers (and even mailing addresses) within those respective lists.
All my contacts have numerous email addresses and phone numbers.  Some even have many addresses.  And I can't be reading through random lists of numbers in search of the current most important; I want the contextually most important items at the top. But Apple appears to lock all these items in the order of entry.
Obviously, the order one enters contact information of individuals over the years in no way correlates to how important or relevant the data is for that person. So locking the items in that order is illogical.
Did I just miss the method?
I already tried setting a template in preferences but that doesn't affect the hundreds of contacts I have already collected until now.
The only way I have found so far is the "are-you-kidding-there-is-no-way-a-sane-person-would-do-this" method of deleting all the data and re-entering it all by hand in the order you want it.  And then subsequently doing that every time a contact sends you a new bit of data, ad infinitum.

How do I process these changes so that the changes
are saved?Hm? The page we are talking about is a wizard-generated tabular form on a table. The wizard already creates MRU (multi-row update/delete) processes and Save/Delete buttons. Don't you already have all this setup?
I have a column in my table called POSITION that is
supposed to store the ordering.Right, that corresponds to the SEQ column in my example.
Where does it go?:
create table emp_up_down as select * from emp;
alter table emp_up_down add (seq integer unique
deferrable initially deferred);
update emp_up_down set seq=rownum;I showed a self-contained fully-working example on that other thread. Something anyone could take, understand and modify according to their specific requirements. So, no, I doubt you would need the exact same code I posted!
Those 3 SQL statements just create a table, add a SEQ column to it and populate it. You probably already have all this.
The important thing I wanted to point out was that the unique constraint on the SEQ (POSITION or whatever) column needs to be "deferrable initially deferred". Why? Because to swap the value of that column in 2 rows, the MRU process would do this in 2 UPDATE statements and after the first UPDATE statement, the unique constraint would be violated. By making it deferrable, we are asking Oracle to ignore the violation until a COMMIT is issued. A COMMIT would be done after all the updates are done and at that time, the SEQ column would be unique again.
Hope this helps.

Similar Messages

  • HT203433 Three sections of a five-section audio book downloaded from my computer to my iphone. The last two sections will not download. I receive a message that says Unable to Synch 2 items. Contact iTunes for more information.

    I purchased an audiobook on the itunes web site and downloaded it to my computer. Three of the five sections of the audiobook transferred to my iphone with no problem. The last two sections of the books will not transfer. I keep getting a message that reads, Two items will not synch with your iphone. Contact itunes for more information.

    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

  • "Failure creating item.Please Contact NI"

    My problem is that DAQ Assist is missing in my Input Signals Pallet. I noticed it was missing after I installed Ni-DAQmx Base. A Related problem is in the Window "SignalExpress DAQmx Steps" I get an Initialization Error and message: " Failure creating item. Please contact National Instruments." I considered removing all NI software and reinstalling but I do not see how that can be done as it is not all listed in my Control Panel list of installed software.
    My USB DAQ appears to be working corectly.
    I would appreciate information about what is wrong and how to fix it.
    Thanks,
    Rick

    There's an entry in the Control Panels Add/Remove Software named "National Instruments Software". All the NI applications (since version 7.0?) will be in the singel entry. Click on it and click the Change button and a dialog will open with all the individule applications listed.
    It sounds like something got messed up in the DAQmx driver. Scroll down in the list until you see "NI-DAQmx 7.x". Click on that and hit the 'Repair' button. You'll need your driver CDs or the downloaded files from NIs website. Doing a repair will attempt to fix anything that's been messed up. You could try the same with the "NI LabVEW 7.x" entry.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • HT204150 Add an item to contacts

    Hello dear developers Apple!
    I would like to know when the contacts will be added to the item "Surname before marriage." In many sotsealnyh networks it is, and write it is not much.

    Please see this topic for examples of one way to do it, specifically jetson's post:
    http://swforum.sun.com/jive/thread.jspa?threadID=63252

  • HT204085 why do I have to re-type the password for each item, like contacts, messages etc. every time I restart the computer?

    Every time I start up the computer I get a pop up to type in my keychain password for each item. One for contacts and again for messages etc. Why do I have to do this every time at startup?

    Hello, GoodyearMary. 
    Thank you for the question.  Here are a couple articles that you may find helpful with this issue.
    OS X: Keychain Access asks for keychain "login" after changing login password
    http://support.apple.com/kb/HT1631                 
    OS X Mavericks v10.9.1: Repeated prompts to unlock "Local Items" keychain
    http://support.apple.com/kb/TS5362
    Regards,
    Jason H.

  • Reordering items in a report

    The scenario: I have a table that holds values and their respective position "in line".
    For example, Apples = 1, Bananas = 2, Oranges = 3, Grapes = 4. When I display a report, I want the values to show up in order...so, Apples, Bananas, Oranges, Grapes.
    I need to add the capability to allow the user to rearrange the position (order) that is stored in the database by inserting one of the values before another value. So, If the user wants Grapes before Bananas, they need to be able to enter that, have the database be updated, and have the page repost itself so the user can see the changes.
    Any basic ideas how to accomplish this?

    How do I process these changes so that the changes
    are saved?Hm? The page we are talking about is a wizard-generated tabular form on a table. The wizard already creates MRU (multi-row update/delete) processes and Save/Delete buttons. Don't you already have all this setup?
    I have a column in my table called POSITION that is
    supposed to store the ordering.Right, that corresponds to the SEQ column in my example.
    Where does it go?:
    create table emp_up_down as select * from emp;
    alter table emp_up_down add (seq integer unique
    deferrable initially deferred);
    update emp_up_down set seq=rownum;I showed a self-contained fully-working example on that other thread. Something anyone could take, understand and modify according to their specific requirements. So, no, I doubt you would need the exact same code I posted!
    Those 3 SQL statements just create a table, add a SEQ column to it and populate it. You probably already have all this.
    The important thing I wanted to point out was that the unique constraint on the SEQ (POSITION or whatever) column needs to be "deferrable initially deferred". Why? Because to swap the value of that column in 2 rows, the MRU process would do this in 2 UPDATE statements and after the first UPDATE statement, the unique constraint would be violated. By making it deferrable, we are asking Oracle to ignore the violation until a COMMIT is issued. A COMMIT would be done after all the updates are done and at that time, the SEQ column would be unique again.
    Hope this helps.

  • Drag and Drop and Reordering Items in Lists

    Just want to share this. In case, someone needs this.
    http://jsbin.com/yavag/3/edit
    -D

    Hi,
    not sure its the reason but you have huge bummer in your configuration.
    <af:table value="#{pageFlowScope.prodReportBackingBean.prodReportTableData}"
    var="row" styleClass="AFStretchWidth" rowBandingInterval="0"
    rows="40" emptyText="No data to display." id="t1"
    partialTriggers=":::cb1" columnStretching="column:c3"
    *binding="#{pageFlowScope.prodReportBackingBean.prodReportTableBinding}"* summary="PROD TABLE">
    JSF component bindings should not be to beans in a scope larger than request to avoid stale component instances.
    Frank

  • All of my calendar items and contacts have been deleted. How do I recover them?

    Please help me recover calendar appointments and contacts

    If you have a backup that contained the deleted data then restore from that otherwise they are gone

  • ITunes 6.0.1.3 not syncing Outlook Contacts or Calendar with ipod Nano 4GB

    I have Outlook 2003 installed and setup with a Microsoft Exchange Server. I have about 200 contacts currently stored in it.
    I recently purchased a ipod nano 4gb with hopes of syncing my contacts and calendar with that and being able to throw away my old Palm. The ipod nano works great for syncing music but I can't get it to sync either the calendar or contacts from outlook.
    I check the box for syncing contacts and choose Microsoft Outlook from the drop down. Then iTunes only gives me the option of syncing all contacts (which is fine with me) and I click Okay. Then I choose update from the ipod nano right click menu. The status bar says updating contacts but does not import any of my contact to my ipod. Also, except for the 1st time, the Permission Window asking for access to Outlook has not popped up again. When it did that first time, I was told that there was an error and itunes could not copy contacts over. Since then there have been no errors from iTunes.
    I have tried all the steps in the apple online help docs (unchecking boxes, restarting, re-checking, etc..) but can't find a solution. I don't want to have to manually Save As each calendar item and contact. Frankly, I'd rather just return the device.
    Can anyone help me?
    thanks in advance.

    Possible. It is just odd that the day before the update to 9.x.x (I forgot the release), it worked great. Following that upgrade, the sync died. I could reinstall the old release (per instructions from Apple Tech Support) and it would sync. However, not upgrading your iTunes means not upgrading your OS...and that is not an option. However, I think I will have XP reistalled on my machine...and then put a fresh install on iTunes...and see what happens.
    km

  • How can I get my Microsoft exchange calendar items in the cloud

    I am changing jobs, but all of my personal calendar items and contacts are in the work Exchange server.  Is there a way to transfer those items to the iCloud?

    emigailsmomma wrote:
    I have all the buttons turned on on my phone, but when I go onto the cloud on my computer it doesn't show I have any pictures
    That's correct.  You can only view things you've sync with icloud i.e contacts/calendar/etc.
    You can't view your icloud backup on icloud.
    If you perform an icloud backup, then all your pictures in your camera roll is backup to the cloud.  iCloud: iCloud storage and backup overview
    you should be importing your pictures to your computer iOS: Import personal photos and videos from iOS devices to your computer  that way you can view it anytime you want on your PC.

  • Duplicate Contacts / Calendars

    We have 12 Blackberry devcies and are running BES 4.1.6.10. 25% of the devices have issues where calendar items or contacts are duplicated.
    The only common thread seems to be that if you go into the options, you see duplicated Desktop lists. There does not seem to be a way of deleting the duplicate. 
    To fix the contacts issue I had to use the desktop manager software to clear out both Desktop lists then turn back on wireless sync on one of them, but I am trying to stay away from installing the desktop manager software as a matter of course because it seems to add no business value.
    Is this a known issue and is there a way to fix this / prevent this because we have now had the green light to supply the rest of our 200+ sales force with Blackberrys however if this continues to happen then it is going to cause a major problem.
    Thanks in advance
    David

    Hi Hi,
    Which model and version of devices you are running with.  If you see you have 2x Desktop in calendar & address book options, can you go to Options > Advanced Options > service books and see if you can find more than one Desktop [CICAL] and Desktop [Sync], which by default you should one have one each.  
    If so, I suggest you to wipe the BB (Options > Security Options > General Settings > wipe handset) of one of those affected user, remove and readd user back onto BES and perform a wireless activation again.  DO NOT connect to Desktop Manager and see if this retify the issue. 
    If someone give you helpful hints, please click on Kudos.
    If you issue is resolved, mark Accept Solution next to the resolution post.
    Feel free to search www.blackberry.com/btsc to find your answers.

  • PC Suite syncs Outlook contacts but not calendar

    I just bought a new E71x (firmware 3.27).  I'm using PC suite 7.1.30.9 to sync with Outlook 2007 SP2.  I have the Sync setup configured for Calendar/To-do and Contact Items.  The sync operation correctly copies all of the contact information, but none of the calendar information.  The sync report gives the correct number of updates for the contacts, but provides no information about why none of the calendar data is being sync'ed.
    Has anyone dealt with this or a similar problem?
    Thanks,

    I'm sure you've checked this, but have you made sure that the Conflict Resolution is set to "Mobile Phone" (I'm guessing this is where all your calendar info is, or set to Outlook if this is the primary) and that the Direction is "Update both directions"?
    I had an issue similar to this - the Outlook Email profile was screwed up and the calendar refused to backup.  It might be worth a go of backing up (Export) all your calendar items and contact items (and email if you use it) to a PST file.  Then open up the 'Mail' icon in Control Panal, and deleting the current email profile.  Create a new one, then import the PST into the new profile.
    Be aware that all account settings will have been removed if you do this (POP,SMTP, exchange settings etc) so make a note of them.

  • Outlook Contacts "invalid entryid" error after edit on iPod Touch and sync

    There are a few threads about this in the iPhone discussion, but so far nothing on the iPod Touch side and I'm encountering it in both Outlook 2003 and Outlook 2007 after testing on two different computers.
    Issue:
    1. Create or edit a contact on the iPod Touch
    2. Sync with Outlook Contacts
    3. You are no longer able to access the added or edited contact's e-mail address when composing e-mail. If you select the contact's properties from the e-mail interface, you receive an error message that an "invalid entryid was passed."
    My discovery:
    Deleting data from the "Display as" field in the Contact will fix the problem.
    1. In the Contacts folder, open the contact with the problem.
    2. Delete all data from the "Display as" field (displays with Email field).
    3. Select any other field on the Contact form - "Display as" will automatically re-populate
    4. Save the contact. Problem solved.
    Not sure how iTunes sync is corrupting this, but thought I'd share the discovery since suggestions in the iPhone discussion involve exporting, deleting, and importing affected contacts.

    Quick fix method for those who really can't be bothered with any manual methods. Below is a macro for Outlook that will, starting with the currently selected contact folder and including subfolders (mobileme groups), reset all email display names which effectively fixes the EntryID issue. There's no error checking, it's pretty raw but does the job. Hope it helps.
    <STARTMACROCODE>
    Option Explicit
    Sub FixEntryIDs()
    Call FixEntryID
    End Sub
    Sub FixEntryID(Optional ByVal contacts As folder)
    Dim item As ContactItem
    Dim subf As folder
    Dim changed As Boolean
    If IsMissing(contacts) Or contacts Is Nothing Then
    Set contacts = ActiveExplorer.CurrentFolder
    End If
    For Each item In contacts.Items
    changed = False
    If Len(item.Email1DisplayName) Then
    changed = True
    item.Email1DisplayName = ""
    End If
    If Len(item.Email2DisplayName) Then
    changed = True
    item.Email2DisplayName = ""
    End If
    If Len(item.Email3DisplayName) Then
    changed = True
    item.Email3DisplayName = ""
    End If
    If changed Then
    Call item.Save
    End If
    Next
    For Each subf In contacts.Folders
    Call FixEntryID(subf)
    Next
    End Sub

  • Transaction Notification for Restrict user to delere row but new item addition will allowed in Production Order

    Dear All Experts,
    My client having some custom requirement in Production Order.
    1) When Production Order will created and its status will released then it will allowed user to update any quantity of any items or add any new items but it will not allowed to delete any items from row level.
    2) When any item will be deleted then our transaction notification will be raised.
    I created one Transaction Notification Code but it will restricted to update anything or delete.
    IF (@transaction_type = 'A' or @transaction_type = 'U') AND @object_type = '202'
    BEGIN
    Declare @VisOrder1 nvarchar(255)
    Set @VisOrder1=(SELECT Top 1 T1.VisOrder+1 FROM OWOR T0 INNER JOIN WOR1 T1 ON T0.DocEntry = T1.DocEntry 
    WHERE (T0.Status = 'R' and T1.VisOrder=(select TOP 1 VisOrder from wor1 where DocEntry=@list_of_cols_val_tab_del order by VisOrder Desc)))
      If @VisOrder1 >0
      begin
      SET @error = 231
      SET @error_message =  'You have not rights to delete any Item - Please Contact System Administrator ' + @VisOrder1
      end
    END
    Please help me for solve this problem.
    I wait for your warm replay.
    Thanks & Regards,
    Nishit Makadia

    Hi,
    Please check these threads. Let me know your feedback.
    http://scn.sap.com/thread/3518208
    http://scn.sap.com/thread/3545101
    Thanks & Regards,
    Nagarajan

  • Exchange contacts not showing up in Spotlight

    For some reason the contacts in the Address Book that are from the Exchange server are not showing up in a Spotlight search. Other contacts that are 'On My Mac' work just fine.
    I tried trashing the 'Metadata' folder but that didn't fix the problem.
    Any ideas?

    A temporary fix is to copy all exchange contacts to "on my mac". This doesn't duplicate on the exchange server and does not duplicate entries when emailing.
    I am also wondering about push vs fetch. Has anyone else realized that messages, calendar items, and contacts are not being pushed. The programs are all fetching them off the server? Is this a bug? What interval do other people use to fetch their exchange mail?

Maybe you are looking for

  • Switching between office network & home adsl modem

    Small problem. Is it possible for my iBook to automatically detect whether I'm connected to either my office network or my home USB adsl modem? At present, I have to manually go into System Preferences/Network and switch from one to the other and the

  • Multiclip edit won't play in 9 up viewer

    So I have 9 cameras that shot a music video. I create the multiclip, drop it in the timeline and set the viewer to 9 up view. It plays for about 15 seconds, then drops frames and stops. I've tried the basic stuff, turning off unlimited RT (to safe RT

  • How do we get refunded for AdobeExport PDF

    There was no trial version so the only way to try it was to subscribe which I did this afternoon.  It simply does not work with the files at all.  I'm better off using the snapshot function in Adobe which is far from acceptable, but better that the E

  • Full Screen problem opening PDF on PC projector

    Using Flash CS3 on Mac - creating both Mac and PC projector files to go on a CD presentation Ok I have come across the following problem. When the CD is inserted the presentation starts automatically (on PC) and gives a list of PDFs which can be open

  • How much additional traffic does agentless monitoring add to your network

    I know this is not a fully evolved question because you could respond, what MP's (Maintenance Packs) do I have installed, and what all am I monitoring, however I am somewhat new to SCOM 2012, I've set it up and have it going, getting great alerting,