Created by newer version- HELP!

I have not used iTunes for a couple of weeks and today I tried using it and i had a error message that read "iTunes library could not be read because it was created by a newer version of itunes". How can I now listen to my music? Help!

Problem solved. I downloaded the itunes update and now it works fine...

Similar Messages

  • Want to create Document new version with BAPI_DOCUMENT_create2

    Hi,
    I want to create a document with new version with the help of existing document in DMS. In my development of module pool
    i can add new file and also i can create new version of existing document. all this i can do from my Z-development.
    When on initial time when there is no dicument exist BAPI creating new document correctly with attached files. also i am able to create a new version of that document if i am excuting applicatin from my PC. if this appication run from another system to generate new version BAPI is giving me Error.
    i am passing below data in DOCUMENTFILES(table parameter of BAPI) for existing File which is available already in older version.
    DOC_HEADER-DOCUMENTTYPE = 'ABC'
    DOC_HEADER-DOCUMENTNUMBER = '456'
    DOC_HEADER-DOCUMENTVERSION = '00'
    DOC_HEADER-DOCUMENTPART = '000'
    FWA_DOCFILE-STORAGECATEGORY = 'ZDMS'.
    FWA_DOCFILE-WSAPPLICATION = PFX_EXT.
    FWA_DOCFILE-DOCPATH = F_FILEPATH.
    FWA_DOCFILE-CHECKEDIN = ''.
    FWA_DOCFILE-ACTIVE_VERSION = 'X'.
    FWA_DOCFILE-DOCUMENTTYPE = WA_COMDOC-DOKAR.
    FWA_DOCFILE-DOCUMENTNUMBER = WA_COMDOC-DOCNR.
    FWA_DOCFILE-DOCUMENTPART = WA_COMDOC-DOKTL.
    FWA_DOCFILE-DOCUMENTVERSION = WA_COMDOC-DOKVR.
    FWA_DOCFILE-APPLICATION_ID = WA_DOCFILE-APPLICATION_ID.
    FWA_DOCFILE-FILE_ID = WA_DOCFILE-FILE_ID .
    FWA_DOCFILE-DOCFILE = F_FILENAME.
    APPEND FWA_DOCFILE TO FIT_DOCFILE.
    I am passing all those data which i am getting from BAPI_DOCUMENT_GETDETAIL2 for existing attached file. Need help.

    use BAPI_DOCUMENT_CREATENEWVRS2 ..

  • Update and create a new version of a PO

    Hi all experts,
    I'm doing a simple report to synch POs between an R3 and the SRM system. In order to do this, the report (who's running on the SRM) does as follows:
    1) given a PO number, retrieves from the backend all the PO-related tables (and translate them into SRM-like structures, but this is a minor note);
    2) retrieves details for the PO specified in SRM (BBP_PD_PO_GETDETAIL);
    3) perform a mapping between SRM items and corrispective R3 ones.
    4) update eventually some fields from the R3.
    5) then, finally, tries to do an update. And here the mess begins... I can't manage the update phase to do what I want...
    First of all; I retrieve all the data I need from the SRM system as follows:
    CALL FUNCTION 'BBP_PD_PO_GETDETAIL'
        EXPORTING
    *     I_GUID                           =
          I_OBJECT_ID                      = p_ebeln
    *     I_ATTACH_WITH_DOC                = ' '
          I_WITH_ITEMDATA                  = 'X'
    *     I_READ_BE_DATA                   = ' '
    *     I_ITEM_SORTED_BY_HIERARCHY       =
    *     I_WITHOUT_HEADER_TOTALS          =
        IMPORTING
          E_HEADER                         = srm_header
    *     ET_ATTACH                        =
        TABLES
          E_ITEM                           = srm_item
          E_ACCOUNT                        = srm_account
          E_PARTNER                        = srm_partner
          E_CONFIRM                        = srm_confirm
          E_LONGTEXT                       = srm_longtext
          E_LIMIT                          = srm_limit
          E_ORGDATA                        = srm_orgdata
          E_TAX                            = srm_tax
          E_PRIDOC                         = srm_pridoc
          E_MESSAGES                       = srm_messages
          E_ACTVAL                         = srm_actval
          E_ACC_ACTVAL                     = srm_acc_actval
          E_VERSION                        = srm_version
          E_HEADER_REL                     = srm_header_rel
          E_ITMLIM_REL                     = srm_itmlim_rel
          E_STATUS                         = srm_status.
    Then, since the modifications required are just at item granularity, I work on the srm_item table (i.e., let's say that the X item has its description changed).
    The problem is the UPDATE task: basically, I tried to use the BBP_PD_PO_UPDATE as follows:
    CALL FUNCTION 'BBP_PD_PO_UPDATE'
        EXPORTING
         i_park                       = 'X'
         i_header                     = s_headeru
         I_SAVE                       = ''
    *   IV_REJECT                    =
    *   IT_ATTACH                    =
        IV_WITH_CHANGE_VERSION       = ''
    * IMPORTING
    *   E_CHANGED                    =
    *   ES_HEADER                    =
       TABLES
         i_item                       = v_item
    *   I_ACCOUNT                    =
    *     i_partner                    = t_partner
    *   I_CONFIRM                    =
    *   I_LONGTEXT                   =
    *   I_LIMIT                      =
    *   I_ORGDATA                    =
    *   I_TAX                        =
    *   I_PRIDOC                     =
         e_messages                   = t_messages    .
    CALL FUNCTION 'BBP_PD_PO_SAVE'
    EXPORTING
    *    IV_WORKITEM_ID               = srm_header-object_id
    *     IV_USERTYPE                  =
         IV_HEADER_GUID               = srm_header-guid
         IV_CREATE_HIST_VERSION       = 'X'
    COMMIT WORK AND WAIT.
    where s_headeru is simply an adeguate structure for the FM (MOVE-CORRESPONDING srm_item TO s_headeru), so nothing new.
    Issues: this code actually updates the PO. I can see on the SRM web interface that the order's been updated (e.g. modified description)... BUT there's no trace of the previous version. Calling the UPDATE FM in this way pratically overwrites the order on SRM.
    IV_WITH_CHANGE_VERSION field seems not working: if I flag this field ('X') the update fm seems not working.
    Can anybody help me understanding how these FM calls and parameters works?
    I'd like to manage 3 different cases:
    - overwrite the version in update (OK, I got it),
    - overwrite the version in update and try to distribute (OK, got it just flagging the 'iSave' param);
    - don't overwrite, but create a new active version and don't distribute (that's still missing.. )
    Thanks in advance and forgive this huge post
    EDIT: sorry, I forgot to specify that if I flag the IV_WITH_CHANGE_VERSION input parameter for the UPDATE FM, the update doesn't work. More precisely, it terminates without any error message but the effect is that nothing seems to be done.
    Edited by: Matteo Montalto on Feb 27, 2009 5:55 PM

    Well, I'm now back on the system I was working on and can confirm that the version management is active in SRM.
    Maybe I can formulate the question in a simpler way...
    My task is quite simple: retrieve a Purchase Order in SRM (using the BBP_PD_PO_GETDETAIL function module), do some modifications on it (this step has been already tested) and then simply create a new version of the same purchase order (that obviously, will become the active version).
    What I have in hand are the structures I got from the BBP_PD_PO_GETDETAIL, eventually modified.
    Any hint? The solution posted above allows me to overwrite the PO active in SRM, I'd like to manage also the case in which the user wants to create a new version of the PO .

  • "Create a new version" does not work in 11

    Downloaded True Grit in HD from my iCloud/iTunes account to my Mountain Lion iMac w iTunes11.1.1.
    Want to load and play the movie on my iPhone4.
    Selected the HD file in iTunes 11.1.1.
    FILE/Create a new version:
    All selections are greyed out.
    Do I have to use Handbrake?

    Hi- I downloaded the SD version (after following the instructions, Download HD When Available is unchecked ) of Shrek, it still will not sync to my iPod classic and the "Create New Version" options - all of them- are greyed out.
    Also, although I saw the download size of Shrek was 505 MB instead of 3 GB, I still see "HD" in the description.
    (And I went back to iTunes store to double check the next movie, Peter Pan, and I see the check mark is BACK in "Download HD When Available". )
    So I can't sync the SD version of Shrek to my iPod classic, and I can't convert it in iTunes.
    Help?
    TIA
    Augh, trying it again, I am using iTunes on my PC, where I take out the check mark for Download HD When Available, but I am using my Mac to download the movie.
    Again, it seems to be downloading the HD versions.
    So now I am downloading on the PC, just authorized it... and the check mark is back AGAIN, so I took it out and now downloading the videos to the PC.
    I'm trying not to complain about how Apple is making it less possible to use Apple products and purchases...

  • When I try to log on - says "playlist created by newer version of Itunes"

    I had my Itunes deleted accidentally. I should be able to copy the songs back onto my computer, but I have now reinstalled Itunes and every tiime I try to open it up, the message appears "Playlist created by newer version of Itunes" and it fails to load..... Help please

    Try and force iPad into Recovery Mode:
    1. Turn off iPad
    2. Connect USB cable to computer; leave the other end alone
    3. Press and hold the Home button down and connect the docking end of cable to iPad
    4. Continue holding the Home button until you see the "Connect To iTune" screen
    5. Release the Home button
    6. Open iTune
    7. You should see "iTunes has detected an iPad in recovery mode"
    8. Use iTune to restore iPad
    Note: You need to be patient and repeat the above many times to recover your iPad

  • Should I create a new version of my app?

    I am upgrading an existing app from "Multi Folio" to "Multi Folio with Entitlement and iTunes Subscription"? Currently, I have created and downloaded the .ipa file. I used the existing Apple ID from Manage Your Apps and can get the new test app loaded, view the library, and download sample issues using a Test User account. But I can't sign in using the entitlement vendor's sign-in page. That could be on my end or on theirs.
    So, here is my question: When I get the sign-in process worked out and am ready to upload the binary, will I need to also create a new version of the app in iTunes Connect. Or can I simply use the existing Apple ID from iTunes for the new app in App Builder?
    Thanks,
    Steve Walburn

    Use the existing App ID in iTunes Connect if you want to replace the existing app. Create a new App ID only if you want it to be a different app.

  • My itunes cannot be update on my windows xp. so i delete my itunes and install new, but now i got new problems, it says "The file itune.library.itl cannot be read because it was created by newer version of itunes." so how can it be solved?

    my itunes cannot be update on my windows xp. so i delete my itunes and install new, but now i got new problems, it says "The file itune.library.itl cannot be read because it was created by newer version of itunes." so how can it be solved?

    Hello Bebyida,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    http://www.apple.com/itunes/download/
    Best of luck,
    Mario

  • Why can't I create a new version of a photo edited in an external application, without Aperture making a new copy of the newly created Tiff?

    When Aperture creates a new version from a RAW file, no new master file is created.  This makes total sense and I understand why.
    When I edit a photo in an external editor (Photoshop CS6) from within Aperture, Aperture creates a Tiff file to edit in Photoshop and saves it along with the RAW original once I have finished editing it in Photoshop.  I understand why this is necessary too.  So far so good.
    But if I then ask Aperture to create a new version from the newly created image edited via Photoshop, it creates another new Tiff.  I can't see why this is necessary.  Aperture should be able to apply further new Aperture edits to the newly created Tiff in the same way that it creates new versions from a RAW file without duplicating the master - by remembering any new 'recipe' changes applied to the Tiff.  It only needs to remember the edits made as the Tiff already now exists.
    Can I stop it creating repeat Tiff files each time I create a new version from the Photoshoped photos?
    Thanks in anticipation.

    Hello Kirby,
    I clicked on the 'Show in Finder' and it revealed a new file called IMG_0961 (1) which goes with the original IMG_0961.CR2 and the edited new tiff created for Photoshop which was called IMG_0961.tiff
    I noticed also that a separate version I had previously created using Canon's DPP stand alone software and titled by me IMG_0961 (DPP).TIF (same thing but from a different original) does not form a new master file when I create a new version of that one.  I've tried this with a few images but when the original is edited in Photoshop via Aperture a second version of the Tiff is created for the 1st version of the image when I create a new version fo it.

  • Is there a way to make Aperture NOT create a new version w/ Brush editing?

    I have been messing around with the dodge and burn plug in. Is there a way to make it so it doesn't create a new version when I edit with the plug in, but rather just edits the existing file?

    nope ... not at this juncture ...
    all the current plug-ins work on a rendered .tiff (or .psd) ...

  • Upgraded to 11.3.1 now can't open library. Won't read. I have an older iMac (2008). Message I get is: cannot be read because was created by newer version of iTunes. Would you like to download iTunes now?' ... so I do and it fixes nothing. OS 10.6.8

    Upgraded to 11.3.1 now can't open library. Won't read. I have an older iMac (2008). Message I get is: cannot be read because was created by newer version of iTunes. Would you like to download iTunes now?' ... so I do and it fixes nothing. Same message again. OS is 10.6.8.

    Thanks again. The option thing got me further than I've gotten thus far but when I went to choose a library I got that same message.
    I do have options. I have 2 iMacs. I can still access my music through 'sharing' and download it onto my newer iMac. Trouble is it doesn't have a CD port and I like to burn. From what I've read about their new Mac portable CD/DVD drive, it's shaky at best. Incidentally, do you know of any drives that work well with Macs and cost less than $89.00?
    I've figured out I can download a previous library from my old Mac then upload it from the new one which should put me back in business, but what do I do with the corrupt one that's there now, just trash it? Also, when I do the option key my other choice is Create A New Library. Should I do that and put the good previous library into it?
    Thanks a million, I really appreciate your time. I'm an old fogey and computers often mystify me, especially when they lock me out of things for no apparent reason.

  • Why can't I click on "Create AAC New Version"??

    I'm trying to create a ringtone on the latest iTunes... but when I go to File > Create A New Version it gives me options that are "un-clickable"
    It says
    Create iPod or iPhone Version
    Create iPad or Apple TV Version
    Create ACC Version
    But I can't click any of them for some reason?
    And its not a song from iTunes itself, so its not ACC protected or anything. Its only 21 seconds.
    Any solutions to this problem ?

    with your Itunes open and playing, select view from the task bar, click visuilzar> there are abunch of different choices

  • Just reinstalled itunes due to need to fix msvcr80.dll error; now itunes wont run because itunes library.itl cant be read created by newer version itunes.  how do i resolve this ?

    just reinstalled itunes due to need to fix msvcr80.dll error;
    now itunes wont run because itunes library.itl cant be read created by newer version itunes. 
    how do i resolve this ?

    By way of experiment, let's first try specifically choosing a library for iTunes to open.
    Quit iTunes if that error message is showing. Now hold down your Shift key, and then open iTunes. (Keep holding down the shift key while iTunes is opening.)
    You should see a dialog asking you if you want to choose or create a library, as per the following screenshot:
    Click "Choose Library ..."
    You should now see a screen like the following screenshot:
    Select the "iTunes Library.itl" file (shown circled in the screenshot) and click "Open".
    Does your iTunes library open without the error?

  • Standard process for creating a new version of an existing report

    Hi All,
    We are using Siebel 8.1 with BI Publisher.
    Does any one know the standard process for creating a new version of an existing report - ie if 'BIP Report XXX' is created and works correctly from the siebel view but then an enhancement is developed, how is the enhancement deployed so that the new version completely replaces the old?
    One suggestion was:
    You can upload a new version of an existing report. You have to navigate to Administration - BIP > Report Template Registration... search for the report you need to replace (I would say that the new rtf file need to have the same name). Now you have to go to the "Template" column where there is the reference to the report file already uploaded but you don't have to click on the link that is displayed you have to click near the link in order to place the cursor on the field then you will be able to see the Multi Value Grup icon .. you click on it and you will be able to upload a new file.
    We have tested this process today, however it is not effective in replacing the old version of the report.
    After carrying out this process (including related steps from bookshelf - ie "click upload files"), we can generate the report from the relevant siebel view and the previous version of the report is still generated.
    Is there a standard process for replacing an existing report that is effective?
    Thanks.

    Hi ,
    This currently seems like a bug , we have encountered this too.
    work around is you have to delete the rtf files from server Siebel\client\temp\XMLP directory and upload them again so that they are not cached any more.
    same on dedicated client you may have to delete relavant files form siebel\client\temp\xmlp directory and upload again.
    Thanks,
    Vamsi

  • Image adjustment creates a new version, Viewer distorted or disappears

    For the last two days Aperture 2.1.2 creates a new version of of an image when I adjust the image.
    Then the image will distort in the viewer - applying excessive edge sharpening or becoming blank or only showing a small part of the image. Applying a definition control trashes the viewer image.
    This occurs with images that originate from RAW files or from Jpeg. It is affecting images that had been previously processed correctly.
    The master files are referenced and held on the same 500GB drive as the library which has 100gb free.
    If I export any of the images that are corrupted in the viewer the image created does not have the corruption.
    I cannot remember applying any change to the Aperture program, the change in behaviour started in a session where I had worked on about 60 images. I have restarted Aperture and rebooted the computer and the problem persists and corrected any permissions (none reported as being corrected).
    Any suggestions please.
    Thanks for any comments

    Thanks for pointing out the pref option - unchecking the option does prevent the creation of a duplicate version.
    However I still get a blank image in the Viewer when I then change the definition or shadows setting, reset it to 0 and the image returns.
    Thanks again for pointing to the prefs option -

  • Numbers file created w new version of Numbers on my mac and then transferred  via Dropbox to my ipad: file cannot be opened by iOS version of Numbers

    Numbers file created w new version of Numbers on my mac and then transferred  via Dropbox to my ipad: file cannot be opened by iOS version of Numbers

    Hi Jocomo,
    That's correct. Dropbox does not handle Numbers 3.0 for Mac and Numbers 2.0 for iOS documents well at all. They will probably fix this.
    But why are you using Dropbox for this?  Numbers has built-in iCloud integration for the very purpose of syncing documents back and forth.  It's much easier than using Dropbox even if Dropbox could handle the new Numbers format.  And it's now quite reliable.
    To enable iCloud with Numbers on your Mac:
    In System Preferences>iCloud make sure you have Documents & Data turned on:
    And after clicking Options, make sure you have checked Numbers.app:
    On your iPad you need to make sure iCloud sync is turned on in TWO places:
      Settings>iCloud>Documents & Data>Numbers
      Settings>Numbers>Use iCloud
    If you have entered the right iCloud credentials on your Mac and iPad, Numbers will then sync back and forth. It's much easier than putting in Dropbox and then having to Open in... , etc.  You can of course still keep backup copies of your documents in Dropbox if you want.
    SG

Maybe you are looking for