Want to change picture dates

I recently bought a new camera but foolishly did not set the date/time. I have now set this function but alot of my photo's dates are off. I want to change the date/time, but I don't think I want to do a "batch date change" because I want all the date/times to be accurate. What I want to do is simply select all of the messed up photo's and shift the time forward the same amount for all the photos. I saw a post from a guy who said he did exactly what I'm describing except he didn't explain properly, that or his version of iphoto works different then mine. I am using version 6.0.6.
Thank you for your help in advance.

Since this is the iPhoto '08 (version 7.x.x) discussion you will find that many things work differently (like adjust date & tiem did not exist in iPhoto 6). It would be best to post your questions in teh forum that relates to your software.
iPhoto '08 does EXACTLY what you want with the new adjust time & date feature so an upgrade to iLife '08 would be another solution to your date adjustment desire.
Larry Nebel

Similar Messages

  • Want to change billing date but computer says no

    My billing date for phone and broadband is the 6th of the month, with payment being taken around the 20th, which has been fine up until now. However my employer has now changed my salary payment date and I'd like to change the bolling date so that the payment isn't taken until after the 1st.
    Firstly, why is it seemingly impossible to email anyone to ask about this? All the "contact us" links just take you back to a phone number and I'm at work during the non-automated times so it's not easy for me to make a call.
    Anyway, make a call I did, spoke to somebody in the call centre, tried explaining the situation, but they only seemed to hear the "change billing date" part and didn't seem the least bit interested in the whys and wherefores, then it was just a case of "computer says no, is there anything else I can help you with"
    I can't see why this is such a big problem. It's not like I'm asking not to pay or anything, I know that the first bill after I changed dates would be higher, because it would cover an extra couple of weeks, but I don't see why it's beyond the realms of possibility to put the bill date a couple of weeks.
    I managed it with my mortgage, which is considerably higher than my BT bill
    A quick email to the mortgage company, had a letter back a couple of days later confirming the payment date had been changed and the first payment on the new date would be an extra £xxx to cover the difference, all sorted no problem. Why do BT make things so difficult?
    Solved!
    Go to Solution.

    Try as I might, there seemed to be absolutely no option to change "whole bill direct debit" so I can't quite see how you can do it online, the only option I could see was to set up a DD, but I've already got one.
    Anyway, all sorted now, thanks to a 5 minute online chat. I'm now swtiched to a MPP, which is for give or take a few pence, exactly the same as my monthly bills have been and instead of my next payment being taken on the 20th of this month, it's now going to be taken on the 2nd of next month and every month thereafter, which is exactly what I wanted to do.
    Quite what the difference between whole bill monthly and MPP, I'm not quite sure but it's sorted

  • I want to change the date format MM/YYYY to MM.YYYY in web report

    Hi to all experts,
       Here  the problem is: when i run a report for variable input when we select date as MM/YYYY its getting error . Here i need to change MM/YYYY to MM.YYYY. can u please tell me where exactly i need to change means in BEx or Web? if it is BEx where it is exactly pls tell m ethe step to step procedure.
    Its urgent!
    ( I will assign the points if its useful to me)
    Advance Thanks,
    Shah

    Hi Siggi,
            In su01 if we go  and change the date format from MM/YYYY to MM.YYYY  for a particular user ex:ss11 , if another user ex:bst55 try to run the web report he/she may get same error .If we make the change in su01-> default tab->under date format for a particular user , is it work for other users?
    Can u tell me step by step where exactly we need to go in AWB and where need to modify.
    I am looking for ur answer.
    Thanks in Advance
    Shah

  • Want to change Del Date and Goods Issue date in Delivery scdl tab of PO

    Hi Gurus,
    I am in a situation wherein i need to change the Goods Issue date in Delivery schedule tab of Purchase Order and make it equivalent to Delivery date in the same tab.
    Currently the Goods issue date that is taken by default will always be one day after the Delivery date.
    Where is the control for this???
    Regards,
    Trishul

    Hi Jürgen,
    Thanks for your response. You are right. The Process is STO.
    The delivery has not been created as yet.  Everything is happening while creating the PO. The settings are such that the delivery date will be taken by the system automatically by doing the Availability check and simultaneously the goods issue date will be updated. But it will be one day later to the delivery date. But i want this to be same.
    Incase if i change the Goods Issue date manually, this is the message i get "Goods issue cannot be carried out in the past"
    Message no. V1062
    Please let me know if i am not clear.
    Regards,
    Trishul
    Edited by: Trishul Das on Mar 17, 2009 4:09 PM

  • How can I change picture data to image data

    I have an array that I am displaying in a picture control as an 16-bit data type. How can I change this into an Image data type with out saving it first?

    Sean,
    Use IMAQ ArrayToImage, which will take your array and convert it to an IMAQ image.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • I want to change the date format

    Hi,
    I am having a date format 17.11.2005 but the system is taking it as 20051117 how to send the 17.11.2005 format to the system .It should not get converted.
    Regards
    Mave

    HI,
    Code this as a function module and use it inside your program.
    ""Local interface:
    *"       IMPORTING
    *"             REFERENCE(I_FORMAT) DEFAULT 'YYYYMMDD'
    *"             REFERENCE(E_FORMAT) DEFAULT 'YYYYMMDD'
    *"             REFERENCE(I_DATE)
    *"             REFERENCE(I_USE_USER_SETTINGS) TYPE  FLAG
    *"                             DEFAULT SPACE
    *"       EXPORTING
    *"             VALUE(O_DATE)
    *"       EXCEPTIONS
    *"              UNKOWN_FORMAT
    *"              ILLEGAL_DATE
      DATA: l_yyyy(4), l_mm(2), l_dd(2),
            l_date TYPE d.
      CASE i_format.
        WHEN 'YYYYMMDD'.
          l_yyyy = i_date(4).
          l_mm   = i_date+4(2).
          l_dd   = i_date+6(2).
        WHEN 'DDMMYYYY'.
          l_dd   = i_date(2).
          l_mm   = i_date+2(2).
          l_yyyy = i_date+4(4).
        WHEN 'YYYY-MM-DD' OR 'YYYY/MM/DD' OR 'YYYY.MM.DD' OR 'YYYY MM DD'.
          l_yyyy = i_date(4).
          l_mm   = i_date+5(2).
          l_dd   = i_date+8(2).
        WHEN 'DD-MM-YYYY' OR 'DD/MM/YYYY' OR 'DD.MM.YYYY' OR 'DD MM YYYY'.
          l_yyyy = i_date+6(4).
          l_mm   = i_date+3(2).
          l_dd   = i_date(2).
        WHEN OTHERS.
          RAISE unkown_format.
      ENDCASE.
      IF i_use_user_settings = 'X'.
        CONCATENATE l_yyyy l_mm l_dd INTO l_date.
        CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
             EXPORTING
                  date_internal            = l_date
             IMPORTING
                  date_external            = o_date
             EXCEPTIONS
                  date_internal_is_invalid = 1
                  OTHERS                   = 2.
        IF sy-subrc <> 0.
          RAISE illegal_date.
        ENDIF.
      ELSE.
        CASE e_format.
          WHEN 'YYYYMMDD'.
            CONCATENATE l_yyyy l_mm l_dd INTO o_date.
          WHEN 'DDMMYYYY'.
            CONCATENATE l_dd l_mm l_yyyy INTO o_date.
          WHEN 'YYYY-MM-DD'.
            CONCATENATE l_yyyy l_mm l_dd INTO o_date SEPARATED BY '-'.
          WHEN 'YYYY/MM/DD'.
            CONCATENATE l_yyyy l_mm l_dd INTO o_date SEPARATED BY '/'.
          WHEN 'YYYY.MM.DD'.
            CONCATENATE l_yyyy l_mm l_dd INTO o_date SEPARATED BY '.'.
          WHEN 'YYYY MM DD'.
            CONCATENATE l_yyyy l_mm l_dd INTO o_date SEPARATED BY space.
          WHEN 'DD-MM-YYYY'.
            CONCATENATE  l_dd l_mm l_yyyy INTO o_date SEPARATED BY '-'.
          WHEN 'DD/MM/YYYY'.
            CONCATENATE  l_dd l_mm l_yyyy INTO o_date SEPARATED BY '/'.
          WHEN 'DD.MM.YYYY'.
            CONCATENATE  l_dd l_mm l_yyyy INTO o_date SEPARATED BY '.'.
          WHEN 'DD MM YYYY'.
            CONCATENATE  l_dd l_mm l_yyyy INTO o_date SEPARATED BY space.
          WHEN OTHERS.
            RAISE unkown_format.
        ENDCASE.
      ENDIF.
    ENDFUNCTION.
    Your problem will be solve.

  • I want to change the end date in SAP HCM Appraisal model

    Hi all,
    The short dump gives out this message:
    Object type SUBTY cannot be read for message type HRMD_A from segment type E1PLOGI
    i want to change end date of the appraisal model multiplier, where i have to go and change the same.

    declare variable:
    DATA : gv_date(10) TYPE c.
    and assign value to it:
    CONCATENATE sy-datum+4(2) sy-datum+6(2) sy-datum(4) INTO gv_date SEPARATED BY '/'

  • Not able to change the data of test data containers in production system

    Dear All,
    We have created eCATT scripts in Development SolMan System and moved the transports to Production SolMan System.  Customer wants to change the data at Test data containers and run the scripts in production system but we are not able to edit the data. 
    May be the reason is SCC4 transaction code has set the below option.
    Changes and transports for client-specific Objects
    u2022 No changes allowed
    Customer doesnu2019t want to change the above option and wanted to change the test data containers to give different datau2019s and run the eCATT scripts.
    Could you please let me know the solution for this?
    Your help is really appreciated.
    Thanks,
    Mahendra

    eCatt has the feature where you don't need to transport the scripts or test configuration to our target system. We can keep all our scripts and test data in Solman and run this script any other system in your landscape using the System data container and target system.
    Maintain the production as one of the target system in System container in Solman and point that system while running the script. Change the test data in Solman to run this script.
    Let me know if you need more information
    thanks
    Venkat

  • How to change delivery date (LFDAT) in  me57 item data

    hi ,
    While  Creating purchase order  (me57)  . on the basis  of info rec   . i want to change  delivery date  by
    passing  info rec to table eine and get field aplfz  .
    then adding  aplfz to sysdate    and pass it to 
    Delivery date   .
    i have done this using USER EXIT  EXIT_SAPMM06E_016
    and modified table  teket  with field eindt   but still in screen fields  it shows  old date value   .
    After Debugging i found that  that  it passes value from internal table ETT[] .
    how to modify internal table ETT[]  which is used to display data on screen   .
    regards
    Deepak.
    Edited by: Deepak Dhamat on Jun 8, 2011 8:32 AM
    Edited by: Deepak Dhamat on Jun 8, 2011 10:35 AM

    hi ,
    i have  implemented BAdi  me_process_po_cust
    for changing Delivery date   .
    method if_ex_me_process_po_cust~process_item .
    data : eeind_dt type eket-eindt ,
             t_aplfz type eine-aplfz ,
             delivery_dt(10) type c.
      ls_item = im_item->get_data( ) .
    if sy-tcode = 'ME21N' .
        select single aplfz into t_aplfz  from eine
          where infnr  = ls_item-infnr .
        if sy-subrc = 0 .
          if t_aplfz is  not initial  .
            eeind_dt  = sy-datum  + t_aplfz  .
            concatenate  eeind_dt6(2) eeind_dt4(2)  eeind_dt+0(4) into delivery_dt .
          endif.
        endif.
        ls_item-eeind = delivery_dt .
        call method im_item->set_data
          exporting
            im_data = ls_item.
        clear : delivery_dt  ,t_aplfz  ,eeind_dt .
      endif.
    regards
    Deepak.

  • How to change the data in a chart using slider bar ?

    hi community,
       i have issue, i created one SDK extension slider bar based on that i want to change the data in chart.
    my requirement is like, i have month and some measures in a chart  i want to set month in a slider bar if am moving slider according to that values should be change in chart.

    You could try the following.
    Pull the month dimension values into an object, where each dimension value is assigned to a "numeric" (air quotes, actually a string) attribute.
    Something along the lines of:
    var myMonths = new Object();
    myMonths["0"] = <month0_key>;
    myMonths["1"] = <month1_key>;
    Then, you assign the range slider a set of numeric values, from 0 to n, where n is the last attribute in myMonths.  When the user changes the slider values and the OnChange is fired, use the numeric values of the current slider positions to get the appropriate range filter values out of myMonths.
    I've not tried this yet, so I don't yet know what pitfalls you'd run into.
    Cheers,
    Dave

  • How can I change the date old photos were taken when I only know the year?

    I've scanned lots of old photos and I want to change the date to reflect when they were taken. In some cases I only know the year and I don't want inaccurate information to be assigned by the software. How can I do this?

    Actually a specific wrong date is no more inaccurate than a year with no more info - neither is correct, just incorrect in different ways
    the software de not ever assign a date to a photo - you do o your camera does
    iPhoto has no provision for an approximate date do you have to leave them undated in the EXIF fields and use a description field or pick a date to use for unknown - 1/1/xxxx is one suggestion
    LN

  • How to Change the data type of infoobject from NUMC to CHAR

    Hi Experts,
    I have created an infoobject with data type as NUMC, i used in DSO as a key figure and i have loaded data up to PSA.
    Now i want to change the data type of this Info Object from NUMC to CHAR.
    Can anyone suggest me the solution for this issue.
    Regards,
    Venu Gopal.K

    Hi pavan/binu,
    I have not loaded data into DSO i just added IO in Key fields and i started editing this IO then im facing error like
    1.Master Data Table /BIC/PZCUSTOMER contains data: Characteristic ZCUSTOMER cannot be activated     
    2.SID Table /BIC/SZCUSTOMER contains data: Characteristic ZCUSTOMER cannot be activated
    Im also unable to edit the P & S tables in SE14.
    NOTE:I have data only in PSA and when im trying to load data to DSO Im facing these issues.

  • How to change value date from posting date to net due date

    Hi Gurus,
    My client wants to change value date from posting date to net due date. currently posting date is considered as value date but in future client wants to change value date to net due date of documents.
    1. what configurations need to be maintained to change value date from posting date to net due date.
    2. Will these changes effect automatic payment run.
    Thanks and Regards,
    Suresh

    Hi Suresh,
    In Future
    While posting the documents you can mention the value date as due date of the documents.
    For already posted documents
    You can change the value date to net due date.
    If the value date is display mode i.e. if you are not able to change the value date in FB02 (Document Change Mode), use OB32 transaction and make value date field as eidtable (BSEG-VALUT).
    In OB32 transaction enter all the required fields like Account type, transaction type, company code and finally activate the Field can be changed check box.
    But not sure, whether we can change the value date to previous date or not?
    This would help you..
    Regards,
    Praisty
    Edited by: Praisty on Jul 28, 2009 9:56 AM

  • Change due date in receivables for credit check

    Hi Sappers!!
    Scenario: When SAP performs a credit check for a customer we need that pending receivables
    (open items) for this customer which have a concrete payment method, don't use due date
    for calculation, instead we want to use invoice date for carrying out the credit check
    calculation.
    Is that posible? Is there any user-exit where we can change this date to be used during
    credit check control for documents which fulfill this requirement?
    We don't want to change permanently the due date for this kind of documents, we only need to take another date into account when performing credit control.
    Thanks so much in advance & best regards

    Thanks so much for your quickly answer.
    Creating a new payment term is not a valid solution because, we don't want to change any date in the financial document. We just only need to use another data only for credit check. Here you have a concrete example:
    Invoice created with invoice date 01/12/2009
    Payment method confirming 90 days.
    Base line calculated: 01/03/2010
    If we create a new sales order, this open item will not be considered exceeded because due date is still in the future.
    We want to consider it as exceeded and the due date would be 01/12/2009 but only for credit check. This "new" due date must not be stored anywhere.
    Thanks so much once again & best regards

  • BADI ME_PROCESS_PO_CUST for changing header data

    Hello Experts,
    I'm using Method PROCESS_HEADER in Badi ME_PROCESS_PO_CUST in order to change some header data.
    I want to change header data depending on the partner data which are on header level.
    It works fine as long as there are data changed in the header or item level and not only on the partner screen.
    The method in this Badi isn't processed if only partner data are changed. But for me it is necessary to set a special field on the header depending on the partner data.
    Regards,
    Sven

    Hi,
    Firstly, for changing Header data without any INSERT/UPDATE?MODIFY statement, badi - ME_PROCESS_PO_CUST  will not be useful.
    As method you mentioned has no header parameters under CHANGING / EXPORTING clause.
    You can use the badi which has the parametrs you want in either change/ Export mode. It can be defined under table also.
    Below is the list of important badis gettign called, however none of them contains header values in change/export clause.
    ME_CCP_ACTIVE_CHECK
    MD_STOCK_TRANSFER
    ME_DEFINE_CALCTYPE
    ME_PO_PRICING
    ME_FIELDSTATUS_STOCK
    ME_COMMITMENT_STO_CH
    ME_COMMITMNT_PARKING
    ME_INFOREC_SEND
    ME_CHECK_SOURCES
    ME_PURCHDOC_POSTED
    Instead you can use enhacement MM06E005  Customer fields in purchasing document.
    Create a project under Transaction CMOD.
    Assign enhancement as Project component.
    You'll find Exit 012. At time of save you can change header im_ekko based on you parterner data tab.
    Regards,
    Amee.

Maybe you are looking for