Unable to change Date Created in Metadata

Please help with my first post...
Unable to change Date Created field in Metadata.
I am a newspaper photographer sending .jpg pics with captions to my office from my iMac. They are viewed at the office on Windows PCs using SCC MediaGrid.
When changing Date Created in Metadata Invalid Format warning appears "Format should be ISO 8601 XML compliant, that is YYYY-MM-DDThh:mm[:ss][tz] (eg 2006-07-11T13:14:30-07:00)"
If 2009-09-26, for example, is entered then exported pictures opened up in Photoshop or shown on SCC MediaGrid do not display the date.
To get dates to show up I first have to open a pic in Photoshop, go to File Info, enter 26/9/09 in Date Created and Save As.
Next I have to Import this into Aperture where the Date Created shows as "20090926".
Using Lift Metadata and Stamp Metadata the date can be transferred to other pics.
Now when I export these pics the date does show up in Photoshop and SCC MediaGrid.
Can Date Created be typed straight into field in Aperture?...Very important when pics go into archive on a server.
Also if I hit Return key in a Metadata Caption, to type on the next line, both lines will appear as one with a small square in-between them when viewed on SCC MediaGrid on a Windows PC.
Thanks in anticipation.

Nick I don't generallt use the IPTC metadata, so I'm not sure I will be too much help.
What version of Aperture are you using? I tried both things and I didn't have any problems with the latest version of Aperture on my Mac.
I was able to enter a date into "Date Created" both with and without the time-zone adjustment. Can you tell us the exact string you tried to enter into the "Date Created" and exactly when you get the error? I tried to enter my time zone (eastern US) as "-5:00", but Aperture wouldn't let me enter the 5 and popped up the error message when I typed that key. I had to use "-05:00".
As for the caption, when I hit return, Aperture ends my edit. I cannot reproduce your described behavior of actually getting a new-line into the field. I suspect your problem (although I don't know how you get to your problem) is one of the following:
1) The IPTC standard doesn't tell if the software should use a Unix-style end-of-line (which is a line-feed), or a DOS/Windows style end-of-line (which is carriage-return followed by line-feed). Aperture may put in the Unix-style and your Windows programs don't know what to do with it.
2) The IPTC standard does indicate the end-of-line style, but either Aperture or your other programs don't follow it.
or
3) IPTC Metadata doesn't actually support end-of-line, so Aperture should not allow you to enter multiple lines, but it has a bug so it does allow you to do that.
Can you tell us where exactly you are editing the caption? I tried it in the inspector pane (on the left) in the "Metadata" tab, and then I hit the "IPTC" button at the bottom of the tab.
nathan

Similar Messages

  • PSE11: Editor changes Date Created?

    PSE11 on Win 7.
    I take pictures with my iPhone.
    Photostream them to my Windows PC.
    I copy the ones I want to keep from my Photostream Folder to a 'permanent' folder. (My understanding is PhotoStream only keeps 1,000 photos.)
    The dates in the Photostream and permanent folder are the same.
    Organizer detects the new files and I import them into my catalog.
    Organizer shows me the Date Created in General and Metadata under the Information column. The dates all match and are the date the image was taken.
    I then select an image, do a Ctrl-I to start the editor.
    As soon as the editor starts the file date in Windows as well as the Date Created in General and Metadata get changed to the current date and time.
    Shouldn't the original creation date and time be maintained? I thought this happened for my other images.
    Thanks for any help or advice.

    To disable this, uncheck "Write XMP ID to Files on Import" in the media preferences panel, or make the files readonly.

  • How can I change "date created" exif on multiple images in bridge cs6?

    I want to sort images from two different cameras, but the time was set wrong on one of the cameras. I need to match the time. In order to do that I need to change the exif "date created" on all of the images from that camera by 1 hour. Is this possible?

  • Applescript to take a file name element to change Date Created

    This so beyond me but I have been led to believe is can be done. Can anyone help me please?
    I have thousands of archive files. ALL of these files' names start with the date in dd-mm-yy format. eg. 31-01-11 File Name.pdf or 25-12-09 Filename-02.pdf
    I would like to be able to drag a folder onto an application and for that app to search through the folder and all sub-folders, for these files and change the files' Date Created to the date at the start of the filename.
    This feels so easy to type but I fear much more complicated to do however I do thank you very much in anticipation for your help.
    Best wishes
    John

    Hello
    Here's something you might try if the problem is still open.
    It uses SetFile(1) command in Developer Tools, which you need to have intalled.
    cf.
    http://developer.apple.com/library/mac/documentation/Darwin/Reference/ManPages/m an1/SetFile.1.html
    It can set creation date to any date between 1970-01-01 to 2038-01-18 inclusive.
    Simple check for date in file name is implemented so that error log is written to a log file on desktop when given date is considered invalid or SetFile raises error.
    One thing to note.
    It will process both files and directories under given directory tree in order to process package file. But it is not smart enough to leave the package contents alone, which means if a package contains a file or directory with name matching the pattern, it's creation date will be also changed.
    Minimally tested under OSX 10.2.8 at hand.
    But NO WARRANTIES of any kind. Please use it on test folder first.
    Good luck,
    H
    --SCRIPT
    on open aa
    main(aa)
    end open
    on run
    open ((choose folder) as list)
    end run
    on main(aa)
    list aa : alias list of source directories
    set logf to (path to desktop)'s POSIX path & "creationdate_error_log" & (current date)'s time & ".txt"
    repeat with a in aa
    set a to a as alias
    if (a as Unicode text) ends with ":" then -- directory
    set p to a's POSIX path's text 1 thru -2 -- posix path without trailing /
    set sh to "path=" & p's quoted form & ";
    logf=" & logf's quoted form & ";
    find "$path" -name '[0-9][0-9]-[0-9][0-9]-[0-9][0-9]*' -print0 | while read -d $'\0' f;
    do
    fn=${f##*/};
    dd=${fn:0:2}; ((d=10#$dd));
    mm=${fn:3:2}; ((m=10#$mm));
    yy=${fn:6:2}; ((y=10#$yy));
    if [[ ($d -ge 1 && $d -le 31) && ($m -ge 1 && $m -le 12) && ($y -ge 70 || $y -le 38) ]]; then
    if [[ $y -ge 70 ]]; then
    cc=19;
    else
    cc=20;
    fi
    res=$(/Developer/Tools/SetFile -d "$mm/$dd/$cc$yy 00:00" "$f" 2>&1);
    if [[ -n $res ]]; then
    echo "# $res ; failed for : $f" >> $logf;
    fi
    else
    echo "# invalid date in name : $f" >> $logf;
    fi
    done"
    do shell script sh
    end if
    end repeat
    end main
    --END OF SCRIPT

  • RAW 8.4 Changing Date Created

    I cannot change the date in Date Created in File Info. The new date shows in File Info but has no effect with sorting as the File Properties shows the original date. I have tried MM/DD/YYYY and MM/DD/YYYY 00:00:00 AM.
    Fujifilm X-T1 RAW files

    I found my answer...
    To change the date use the "Date Time Original" field.

  • Change "Date Created" on File Folders

    What is the easiest way to change or alter the "Date Created" on file folders - To a date that is 6 months older? (OS 9.1)
    I need to store my photos in a single large chronologically ordered file. Some of them are sourced from scanned photos and some are received in emails from folks.
    I want to store them in the same date order as the day the photos were taken and NOT the day I filed them.
    Thanks.........Robert

    Neil and Don,
    I figured out a way to allow me to change the "Date Created" to any date I desired.
    1. Open "Date & Time" file in "Control Panels".
    2. Set the date desired (i.e. 6 months earlier.)
    3. Then Close "Date & Time"
    4. Now in (finder) click on "Command + N",
    This creates an "untitled file folder" on the desktop
    with the newly selected "Date Created".
    5. Give the new file folder the name desired.
    6. Drag the desired files to the newly created file folder
    and drop them.
    7. Trash the OLD Date Created Folder.
    8. Remember to go back to "Date Created" in "Control
    Panels" and change back to the current date.
    The above took care of my original question; But, I decided to use the same technique to change the "FILE" date created,
    rather than the "FILE FOLDER".
    I opened my digital camera software and took a ".jpg" photo file and did a "Save As" while "Date & Time" were in the altered state. My .jpg photo file now has the new "Date Created".
    I know that Niel and Don are completely aware of such a technique, But, I figured other forum members may find this method useful.
    Thanks for all of your continuing help........Robert

  • Changing 'Date Created' on photos?

    I have a number of scanned images, which I have imported into iPhoto. Of course, the 'Date Created' corresponds to the date I scanned the negative, and not to when the photo was taken.
    I like the way I can sort photos by date order in iPhoto as it helps me find photos easily. However, the problem arises when my scanned images from 2003, for example, appear under August 2005!
    Is there any way to modify the 'Date Created'? I can do it on the 'Info' pane within iPhoto '06, but this does not change the file attributes.
    (I suppose I could put the date on my computer back a few year when scanning!!??)

    Glad that helped Tim.
    To answer your question. Yes, you would have to export the scanned files out of iPhoto and reimport for iPhoto to reorganize using the new creation date.
    As you outlined, I usually drag the photos out of iPhoto to the desktop or a "Scanned Photos" folder, etc. Then move the photos that are in iPhoto to iPhoto's trash (of course you will lose keywords, etc). This way they are out of the library. I then would make the date changes on the files dragged out of iPhoto, and then finally drag them back into iPhoto for importing.
    Plus you can always organize the photos into separate folders after assigning the new dates so when importing, your roll names will be created as well. After importing, assign your keywords to the "new" pictures.
    I just upgraded to iPhoto 6 about 10 days ago and never specified roll names in iPhoto5. The Year/Month/Day organization was fine with me. Keywords are my big thing and I really didn't care how iPhoto decided to house my photos. But after seeing the new iPhoto 6 directory structure, I ended up Viewing by Roll and assigning roll names, spliting where needed, etc).
    Not sure if this will work out for you... depends on how many photos you are looking at changing!
    Good Luck!
    Skip

  • OS X lion changes "Date Created" for old files that I edit or update.

    Whenever i edit my old photos and save the changes, Finder changes the "Date Created" for that file to the date of the last edit.
    This is annoying as i used finder and date created to search through my old images. Is there any way to get it back to functioning like the previous system ?

    StoneComputers wrote:
    What about the incredable lag time from clicking on a program to the time it opens (or the time till the loading screen starts)? I wish I could record it and play it so I could see if thats normal from other members... the icon just sitting there for over 35 second (I just counted 36 till the loading screen popped up) at first I thought it was me not clicking hard enought cuz the mouse button I have is real stiff (any ideas on that?) but no it takes that long just to get to the app loading screen... this happens every time same amount of time with the 3 programs I use the most, prolly more but I know for a fact world of warcraft, uTorrent, and Google Chrome. I would just chalk it up to slow hardware but they load real quick in windows 7 and once this bad spot is loaded the program runs so fast and nice afterword. Maybe some tweeks? I wonder if this would happen in Snow?
    The coment "few outdated programs" Ive seen alot its not just a few its a lot and since games are not Apple's strong point I would think they would want to keep as many as they could...
    An example of the rants you will see from a lot here. Don't be put off as these problems are generally user specific, and these same old comments come out after the release of every OSX I can remember. When Lion is upgraded  to the next OSX you can gaurentee these forums will be full of people screaming about how great Lion was. Happened with Tiger, Leopard and Snow Leopard.
    So come to think of it you may be better off Googling sites that give you unbiased views on Lion, rather than expect any positive comments here. For every one complaint there are probably 100,000 people with no issues.
    Cheers

  • Unable to change data source of any report

    Hello there,
    I am using the Crystal Reports Eclipse plugin. I added a datasource to Eclipse 3.3 which connects to a Oracle database using JDBC.
    Now I want to change the data source of a report. I get a popup window which displays the old data source with all tables and columns on the left side. On the right side of the window I see the name of the new data source at the top, but a list of "remove" options below it with a red cross in front (see screenshot).
    It does not matter if I want to change an existing report or a new report.
    I can create a new report with a datasource, but even when I want to change to the same datasource as already assigned to the report, I get the problem described above.
    I already followed some tips found in this forum, e.g. expanding all used tables in the data source explorer etc., but this did not help.
    I know that there was also a possibility to remove the "data source" information completely from the query (as mentioned at http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do;jsessionid=2F140BDBA03E8E97EEF1E15F84964F12?cmd=displayKC&docType=kc&externalId=c2017570&sliceId=&dialogID=13402443&stateId=1%200%2013406567), but I cannot find this option in Crystal reports for Eclipse. I see a field "qualified name" in the properties of each table of my report, but this field is read-only...

    Doesn't anyone have an answer to this problem? I would just like to change the datasource of a report. But I am not able to do so, because the only option I have in the dialog is to remove all tables.
    I just saw that the screenshot is missing. See it here:
    http://img119.imageshack.us/img119/4999/pic1dh1.png

  • Z22 Unable to change date in Preferences

    My Z22 works fine except that I am unable to set the date in the Preference screen. When I do correct the date and press "Done" it goes back to 01/02/2005.  I am able to HotSync OK and have tried a reset with no luck.
    Post relates to: Palm Z22

    Hi.. Welcome to the Palm forums.  If I am understanding this correctly you can change the time but as soon as you leave the screen, save the changes, it referts back to /1/02/2005.  Now you state you did a reset, I'm assuming you mean you pressed the reset button on the back.  That is whats called a soft reset, like rebooting your computer.  What I would recommend is to do a hard reset.  Be sure you have synced your data as this will delete all data on your device.  Then before you sync data back to your device test the data and see if it holds.  If so sync data back and test again to insure its not some software that has been installed when you resynced causing the problem.  If you need instructions on how to do a hard reset go to   http://kb.palm.com/SRVS/nua/launchKB.asp?c=887

  • Unable to change Data label position in the Chart using Position from Properties

    Hi All,
    I am trying add the Data label to the chart and the users want them to appear on the top of the stacked bars. By default when I enabled the data labels it showed up in the middle. When I tried to change the position by doing 
    View --> Properties --> Position --> Top/Bottom/any of other 8 options   -- it does move a bit
    I even tried deleting chart and recreating it.
    What am I missing? Thanks in advance.

    Hi Ranjith_SQL,
    According to your description that you have add the Data label on your stacked column chart  which by default display in the middle of the chart, you want them to appear on the top of the stacked column chart, right?
    For a Stacked Column Chart, the data labels are always placed in the center of the Series bars. This is by design. I also  test it on my new version of SSRS 2014  and find have the same result.
    If you really need the data label to display on the top, I recommend you to change the chart type to column chart which by default have the Data labels display at the top of the column: 
    You can also submit an wish at
    https://connect.microsoft.com/SQLServer/
    If the suggestion mentioned by customers for many times, the product team may consider to add the feature in the next SQL Server version. Your feedback is valuable for us to improve our products and increase the level of service provided.
    Thanks for your understanding.                        
    Regards
    Vicky Liu

  • Unable to change file name in Metadata pane - Lightroom 2

    I can't seem to activate the file name area in the Metadata pane in the Library module. It is solid gray and I cannot make the area active. With the correct folder active, the files seem to be normal in all visible ways, but the ability to change the name is not available. This is true in Grid or Loupe views. It is true with only one Active image. Any thoughts?

    Are the images on-line? Though that shouldn't make a difference. You should still get a non-grayed out filename and get a warning dialog, instead if you try to set a name change.
    Don

  • Unable to change date selections in data selection tab

    Hi experts,
    I'm new here, i scheduled the init load with date selections in the data selection tab, i successfully loaded the data and now i want to go for the delta but i'm unable to delete the date selection in the data selection tab. what problem is this.
    can we load the data with the same selections in delta update ? how can we delete the date selections
    orelse nothing happens even if there is a selection in the data selection tab? the date is a past one.
    help me out plz
    regards

    delta loads copy the selections from the init load.
    Often while scheduling delta loads u will see a message 'selections copied from the last init load'.
    cheers,
    Vishvesh
    Message was edited by: Vishvesh

  • Unable to change data source at runtime

    I have a simple Crystal Report based on a MS-SQL stored procedure that takes one parameter.  I developed it against my dev database, so when I run the application, I want to point it at our production database, but no matter what I do, it always calls the stored proc in my dev database.  Here's what my code looks like:
    // Code to set data source and launch report in viewer
    CrystalDecisions.Web.Report cr = new CrystalDecisions.Web.Report();
    cr.FileName = "UniformSizesByProject.rp";
    this.crsource1.Report = cr;
    this.crviewer1.RefreshReport();
    this.crviewer1.EnableDatabaseLogonPrompt = false;
    ParameterFields pfs = new ParameterFields();
    ParameterField pf = CreateParameterField("@Project_ID", _projectID);
    pfs.Add(pf);
    this.crviewer1.ParameterFieldInfo = pfs;
    this.crviewer1.ToolPanelView = CrystalDecisions.Web.ToolPanelViewType.None;
    this.crviewer1.LogOnInfo.Clear();
    CrystalDecisions.Shared.TableLogOnInfo logon = GetReportLogonInfo(ConfigurationManager.ConnectionStrings["PMEntities"].ConnectionString);
    this.crviewer1.LogOnInfo.Add(logon);
    private CrystalDecisions.Shared.TableLogOnInfo GetReportLogonInfo(string ConnectionString)
         CrystalDecisions.Shared.TableLogOnInfo logon = new CrystalDecisions.Shared.TableLogOnInfo();
         CrystalDecisions.Shared.ConnectionInfo connInfo = new CrystalDecisions.Shared.ConnectionInfo();
         connInfo.ServerName = "(MyServerName)"
         connInfo.DatabaseName = "(MyDatabaseName)"
         connInfo.UserID = "(MyUserId)"
         connInfo.Password = "****"
         return logon;
    When I debug, I can verify that the LogOnInfo object is set to use my production server, the resulting output proves it is still running against my dev server.  I haven't run into this in similar apps I'm working with and the only difference with this one is that it's using a stored proc rather than command SQL or hitting the tables directly.
    - Robert -

    Hi Robert,
    Take a look at the SAP Note "[1553921 - Is there a utility that would help in writing database logon code?"|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_bi/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333533353333333933323331%7D.do]
    The utility provided in above SAp Note will generate the logon code for your existing report, update the logon information of the target database in the code.
    Also search for the sample application 'change database at runtime' in top right corner search box.
    Hope it helps,
    Thanks,
    Bhushan.

  • Help! Bridge Changing my created dates

    Oh dear ... I am just learning Bridge and into the Keywords area. I have been adding some Keywords into my photos and occasionally rotating a photo. All was going well, then suddenly the Date Created started changing to today's date ... what am i doing wrong?????
    I'm in Win Vista everything current with the updates and using CS4.
    Thanks,
    Sherry

    Sherry - Both links still work for me, but I copied post #7 on second link about lightroom for you. Hope this works for you.
    John O'Connor - 12:07pm Jan 30, 08 PST (#7 of 13) Edited: 30-Jan-2008 at 11:08am
    In Bridge, "Date Created" is the date the Photograph was taken: i.e the date recorded by your camera and stored within the file. "Date File Created" is the date when you created the file on disc, that is the date/time when you downloaded the picture from your camera.
    In Lightroom, you can change "Date Created" by using Metadata->Edit Capture Time. The metadata panel shows this as "Date Time Digitized" and "Date Time Original".
    (take a look at Exif specification, http://www.exif.org/specifications.html.
    On page 30, it explains DateTimeDigitized and DateTimeCaptured; both are usually the same for a digital camera, maybe not if it is really slow!).
    So, Bridge's sort by "Date Created" is that recorded by Camera, whereas "Date File Modified" is the date your file on disc was modified.
    A pity, though, that different Adobe programs would not use the same terminology.

Maybe you are looking for

  • Inter company AR/AP open item clearing - Urgent

    Hi, my client is having 3 company codes, these companies exchange goods/services for which intercompany vendor and customer is billed.when it comes to clearing of open items in intercompany vendor/customer client demands some automated approach to re

  • L512 Wont Boot , Splash Screen then stuck blank screen and Fan in full throttle

    I was using the laptop, then it went to suspend mode due normal timeout. When it came back, the fan start to spin full throttle but it was functionating  beside that, normally. I restarted but then it never boot again. This is the process where it ge

  • Converting 2 tier to 3 tier?

    hello friends! I had a Java project which is developed using JSwing(Two Tier Architecture). I wish to convert it to Three tier Architecture. Can anyone suggest me how to do this effectively?

  • PB Camera's not Working : (

    The front camera went out, I switched to the rear camera took one pic and then it went black as did the front one. I still have the camera moce tool bar choices, zoom, movie/camera etc. just no picture on screen. Other that replacing the camera any t

  • Not that it's biggy but whatsup with my new iPad freezing up...

    Not that it's biggy but whatsup with my new iPad freezing up... Should I be worried?