New address book fields don't appear when importing CSV file

I've added two new fields to the Address Book template. The new fields appear when manually entering data for a new Card, but not when importing a CSV file. There's a drop down menu of field names for the import process but it does not include the new fields. Is there a way to modify this menu?

I would suggest looking at the Basic Troubleshooting steps at the following link:
http://support.apple.com/kb/HT3805
Specifically, for your Question #1 above, I would suggest the First Aid procedure and running the 'Repair Database' option listed in the linked page.
Note - I strongly suggest not running the 'Rebuild Database' option unless all other troubleshooting steps have been exhausted. This is also a caution given by Apple.
For your Question #2, if the repair database does not fix that one, then lower on the linked page you will find the procedure for 'Delete the user preferences' which has sorted the issue for me in the past. FWIW, I suspect that the OS X indexing (possibly for Spotlight) may have something to do with this issue.
As I think you suspect, you should be able to see the photos specific to each Project when you select it one in the library inspector (whether in the folder or not).
Note - the behavior of seeing all photos from all projects in a folder is correct.

Similar Messages

  • Address Book ulContacts don't appear in iTunes

    I just went to sync my original iPhone via iTunes and just discovered that my address book contacts don't appear in iTunes. My address book is fine and all of my groups appear. Anyone have any helpful hints to get them to reappear?

    I have a similar issue.  There are hundreds of podcasts on my Ipod Touch that I would like to delete.  However, they don't show up on the computer.   2 questions:
    1.  You say to delete them from the Ipod.  Please explain how.  If they have to be deleted individually it will proabably take a lot of time.
    2.  Why does this happen?  How can I prevent this from happening again?
    Sure wish Apple would give us more help with this.
    Thank you.

  • Assigning a picture to contact in address book and having that appear when my phone rings

    Hi.....can you assign a picture to a person/contact in your address book.....and when that person calls me on my phone....their picture appears letting me know who is calling????  I don't have caller id with my package...but there must be away around this by assigning a picture of a person to that contact, ?
    thanks
    Shelly

    Welcme to the Frums!
    http://supportforums.blackberry.com/rim/board/message?board.id=8300&thread.id=35224&view=by_date_asc...
    Ditto Milton response.  
    Nurse-Berry
    Follow NurseBerry08 on Twitter

  • Wrong date format when import CSV files

    When you import a CSV file that contains fields with German date formats, these fields are displayed incorrectly.
    Example: Contents of the CSV file "01.01.14". After importing the corresponding cell in Numbers has the content "40178".
    A reformat the cell to a date format is not possible.
    How do I get the date in the new version of Numbers displayed correctly?

    It seems that there are more than a few problems related to import/export with non-US localizations.
    I, personally, don't have a solution to your problem. I started to adjust my Language & Region settings to test your problem but it was several settings, I didn't get it right, and I didn't want to mess up my computer so I set everything back to US/English.
    The only workarounds I can suggest are
    Insert a new column into your table and in it put a formula that adds the number to the date 01.01.1904.  Or,
    Edit the CSV in TextEdit to Replace All "." with "/".  This will work if "." is used for nothing else but these dates.
    I recommend the second one if it will work for you. Hopefully Apple is addressing problems such as the one you are seeing.

  • ORA-01722: Invalid number when importing .csv file

    Hi,
    I did not find any information regarding my specific problem until now.
    I try to import a *.csv file containing id, double, double, double, double, double (e.g. as a sample line "id_1, 674,6703459157907, 4212,205538937771, 674,6703459158016, 5561,546230769363, 2714,6367797576822") into a table with the following definition:
    CREATE TABLE "foo"."BUILDING_SURFACES"
    (     "ID" VARCHAR2(40 BYTE),
         "AREA1" BINARY_DOUBLE DEFAULT 0,
         "AREA2" BINARY_DOUBLE DEFAULT 0,
         "AREA3" BINARY_DOUBLE DEFAULT 0,
         "AREA4" BINARY_DOUBLE DEFAULT 0,
         "AREA5" BINARY_DOUBLE DEFAULT 0
    ) SEGMENT CREATION IMMEDIATE
    PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)
    TABLESPACE "USERS" ;
    I am doing it with the help of the importer tool in the SQLDeveloper, by doing a right-click onto the table and selecting import data. In the assistant everything seem to be fine, even the data preview.
    But when I try to import, I get an error: "ORA-01722: Invalid number" and a couple of failure windows appear. These windows display a NullPointerException:
    java.lang.NullPointerException
         at oracle.dbtools.raptor.data.writers.DataTypeFormatterRegistry.getFormattor(DataTypeFormatterRegistry.java:42)
         at oracle.dbtools.raptor.data.writers.ImportGenerator.getBatchForInsert(ImportGenerator.java:1837)
         at oracle.dbtools.raptor.data.writers.ImportGenerator.access$1800(ImportGenerator.java:84)
         at oracle.dbtools.raptor.data.writers.ImportGenerator$1.afterLoopProcessing(ImportGenerator.java:1125)
         at oracle.dbtools.raptor.newscriptrunner.ScriptExecutorTask.loopThroughAllStatements(ScriptExecutorTask.java:220)
         at oracle.dbtools.raptor.newscriptrunner.ScriptExecutorTask.doWork(ScriptExecutorTask.java:165)
         at oracle.dbtools.raptor.data.writers.ImportGenerator$1.doWork(ImportGenerator.java:782)
    If I cancel the task, the insert statements are displayed:
    SET DEFINE OFF
    --Einfügen für Zeilen  1  bis  2  nicht erfolgreich
    --ORA-01722: Ungültige Zahl
    --Zeile 1
    INSERT INTO BUILDING_SURFACES (ID, AREA1, AREA2, AREA3, AREA4, AREA5) VALUES ('BLDG_0003000b002ea10f','674.6703459157907','4212.205538937771','674.6703459158016','5561.546230769363','2714.6367797576822');
    --Zeile 2
    As one can see, the numbers are quoted ('). If I delete the quotes by hand, the insert statement works correctly.
    What can I do, so that the import tool does not quote the numbers?
    Deleting the quotes with the help of a regular expression is not workaround, since a lot of error windows appear, which needs to be closed by hand...
    Thanks in advance,
    Richard
    Some infos about my machine:
    $ lsb_release -a
    No LSB modules are available.
    Distributor ID: Ubuntu
    Description: Ubuntu 12.10
    Release: 12.10
    Codename: quantal
    $ java -version
    java version "1.6.0_38"
    Java(TM) SE Runtime Environment (build 1.6.0_38-b05)
    Java HotSpot(TM) 64-Bit Server VM (build 20.13-b02, mixed mode)
    Oracle SQL Developer 3.2.20.09
    Version 3.2.20.09
    Build MAIN-09.87
    Copyright © 2005, 2012 Oracle. All Rights Reserved. Alle Rechte vorbehalten.
    IDE Version: 11.1.1.4.37.59.48
    Product ID: oracle.sqldeveloper
    Product Version: 11.2.0.09.87

    I solved my problem. :)
    I changed the datatype of the area fields to "NUMBER" and edited my input file in a way, that it is tab separated with "," as decimal sign.
    Richard

  • Dynamically created text field doesn't appear when imported

    Greetings,
    I have 2 issues regarding dynamically created text fields.
    What I'm trying to do is to create a text field inside a swf file,
    then import that swf into another file. The main problem is, the
    text field is created and displayed perfectly when i execute the
    first swf, but when i try to import the whole thing into another
    file, the text is not displayed.
    I have to point out that, when I add "stage" before the
    addChildAt command, the text appears, but I don't want the
    coordinates of the text box depending on it's location on the
    stage.
    The second problem is, I want the scroll buttons to appear if
    the text is longer than the text box, however they appear no matter
    what. I trace the values and they are correct, so I can't really
    understand why they keep appearing.
    Thank you very much for your help.

    The same thing is happening to me and it is starting to get annoying. I too am using Chrome and I think that might just be part of the issue. I am running a Macbook Pro 2010 13". Any insight on this would be helpful. Sorry I don't have a solution, but know that your not alone in dealing eith this issue.

  • Getting response object field value as null when importing xsd file in wsdl

    I have created a java webservice using X-Fire 1.2.6 framework and deployed on Tomcat 6.0 server. The response of the service is a java object named LoginDetail.
    Inorder to reuse the basic elements and types we have defined them in a separate Types.xsd file which have been imported in the WSDl file using xsd:import by giving the path to the xsd file.
    Below you can see the portion of the wsdl file
         <wsdl:types>
              <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                   attributeFormDefault="qualified" elementFormDefault="qualified"
                   targetNamespace="http://webservices.gtl.de/xsd">
                   <xsd:import namespace="http://webservices.gtl.de/xsd"
                        schemaLocation="file:///D:/wsdl/LoginTypes.xsd"></xsd:import>
              </xsd:schema>
         </wsdl:types>
    After deploying the application on Tomcat I could access the WSDL using a web browser and after that I could successfully generate webservice client code using using XFire wsgen ant build.
    But when tried to call the service the fields of the response object(in my case it is LoginDetail object) returns null.
    Follwing are the main class used for running the client and the output received as webservice respone.
    Main class
    public static void main(String[] args) {
    CCLoginNewClient client = new CCLoginNewClient();
    CCLoginNewPortType service     = client.getCCLoginNewHttpPort();                         
    LoginDetail loginDetail = service.getLogin("CCLoginNew", "DE", "DE", "100", "0", "CC", "15","9344");
    System.out.println("service got in response : "+loginDetail.getService());                    
    Output
    service got in response : null
    is this the right way to import an xsd file in a wsdl file?
    Any input would be appreciated!
    Thanks in advance

    PramodDas wrote:
    Output
    service got in response : nullCheck with Apache TCPMonitor what response you are receiving from web service.
    is this the right way to import an xsd file in a wsdl file?Make sure that you really need import, not the include. However, I guess it has nothing do with the actual issue. It just to make sure that you are using right option.

  • Error when importing csv file onto ftp server database

    Hi all, i have a csv fiile that has to be imported to a ftp
    server database. The code works when i am trying out the
    application on localhost, and the data in the file is successfully
    uploaded and sent in the database. however, this becomes an issue
    on when my files are launched on the ftp server.
    I get this following error:
    SQL ERROR:Access denied for user 'istaff'@'%' (using
    password: YES)
    does anyone know what this means?
    I'm attaching my code here, perhaps it might help. Thanks!!

    taywanqi wrote:
    > I get this following error:
    > SQL ERROR:Access denied for user 'istaff'@'%' (using
    password: YES)
    >
    > does anyone know what this means?
    It means access denied...
    > <?php require_once('staffSql.php');
    > ?>
    Check this file, make sure you have the correct username and
    password
    set for your database.
    Dooza

  • I want to be able to save certain email addresses in a new folder in my address book but don't know how to make a new folder.

    How do I create a new email list in my address book? And how do I move addresses into it?

    Open the Address Book. Select File-New-Address Book
    Drag the contacts from the existing book and drop them on the folder for the new book.

  • How to merge address book fields

    Okay, here goes...
    I have created a template page in Pages so that I can print out some laser address labels and utilise the merge address book fields to speed up the process, but I have hit a problem.
    The template that I have created has 21 text boxes with address fields applied, so I thought I would end up with 21 different addresses on one page.
    Wrong! I have ended up with hundreds of pages with 21 of the same address per page, when really I want there to be 21 different addresses per page.
    What am I doing wrong here? Can Pages handle this kind of thing as I know that it works perfectly for letters where you would only have one address per page.
    Please help
    Regards
    jim

    jim_78 wrote:
    The template that I have created has 21 text boxes with address fields applied, so I thought I would end up with 21 different addresses on one page.
    You thought wrongly
    Wrong! I have ended up with hundreds of pages with 21 of the same address per page, when really I want there to be 21 different addresses per page.
    This is the normal behavior
    It's perfectly described in the Help which states:
    Inserting Recipient Data for Contacts in Multiple Cards
    You can personalize a document for multiple recipients by using multiple Address Book cards.
    To insert recipient data for contacts in multiple cards:
    Open a document that contains recipient fields.
    Select the Address Book cards you want to use, and then drag them to a recipient field.
    In the dialog that appears, choose New Document from the pop-up menu to create a new document that contains a section for each contact. Otherwise, choose “Send to printer” from the pop-up menu _to print a personalized copy of the document for each contact._
    What am I doing wrong here? Can Pages handle this kind of thing as I know that it works perfectly for letters where you would only have one address per page.
    You just didn't read sufficiently carefully the Help.
    Pages is not designed to do what you want.
    Yvan KOENIG (from FRANCE vendredi 10 octobre 2008 16:53:19)

  • How can I create a new address book in Thunderbird?

    I cannot figure out how to create a brand new address in which to place 'contacts'.

    I repeatedly followed your above instructions and "Address
    book" does NOT appear as a choice. Presently existing address books do appear but not a new address book. Perhaps I have a corrupted file????? I just don't know what to try next, I have already downloaded / installed a new copy of Thunderbird 24.4.0 directly from the Mozilla web site.
    Thanks for your efforts, sorry to bother you again. I'm frustrated!

  • Address book fields

    Hello,
    I am wondering if 08 has the ability to insert "custom" address book fields. I use the related names/custom fields for a lot of information. With the pages I currently have I can insert all the standard address book fields but it will not recognize anything I have "created" myself.
    For example I run a janitorial business and one of the fields I made was "price". I added that to the address book template so every time I add a new contact I have a field that says "price". When I go to print my bid I must manually enter the price on my pages template because only the address and name information is insertable.
    I would definitely upgrade if I can merge any record.
    Message was edited by: Bob Herbert

    I have encountered the same problem. For now I am just using a patchwork solution by using some of the standard fields to represent something other than what they are intended, but this is not optimal. Have you found a solution? Do you know if Mac is going to fix this with an upgrade of IWork or Address Book?
    Thanks,
    Capt Thurmond

  • HT5621 I recently changed my apple ID but the old on is still on my iCloud account. The old address is dimmed on iCloud on my iPad so I can't change it. How do I change to the new address?  I don't want to delete the account as I don't want to lose the pi

    I recently changed my apple ID but the old on is still on my iCloud account. The old address is dimmed on iCloud on my iPad so I can't change it. How do I change to the new address?  I don't want to delete the account as I don't want to lose the pictures

    To change it, you have delete the existing account.  However you can avoid losing any pictures in the process.  To avoid losing photo stream photos, save them to your camera roll (if not already there) before deleting the account.  To do this, open your my photo stream album, tap Edit, tap the photos, tap Share, then tap Save to Camera Roll.  (Camera roll photos are not effected by deleting the account.)
    Then go to Settings>iCloud, tap Delete Account, then sign back in with the new ID.  This deletes the account and your iCloud data from your device, but not from iCloud.  Provided you are signing back into the same account, your iCloud data will reappear on your device when you sign back in.

  • Address book entries don't sync to iPhone

    There appears to be a category of entries in my Address Book that don't sync to my iPhone 4S.  Instead of having the word "Work" or "Home" in front of the email address, it contains "email 1", "email 2", etc.  Editing the item doesn't reveal "Work" or "Home".  Any ideas on how to fix this?

    Those contacts probably live in a Microsoft Exchange address book.
    Click on the red "book mark" in Address Book to display the lists of contacts in the left-hand page, and see if you have an Exchange server configured (it would show up under an "On My Mac" section, with a name configured in Address Book preferences).
    You can either configure your iPhone to communicate with the Exchange server, or drag those contacts into the "All on My Mac" category (or another contact group on your Mac).
    Hope this helps!

  • Texts in pdf form don't appear when viewing in Acrobat nor in Reader.

    Texts in pdf form don't appear when viewing in Acrobat nor in Reader nor when printed after the form has been filled. But the texts appear when one clicks inside the field. What is the solution to be able to print and view all of the texts in all of the fields that have been typed.

    More than likely caused by someone filling out the form with Mac Preview.
    Here's a potential fix: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html

Maybe you are looking for

  • MiFi and "airprint"

    I have the verizon MiFi spot for wireless interent.  I recently purchased an HP "Airprint" printer, however, the printer doesn't seem to recognize the MiFi as "wireless interent".  Any suggestions on how I can use the printer to print from my IPad?

  • Email not working after upgrading to 7.0.3

    I've upgraded my iPad OS to 7.0.3 and immediately after I did that, my email account stopped working. It says to verify that I have entered the correct account info in Mail settings but I had not changed any of that prior to upgrading. I've tried del

  • Lumia 1020 contacts shown partially

    Hello Just purchased Nokia Lumia 1020 few days ago and I'm still struggling to get all my contacts from Android to Windows Phone. I've tried these import methods so far: Backed up my contacts on Android to SIM and imported those contacts to Windows P

  • Email temporary error.

    I keep getting the message below, fair enough but I am waiting for an important email regarding the completion date for a house sale. I have contacted BT "Help" who's answer was it should be sorted by next week. Great the house sale could fall to bit

  • Oracle.jbo.TooManyObjectsException but validated unique keys?

    11gR1 ADF I have some code similar to the code that copies the transient cart to the persistent card from the FOD, and I've receiving the TooManyObjectsException error even though I've validated that the key is unique.             for(Row tItemRow :