"Chris de Burgh" or "Chris De Burgh"

Hi, new here. I have 3 CDB albums, two with Artist "Chris de Burgh" and one with "Chris De Burgh". These show as two separate names in Artists lists. In the Grid View of Music, changed the Artist name "Chris De Burgh" to "Chris de Burgh". To my surprise, the album split into two: one had track 1, the other tracks 2 onward. Fiddled around a bit more and ended up with the album split into 4: 3 with one track (not 1, 2 and 3), the other with the leftovers.
Tried everything in iTunes, but nothing joined the split album. Looked in Explorer and found the artist folder was called "Chris De Burgh" with all three original albums inside (not split). On a whim, I changed its name to "Chris de Burgh". Back in iTunes the split album had magically joined together. Problem solved, but ...
Can anyone explain what is going on here?

Hi, welcome to Apple Discussions.
iTunes has some interesting issues when it comes to grouping tracks. In general iTunes is case insensitive so should treat "Chris de Burgh" and "Chris De Burgh" as the same thing but it seems to have an issue sometimes if one tries to change the case of a particular album or artist and may fail to completely merge the updated album. See my previous post on Grouping Tracks Into Albums, in particular the topic One album, still too many covers. Assuming you didn't remove & reimport I can only assume that renaming the folder in Explorer somehow triggered iTunes into reprocessing the tracks and this time detect the correct album groupings.
tt2

Similar Messages

  • Follow-up question for Chris H on longtext in BDC for IW31

    Chris -
    Here's the relevant part of my code:
    PERFORM DYNPRO USING:
    'X' 'SAPLCOIH'          '3000',            "
    ' ' 'CAUFVD-KTEXT   '   SCRN_PROBLEM1,     " 1st line problem text
    ' ' 'CAUFVD-ANLZU   '   CAUFVD-ANLZU,      " System condition
    ' ' 'BDC_OKCODE'       '=LTXK'.            "
    LOOP AT i_txt INTO wa_txt.
      v_txtln_ctr_n = sy-tabix + 2.    " Chris - note that I'm bumping to "3" here
      v_txtln_ctr_c = v_txtln_ctr_n.
      CONCATENATE 'RSTXT-TXLINE('
                  v_txtln_ctr_c
             INTO v_bdc_txtln_lit.
      CONDENSE v_bdc_txtln_lit NO-GAPS.
      PERFORM DYNPRO USING:
        'X' 'SAPLSTXX'          '1100',              "
        ' ' v_bdc_txtln_lit     wa_txt,              " line of problem text
        ' ' 'BDC_OKCODE'        '=ENTR'.             "
    ENDLOOP.
    This actually works - it creates an order in which the long text begins with what is in the variable SCRN_PROBLEM1 and continues with what is in i_txt concatenated together.  So I get, for example:
    "This is the short description. a b c d e"
    where:
    scrn_problem1 = 'This is the short description'
    row 1 of i_txt = 'a'
    row 2 of i_txt = 'b'
    row 3 of i_txt = 'c'
    row 4 of i_txt = 'd'
    row 5 of i_txt = 'e'
    The only problem is that the BDC doesn't go thru on its own.  When I change 'N' to 'E', the BDC brings up a screen with the title:
    "Change order text header Alternative Language EN"
    Then, when I just "back-arrow" from this, the BDC does complete successfully and I can see the correct text saved for the order in IW32.
    What am I doing wrong to cause this "change order text header" screen to come up?  Is it the "LTXK" value of the OK-CODE in the first dynpro call above?
    Or maybe something with my default user parameters?  I had to set quite a few of these in order to get the BDC to go with just a system, priority, and short text/long text.
    I'm really hoping you can see what's going on here because I'm at a loss.
    Thanks for whatever help you can provide.  You seem to have coded this BDC before, so that's why I'm directing this question to you.
    BTW, I'd try the BAPI except the documentation specifically says it won't observe user default parameters and this is a must in our situation.
    Thanks again
    Dave

    Chris/Rich -
    My suspicion was correct.  In the last loop over the longtext itab, the ok_code must be 'TXBA', not 'ENTR'.
    Here's the code that works without any 'E' interruptions:
    PERFORM DYNPRO USING:
    'X' 'SAPLCOIH'          '3000',            "
    ' ' 'CAUFVD-KTEXT   '   SCRN_PROBLEM1,     " 1st line problem text
    ' ' 'CAUFVD-ANLZU   '   CAUFVD-ANLZU,      " System condition
    ' ' 'BDC_OKCODE'       '=LTXK'.            "
    DESCRIBE TABLE i_txt LINES v_txt_cnt.
    LOOP AT i_txt INTO wa_txt.
      v_txtln_ctr_n = sy-tabix + 2.
      v_txtln_ctr_c = v_txtln_ctr_n.
      CONCATENATE 'RSTXT-TXLINE('
                  v_txtln_ctr_c
             INTO v_bdc_txtln_lit.
      CONDENSE v_bdc_txtln_lit NO-GAPS.
      IF sy-tabix = v_txt_cnt.
        v_txt_ok = '=TXBA'.                    " no more text lines coming
      ELSE.
        v_txt_ok = '=ENTR'.                    " more text lines coming
      ENDIF.
      PERFORM DYNPRO USING:
        'X' 'SAPLSTXX'          '1100',       
        ' ' v_bdc_txtln_lit     wa_txt,        " line of problem text
        ' ' 'BDC_OKCODE'        v_txt_ok.      " ok_code
    ENDLOOP.
    The result is that the longtest display in IW32 will be what's in "SCRN_PROBLEM1" followed by all the lines that are in i_txt.
    Reagrds
    djh

  • Hi Chris -- follow up to my question about using TSQ to store strings of different sizes

    Thanks for your response.
    I did read about those method you mentioned. I have some troubles with each method:
    1/ Using TSQ as byte stream.
    This is what I chose to use. I basically write to the queue the way you described with an exception about the number of byte to write. I did as followed:
    CmtWriteTSQData (tsqHandle, buffer, strlen (buffer),TSQ_INFINITE_TIMEOUT, NULL);
    with buffer as the buffer containing my string. Note that strlen(buffer) is not same each time. Also a thread is doing the writing to the queue and another thread is doing the reading. This leads to my next question: How do you read these strings out?
    Right now I am reading one
    byte at a time with:
    while (1)
    CmtReadTSQData (tsqHandle, tempbuf, 1, 10, 0);
    in a loop, with tempbuf to contain this single char, and then store it in another buffer until I read out a CR of LF which signals the end of a string.
    Will I have any problem?
    Could you please provide an alternative?
    2/ Using TSQ to contain pointers to strings.
    I haven't tried this method since I think it requires allocation of rather large static array of buffer and also requires keeping track of these pointer in a link list.
    Would you elaborate how you would use TSQ this way in my case.
    3/ Lastly, the way I described in (1) works only if I have the main thread to do writing, and another thread to do reading. Some how it doesn't work when I used one thread to do writing, one thread to do reading, and the main thread to handle user interface. I found out that the program spends all its time in the reading thread (inside the while loop).
    Why is it different if the writ
    ing thread is the main thread? Do I miss something like priority,... or anything like that?
    Thank you so much.

    You really should consider using event driven reading. There is examples of this in the Multithreading examples in cvi\samples\utility\Threading. Then you will get an event in the reader thread whenever a certain number of items are available to read. If you use the byte stream method, you should send the message length with each method so you know how to package the messages back on the reader side.
    For the pointer method, you would malloc the buffer on the writer side, send the pointer to the reader, then the reader would free the memory when it is done with the data.
    I don't understand why what you are describing in 3 occurs. If you aren't setting priority to something other than default, then each thread should get time. If you want to free up time i
    n a thread that is taking to much, just put a small Delay in that thread.
    If you want more help on this, you can look at the examples I mentioned above, read the Multithreading Overview available in PDF form in the cvi\bin directory or contact NI support at http://www.ni.com/ask.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

  • I have adobe acrobat pro for windows and it is freezing up when I try to convert a word file to pdf... I have tried to get this done six ways from Sunday but it is just not working... help!  Chris.

    I have adobe acrobat pro for windows and it is freezing up when I try to convert a word file to pdf... I have tried to get this done six ways from Sunday but it is just not working... help!  Chris.

    It would be helpful to know what version of Acrobat, WORD, and operating system.
    Without that info, I would suggest at this point to open your WORD file and then go to the print menu and print to file using the Adobe PDF printer. Open the created file in Distiller and see if you get a PDF. If so, check to see if AcroTray is running in the background.
    You say you tried many ways. It would help to know what you tried and what worked or did not work, and at what point the failure occurs.

  • Chris Meyer - Creating Motion Graphics CS5 vs CS3

    I am looking at purchasing the Chris Meyer "Creating Motion Graphics with After Effects" book. The 2007 edition for CS3 is significantly cheaper than the 2010 edition for CS5. Since the CS5 version is already out of date, would I be missing any significant information if I purchased the 2007 version for CS3? What are the differences between CS3 and CS5 in After Effects? Are there any other more current books that are as comprehensive, or does anyone know if a more recent edition of the Meyer book will be coming out anytime soon?
    Thank you!

    The hardest part of learning motion graphics and compositing is the art not the software. While there are new and improved tools in recent versions, everything you will be learning applies to CC 2014. If you go through the entire book and you study and learn you'll be ahead of many pros that work in productions houses across this country because Chris and Trish are just about the best at teaching this kind of stuff.

  • R.I.P. Chris Squire, Bass player and co-founder of the band YES

    Saw the news on FB last night, really saddened to find out he had died although I knew he was in a bad way with Cancer.  Another of my musical heroes gone.
    http://www.bbc.co.uk/news/entertainment-arts-33306933
    This topic first appeared in the Spiceworks Community

    Hi Chris,
    Hardware acceleration on or off makes absolutely no difference, i recently tried watching videos in a 100% fresh install and new profile in firefox (no addons) and the problem still occurs albiet a little slower in the new install, ie it takes a little longer to drop out of synch.
    There is a noticeable difference in framerate just before the problem occurs, like a very tiny hiccup, from that point on the audio gets left further and further behind, it's remedied by clicking back a few seconds on the video play bar but this is only temporary, lately i've even noticed it happening with live streams from the BBC, once again i must stress, this doesn't happen in Chrome or Opera or IE.

  • How do I change name from Ray's iPod to Chris's iPod?

    How do I change name on ipod from Ry's to Chris's i pod?

    After I open settings...it goes directly to about (general is not on the list to chick onto).

  • Flash Player won't install even after a clean install (Attn: Chris Campbell)

    Hi there,
    I'm using IE on a 64 bit Windows 7 system and am having the worst time trying to get Flash Player to work.  It was working fine before and then one day, just stopped working, so not sure if that was due to an update or not.  I've followed Chris Campbell's 'How do do a clean install' video a few times and still have not had any luck.  I did notice my system did not have some of the files he said to delete.
    When deleting from '%appdata%\Adobe\Flash Player', the file I had was NativeCache, not the same as he had.
    Also, when deleting from '%appdata%\Macromedia\Flash Player', the file was not found at all, so I am wondering if it isn't installing this file in the first place.
    When I've tried doing the install after following his directions, I still get the occasional warning to close Internet Exporer.  I've made sure I've closed all programs I can think of that could be causing this error and have even tried closing the browser with the download link in the first place.  Sometimes I still get that error, sometimes I don't, but still, no luck with the actual successful install.
    Please help! 
    Thanks!!

    Thank you so much for your support,GLPCPA.
    It is a good idea but some Japanese can not do system restore(have no point of system restore).
    So I want another new infos on adobe F player will not install after Antivirus 8 infection.
    Thank you ,GLPCPA
    Have a good time.
    See you again
    from Japan

  • Photoshop.exe Process Hanging Around After Exit - Chris Cox

    It happens from time to time, and this time I was able to breakpoint it to show where it's hung up.  I'm posting this not looking for help, but primarily to pass the information on to Chris Cox on the outside chance it might help Adobe fix the issue...
    -Noel

    Highly useful for international work:  http://www.google.com/language_tools
    Translation:
    In Photoshop cs5 has encountered a problem and needs to close. We apologize for the inconvenience
    and
    You were engaged in an operation. This information might be lost
    -Noel

  • Chris French on Acrobat XI | Insights on Acrobat Solutions | Adobe TV

    Chris French discusses some highlights we can look out for in Acrobat XI.
    http://adobe.ly/Q3E9Cd

    I think this version of Acrobat is the worst piece of garbage I've bought in the past three years. Acrobat 9 was a great program. Everything was easily accessible and intuitive. In this version nothing is easy to use or accessible and the Help functions stink. The people who managed the development of this version don't have a clue about what usability means and how to design something that mere mortals can use without being driven crazy. Various usability issues keep cropping up every time I try to do something with this program. Let me just say I use all kinds of complex software from Adobe and other vendors and I truly regret having spent over 200 dollars upgrading to this piece of junk. It's very obvious that it wasn't properly tested in a community of average users and if it was, their issues were probably in good measure ignored. I hope the Senior Management of Adobe is looking for people who can pick up the pieces and make something more usable out of the application as a whole including the added technical functionality the application does bring to market.

  • TransRelational implementation model (Chris Date)

    Last friday I attended a seminar by Chris Date on the TransRelational model, a radical new way of storing relational data inside an RDBMS. This technology promises to speedup query-processing by many-many factors, and has numerous other benefits.
    Does anybody know if Oracle is persueing this new technology, and plans to implement this maybe in release 11?

    Given that Chris Date and his chum Fabian P{ascal spend a lot of their time bemoaning the stranglehold the giants have on the RDBMS industry I wouldn't bet on it happening any time soon.
    Cheers, APC                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Can't copy to file: /users/chris/creative cloud files/premiere pro/8.0/adobe premiere pro auto-save/[my project name].prproj. please check write permissions."

    Does anybody how to solve this problem. I truly appreciate.
    i can't save my Project.        can't copy to file: /users/chris/creative cloud files/premiere pro/8.0/adobe premiere pro auto-save/[my project name].prproj. please check write permissions."

    It seems Josh was unaware you are on a mac. Here was the solution I found.

  • HT3275 Has anyone come across the red "i" message saying "The backup disk image "/Volumes/Chris...(the last bit being) iMac.sparsebundle" is already in use? This has prevented my time machine from backing up from this morning (5th Dec 2012).

    Has anyone come across the red "i" message saying "The backup disk image "/Volumes/Chris...(the last bit being) iMac.sparsebundle" is already in use."?
    As of yesterday (4th Dec 2012) everything was fine, no trouble or problems at all. Wake up this morning, turn on the computer and when it came time to backup itself, the message occurred above and this has prevented my time machine from backing up from this morning (5th Dec 2012) ever since then.
    Everything on my computer is up-to-date but this problem still persists displaying this message practically every hour, on the hour and nothing is getting backedup!
    If you know what is going on and more importantly, how to fix this, I would be indebted to you for sharing your knowledge with me on this subject.
    Thank you.

    Welcome to the Apple Support Communities
    See > http://pondini.org/TM/C12.html

  • I keep getting message on Iphone and Ipad  Enter password for the Exchange account "Chris Buggy" when I try to access my personal email.

    I keep getting message on Iphone and Ipad "Enter password for the Exchange account 'Chris Buggy' " whenever I try to access my personal email account. I tried all possible personal passwords and none work. This is company issued Iphone and Ipad.

    Hi StuNYC,
    Welcome to Apple Support Communities.
    It sounds like you're seeing an alert message when opening Mail on your iOS devices. Do you have multiple email accounts setup on the devices? Take a look at the article below, it provides suggestions that will resolve most issues that  cause an alert like that to appear in when starting the Mail app.
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    I hope this helps.
    -Jason

  • Quicktime Pro 7.2 Can't Play Lynda Videos Chris Orvig

    Hi,
    I can't play Lynda videos from "Photoshop CS3 for Photographers" with
    Chris Orvig.
    They all have the .mov extension. Quicktime Pro gives an error msg,
    "error -2048 Couldn't open the file <XXXXXFILENAMEXXXXX> because it is
    not a file that Quicktime understands".
    I tried Windows Media Player and Media Player Classic from K-Lite, but
    neither can play it either.
    All my other videos are playing ok. After the error I installed every
    codec from K-Lite Codec Pack Full.
    It's still not working.
    How do I fix this, where do I find a patch?
    I've sent an email to Lynda technical support.
    Windows XP Pro SP2
    Quicktime Pro 7.2
    K-lite Codec Pack Full - All Codecs Installed
    Windows Media Player 9

    I can also verify this (QT Pro 7.2 exporting to .mp4 not compatible
    with video iPod [firmware 1.2.1 on both 5G/5.5G units]).
    This results in the unusual situation where custom H.264 output
    is operable on the iPhone but not the iPod.
    Example: your iPhone should play
    http://homepage.mac.com/retiarius/sample.elements.mp4
    but it won't transfer to a video iPod.
    Yes, the workaround is to 'export for iPod' or do the conversion
    within 'iTunes', but this in many circumstances will generate
    larger files.
    The closest description of this situation is:
    http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/2006-September/015930.html
    Perhaps Apple will release a video iPod firmware update soon
    to get the 'uuid' atoms and whatever watermarking they are
    using these days straightened out.
    I'm surprised this hasn't been noticed more by video podcasters
    who dutifully use Apple's own QT Pro encoding tool to optimize
    filesizes via the tunable H.264/.mp4 codec settings.

Maybe you are looking for

  • For loop issue and error exception

    I am finishing up a program and having a few issues....I can send my instructions so it may seem easier to what I want...the first issue deals with the for loop for the 2nd for loop in the actionperformed when i click on go it does not change any of

  • Process Integration Errors - Business Partner Replicate Confirmation Out

    Hi, Our C4C system is integrated (HCI) with our On-Prem system for our Accounts and Employees.  SAP was our integrated but for awhile now we are getting Health Check Incidents created in regards to a Business Partner Replicate Confirmation Out issue.

  • Droplet jobs submitted not showing up in Batch Monitor

    I am compressing MP4 files in large batches of 100-150 files at a time by dragging them over a droplet. I can submit about 4-6 batches in a row, but after that Batch Monitor does not appear to accept anymore batches. I can continue dragging files ove

  • Page cannot be dispalyed message

    i installed tomcat and created a simple servlet named servlet1. i created a directory named servlet1 and put servlet1.class under servlet1/WEB-INF/classes. i also put web.xml under WEB-INF. in web.xml i wrote- <?xml version="1.0" encoding="UTF-8"?> <

  • How to Minimize Java Applications

    how to mininize my java apps for nokia 2700 classic Moderator's Note: This post was edited. A more appropriate subject was provided. Solved! Go to Solution.