Duplicate swatch problem.

I work for a publishing company and we are running on Indesign CS. We print from Indesign and use Separations to make plates for our press. We print in red and blue ink, so we make red and blue plates.
Our problem is that we keep getting Blue 2, Blue 3, etc. swatches added to the swatch palette. We don't know what is causing this problem because the CMYK value for the Blue 2 is the exact same as the Blue we print from.
We use Ink Manager to make an alias as a work around, but we really want to know what causes these multiple instance of Blue to occur.
Thanks in advance.

I believe this JavaScript will work with CS. I use it often to merge down these kinds of duplicate swatches. I know for sure it works in CS2 and CS3.
//DESCRIPTION: Merge Down Swatch Dupes
    ©Copyright 2006 PDS Associates
    This script must not be distributed without first obtaining written permission of:
    Dave Saunders, proprietor
    PDS Associates
    P.O. Box 127
    Allenhurst, NJ 07711-0127
    e-mail: [email protected]
// Merges down duplicate swatches in either the active document
// or the application defaults.
if (app.documents.length > 0) {
  myTarg = app.activeDocument;
} else {
  myTarg = app;
var mySwatches = myTarg.swatches;
var myNames = mySwatches.everyItem().name;
myNames.sort();
for (var j = myNames.length - 1; j >= 0; j--) {
  myParts = myNames[j].split(" ");
  if (myParts.length == 1) { continue }
  lastPart = myParts.pop();
  if ((isNaN(lastPart)) && (lastPart != "copy")) { continue }
  var mySwatch = myTarg.swatches.item(myParts.join(" "));
  if (mySwatch == null) { continue }
  mySwatches.item(myNames[j]).remove(mySwatch);
  Discussion: there are two sources of duplicate swatches and two naming schemes.
  If you bring into a document an item that uses named swatches that are present in
  the document but with different definitions, new swatches are created with names
  based on the original names with numbers appended after a space. This can result
  in very large numbers of swatches being created (I personally experienced a situation
  where importing a table resulted in over 8,500 swatches).
  However, you can also load swatches from a .ase file or another InDesign document.
  Swatches with conflicting names from the former are added with " copy" appended to
  their names. If that name already exists, a number is also added.
  This version of the script merges down either kind of duplicate to the original base
  swatch (that is, the one with the base name in the original document).
To use the script in CS, copy and paste to a text editor and save as a plain text file with an appropriate name in the form YourName.js in the Scripts folder of the Presets folder of your InDesign CS folder (you could put it in a subfolder if you wish). Then to run the script, double-click its name in the Scripts palette.
Dave

Similar Messages

  • Anyone know if the long standing duplicate files problem with File History has been fixed yet?

    There are loads of public threads about the duplicate files problem
    with Windows 8/8.1 File History backup system.
    From all the threads I've looked at, there seems to be no solution,
    and no acknowledgement from MS that they can even repro the problem
    (which surprises me considerably as there are so many people who
    notice the problem).
    Is anyone aware of whether MS (may) have fixed this for Win10?
    Are MS aware of the problem and if they're able to fix it?
    Dave - with many GB of duplicated files in File History :)

    Hmm, is that the attitude MS would recommend? :)
    Why would I care what Microsoft would recommend?
    Clearly you don't, and you appear to have missed my smiley. Calm down
    Noel, many of us are as annoyed by aspects of modern Windows as you
    are. :)
    I'm all about making Windows actually WORK/./
    Aren't we all? Windows is software I use too many hours every day, I
    along with many millions of others need it to work really well. You
    are not alone.
    When they implement something that doesn't work, and even if it did work doesn't do what's needed - and/beyond that/ they remove features people DO need (such as the GUI for Windows Backup), I see no wrong in advising people of the way things
    really are.
    File History essentially does work - it's saved me a couple of times
    in the past couple of weeks. It just has a highly annoying habit of
    creating 100% duplicates of some files for no apparent reason. If MS
    have fixed that I won't have any known complaints about it.
    If you don't like it, you don't have to use it. I generally like it, I
    just want to see that its fixed.
    Dave

  • Duplicate records problem

    Hi everyone,
    I'm having a a little difficulty resolving a problem with a repeating field causing duplication of data in a report I'm working on, and was hoping someone on here can suggest something to help!
    My report is designed to detail library issues during a particular period, categorised by the language of the item issued. My problem is that on the sql database that out library management system uses, it is possible for an item to have more than one language listed against it (some books will be in more than one language). When I list the loan records excluding the language data field, I get a list of distinct loan records. Bringing the language data into the report causes the loan record to repeat for each language associated with it, so if a book is both in English and French, it will cause the loan record to appear like this:
    LOAN RECORD NO.     LANGUAGE CODE
      123456                             ENG
      123456                             FRE
    So, although the loan only occurred once I have two instances of it in my report.
    I am only interested in the language that appears first and I can exclude duplicated records from the report page. I can also count only the distinct records to get an accurate overall total. My problem is that when I group the loan records by language code (I really need to do this as there are millions of loan records held in the database) the distinct count stops being a solution, as when placed at this group level it only excludes duplicates in the respective group level it's placed in. So my report would display something like this:
    ENG     1
    FRE      1
    A distinct count of the whole report would give the correct total of 1, but a cumulative total of the figures calculated at the language code group level would total 2, and be incorrect. I've encountered similar results when using Running Totals evaluating on a formula that excludes repeated loan record no.s from the count, but again when I group on the language code this goes out of the window.
    I need to find a way of grouping the loan records by language with a total count of loan records alongside each grouping that accurately reflects how many loans of that language took place.
    Is this possible using a calculation formula when there are repeating fields, or do I need to find a way of merging the repeating language fields into one field so that the report would appear like:
    LOAN RECORD     LANGUAGE CODE
      123456                      ENG, FRE
    Any suggestions would be greatly appreciated, as aside from this repeating language data there are quite a few other repeating database fields on the system that it would be nice to report on!
    Thanks!

    if you create a group by loan
    then create a group by language
    place the values in the group(loan id in the loan header)
    you should only see the loan id 1x.
    place the language in the language group you should only see that one time
    a group header returns the 1st value of a unique id....
    then in order to calculate avoiding the duplicates
    use manual running totals
    create a set for each summary you want- make sure each set has a different variable name
    MANUAL RUNNING TOTALS
    RESET
    The reset formula is placed in a group header report header to reset the summary to zero for each unique record it groups by.
    whileprintingrecords;
    Numbervar  X := 0;
    CALCULATION
    The calculation is placed adjacent to the field or formula that is being calculated.
    (if there are duplicate values; create a group on the field that is being calculated on. If there are not duplicate records, the detail section is used.
    whileprintingrecords;
    Numbervar  X := x + ; ( or formula)
    DISPLAY
    The display is the sum of what is being calculated. This is placed in a group, page or report footer. (generally placed in the group footer of the group header where the reset is placed.)
    whileprintingrecords;
    Numbervar  X;
    X

  • Another "duplicate email" problem.

    I asked the following question over on the Office 2013 forum and the only response I got basically told me to "go ask this on the Outlook forum", so here goes:
    "I too am experiencing rabid email duplication with Outlook 2013.  I've found a way to avoid the problem, and also a way to fairly reliably CAUSE it.  I'm posting in the hope that this will help Microsoft with information that will allow them
    to correct their buggy code.
    My configuration:
    LAN/Domain network running Server 2008 R2 and a 3rd party (not Microsoft) email server. (Code-Crafters Ability Mail Server). 
    Physical network is a mix of hard-wired Gigabit Cat6 and wireless (Ubiquiti Pico M2 HP).
    A mix of Windows workstations, desktops and laptops running a mix of XP-Pro, Vista Ultimate, Win 7 Pro, and 8.1 Pro.
    A mix of Outlook versions, the XP and Vista machines are mostly running Outlook 2003 (yeah, I know, it's ancient but it generally still works fine for these users and they hate change).  The 7 and 8.1 users are all on Outlooks 2013 (installed as Office
    2013 Professional Plus 2013).
    All of the users access their email on the OEM Ability server via IMAP. All users have at least "a couple" of sub-folders defined in their account and all use at least "some" Outlook rules to route some email at both receive and send
    time into various folders.  Some users have a lot of rules and folders, some have only a small handful.  These users also have external IMAP access to their email on the server via their Android phones, generally using the "Type" (formerly
    Bluemail) Android email client.
    Everything from the server down (including the email server and the domain controller)  is mine and under my direct control.
    What happens fairly consistently for a few users is this:
    If they have Outlook 2013 running on more than one workstation at the same time, eventually it will go insane duplicating a handful of emails, both in the inbox and in one or more of their folders, at the rate of once every few seconds.  They are also
    connected via their android phone when this happens.  All clients (all the Outlook instances and their phones) go nuts trying to send 'new mail' notifications out at a very rapid rate.  It's not possible to delete them fast enough to keep up, no
    matter how quick they are on the trigger.  The emails in question ARE in fact duplicates - everything about them including the header information matches - and they are "real" (the duplicate copies are also visible through the web interface
    directly into the email server), so I'm sure the duplication is not just inside the Outlook view of the user's email folder(s).
    Stopping all of the user's instances of Outlook stops the duplication.  Stopping just the android client does not.  If the user shuts down all his/her instances of Outlook and uses the webmail interface to delete all the duplicates (even the 'original'
    email) and then starts exactly ONE instance of Outlook 2013, things are fine.  Starting a second instance of Outlook 2013 on another machine (for the same user) will eventually cause the duplication to start again.  Sometimes immediately, sometimes
    not, but in my experience it has always started again within an hour of starting the second Outlook 2013 instance.  When it starts, the duplicated mail is the same as before - even though the user previously deleted all copies of it, they 'magically'
    start re-appearing.
    I'd really like for this to get fixed.  Now, before anyone replies, if you're going to just write "you shouldn't run multiple instances of Outlook for the same account from different machines",  don't.  I don't want to hear
    it and the reasons that some of my users want to do this are none of your concern.  If it's DOCUMENTED in official Microsoft documentation that this is not a supported action, then I want to see the reference myself.  Otherwise, keep it to yourself
    - thanks.
    Also, don't suggest that I delete and rebuild the user's email profiles and/or email accounts on the server.  Been there, done that (multiple times), it doesn't solve the problem.
    Dont' suggest that I ditch my existing email server and convert to something else (like Exchange). I happen to like my existing email server (and so do my users).  I've already worked this problem with their support structure fairly extensively and
    we're both satisfied that the problem is not being caused by their server code.
    Finally, don't tell me to run scanpst.  Also been there, done that (multiple times) and that too does not fix the problem, so either the problem is somewhere other than in a corrupted pst/ost file, or scanpst is too dumb to find and correct whatever
    corruption might exist.
    Having said all that, any insights into what's going on?"
    Another symptom, which may or may not be related that I'm seeing on one of the problem machines is that Outlook "sometimes" does not show recent email on the user's account.  The user can access his email account via direct web access into
    the email server and is able to see, sometimes, several days worth of email traffic that does not appear in Outlook (again, using an IMAP connection).  Trying various combinations of "send/receive" operations, "folder unsubscribe/subscribe"
    operations, even exiting and restarting Outlook all seem to complete with no errors, but also without retrieving the missing email from the server.  Sometimes "time goes by" and the user can restart Outlook and the email will appear, but
    I've not yet found a way to make it happen.

    Update:
    I've reading around the different posts and saw somewhere that it might help if i put my username and password in the outgoing mail section (where is says optional). I did that! I then shut off my wifi and tried to send mail using the edge network and it was sent successfully. I will try this when im away from home again. Hopefully this will work.

  • Multiple Duplicate Message Problem

    Each time I check my email, I appear to be downloading all my messages off my mail server as if they have not already been dlowloaded in the past, This means that I am getting multiple and incerasing numbers of duplicate email messages in my inbox. It has just started happening - is this a virus perhaps? Has anyone else had this happen to them??
    I am using mailk with btinternet (POP) - I have checked my server and only one copy exists there - it is as if the application seems to have lost the ability to tell the server that it already has specific messages...
    Any help or suggestions would be greatly appreciated...

    I read in another post (http://discussions.apple.com/thread.jspa?threadID=519926&tstart=30) that this is a problem with bt. On their broadband service status page there is the following entry:
    13 June 2006 01:54 PM
    Problem downloading multiple mail messages
    We are currently investigating a problem which may mean some customer are downloading multiple copies of messages from the server using a mail client. Please bear with us as we endeavour to resolve this problem as quickly as possible. Meanwhile we apologise for any inconvenience.
    So it looks like we will have to wait for bt to sort it out.

  • Fix duplicate contacts problem with iOs 5

    Have duplicate contacts on iPhone and iPad...sometimes multiple duplicates of same contacts.
    Contact in iCloud Sync is turned off.
    Contacts managed through Exchange.
    Have deleted and re-added Exchange account multiple times. Fixes the problem temporarily.
    What's the permanent fix?

    Apparently not: https://discussions.apple.com/thread/3643364

  • Duplicate records-problems

    Hi gurus
    We created a text datasource in R/3 and replicated it into BW 7.0
    An infopackage (loading to PSA) and DataTransferProcess was created and included in a process chain.
    The job failed because of duplicate records.
    We now discovered that the setting of the u201CDelivery of Duplicate recordsu201D for this Datasource in BW is set to u201CUndefinedu201D
    When creating the datasource in R/3, there were no settings for the u201CDelivery of duplicate recordsu201D.
    In BW, Iu2019ve tried to change the settings of u201CDelivery of Duplicate data recordsu201D to NONE, but when I go into change-mode, the u201CDelivery of duplicateu201D is not changeable.
    Does anyone have any suggestion on how to solve this problem?
    Thanks,
    @nne Therese

    Hi Muraly,
    I do have the same issue. I am loading texts from R/3 to PSA using Infopackage with Full update. From PSA I am using DTP with Delta with the option" vaild records update, No reporting(Request Record).
    It was running fine for last few weeks like transfer records and added records are same as in the PSA request every day.
    suddenly the load has filed to infoobect . I deleted the request from Infoobject and reloaded using the DTP then again failed. I tried loading full update as it texts then again failed. Now I analised the error it says Duplicate records. So I changed the DTP by checking the option Handling Duplicate records and loaded with full update . It worked fine the transferred records more than 50000 and added records are exact no of the PSA request.
    I reset the DTP again back to Delta and loaded today but the transferred records are 14000 and added records(3000) same as PSA request. I am fine if you see the history of loads the no of records in Transfer and Added in infoobjects and the no of records in PSA request are same every day..
    Why this difference is now? But in Production I have no issues. Since I changed the DTP if I transport to Production does it make any difference. I am first time doing BI 7.0.
    Please suggest me and explain me if I am wrong.
    Thanks,
    Sudha..

  • Hierarchy Problem ( Duplicates  records Problem)

    Gurus-
    I'm having a problem with cost center Hierarchy ,
    my problem is if a person is the head of cost center , he can manage 4 to 5 Cost center, I configured in bw Ex:  Mr X as a Text Node
    Under him is  all the Cost center  Character under the tedxt node .
    But when I'm running my query , I'm getting every thing getting Duplicate Values...One for the MR X & Other for the Cost Center Character
    Report out put:
    1, MR X (Which is a Text Node) cost center 1001, emp id 100.....
           and othe value for  Cost center 1001, emp id 100
    2 , MR Y  Cost center 2001 , emp id 2000
              and othe value for  Cost center 2001 , emp id 2000
    How should i  eliminate the Duplicates .Please, help me out....

    if thats the case, then the values arent duplicating, it is just the structure ur business wants to display. As MR.X is both the text node as well as the char value. thats the reason they seem to duplicate, but actually they are not. If observe, the totals would be different for both the node and value. As the node would be having mutiple values beneath it .. meaning mr.y and mr.z can aslo be under X.
    If this is the case, I dont think there is a way to supress the nodes of hierarchy if the IO has hierarcy set in the properties to display.

  • SRM 7.0 Duplicate Procurement Problem ( Source_rel_ind set to X again )

    Hi All,
    We are on SRM 7.0 and ECC 5.0 and we use classic scenario. We have a problem that is causing the shopping cart to reappear in the sourcing cockpit which is causing the duplicate procurement.
    Upon awarding the quote, the workflow creates a PO in the backend and clean_reqreq_up and BBP_GETSTATUS_2 are scheduled to run every 5 minutes. In some rare cases the shopping cart is reappearing in the sourcing cockpit even though it was alrelady procured and PO has been created in the backend. Any idea what is causing it.
    appreciate your help.
    Krishna Muppavarapu

    Thanks Krishna
    Note 1380921 - BID: Sourcing indicator is not cleared when bid is closed
    When an RFx for which a PO exists gets closed, the system returns the related shopping cart item to the Sourcing Cockpit, even though there is no open quantity. After the BBP_GET_STATUS_2 job runs, the item is removed from Sourcing Cockpit automatically.
    Other terms
    Sourcing indicator, bid invitation.
    Reason and Prerequisites
    Program Error.
    Solution
    Implement the attached correction instructions or apply the relevant Support Package.
    The relevant items will then no longer go to Sourcing Cockpit.
    it helps others . ok. it comes in SRM 700 SP 09

  • Duplicate frame problem

    Just editing another multiclip sequence (oh, the joy) and I'm having some strange behaviour occur.
    I have some B-roll material which I'm using to augment the multiclip material and it all plays fine in the viewer.
    So I trim my clip, drop it in the timeline, and on playback it duplicates random frames so I effectively get a jump/dropped frame effect.
    When I double click this trimmed clip from the timeline into the viewer, the duplicate frame is now part of the clip! If i go back to master clip and re-trim and insert, it duplicates a different frame. If I mess around with in and out points on the timeline, it again jumps/duplicates in a slightly different place! The master clip remains fine, until I trim it and add it to the timeline, then the duplicate frame becomes 'part of' the clip.
    Never seen this before, can only think it's due to the multiclip underneath on track 1. Any suggestions?
    Thanks.
    K.
    FCP 6.0.1 QT 7.3 - Black magic multibridge extreme- Apple XSan via fibre channel
    Message was edited by: Ken Evans

    Just been delving further in...
    When I double click the problem clip into the viewer from the TL it does have duplicate frames!
    the frame counter will show: 10,11,12,12,14 etc and it happens in different places depending on where the clip is trimmed.
    The actual sequence is that a frame is skipped, then to make up for it, it seems to hold onto the very next one so it looks very wrong on playback.
    I just wish one day I could use multiclip without ridiculous workarounds.

  • Fixing duplicate keyword problem in LR 2.2

    I have imported Controlled Vocabulary into my existing keyword library. Unfortunately I already had existing keywords tagged to a couple of hundred photos. As a result I now have duplicate keywords for each photo. I realize I may have compounded my problems by saving the keywords directly to photos(CTRL-S) after the import and before attempting to delete duplicate keywords.
    Is there a way to delete entire library of keywords and re-import CV without deleting keywords from the existing XMP files? Then I could continue keywording photos using a fresh CV library and edit existing duplicates when I had the time. Obviously I am hoping to avoid the worst case scenario of re-keywording all my photos.
    Note: I sent a related question on a previous thread(on 2/7)and never received a response...

    Jim, I'm in a similar workflow attempting to use a single controlled vocabulary across several libraries. The problem I run into is when adding new keywords to the vocabulary, I have to remember to export the whole keyword list and update all of my catalogs before going on to the next task. Also, as in your case, if a keyword is deleted from the vocabulary or moved to a different tree there is no easy way to duplicate the change across all libraries.
    In the same way that all of my catalogs share a common set of develop presets, are you aware of any way to have several lightroom catalogs work from a single set of keywords?

  • Unique duplicate photo problem

    the origional message would not post properly, see below
    thanks
    ~David
    Message was edited by: Machado

    I have seen a few posts on duplicate photos, but have a slightly different situation from the topics that i could find. when i origionally got my computer i transfered all of my photos that i had organized with my own folders into the 'pictures' folder of my account. when i opened iphoto for the first time, it went through some setup hooplah, and then a majority of these photos ended up in my library... no problem. i have continued to add photos on my own, directly into foldes, without using iphoto, over the course of about a year. i did this indirectly, usually putting them in a folder on another computer, and adding the folder with a flash drive (i.e. no wizard for importing). therefore, at this point, i had more photos in my pictures folder than in my iphoto. Not a big deal. Now, a few months ago, i discovered how i can import photos directly into my iphoto library with my camera, without this intermediate method, and i have had no problems with it. and i also have no 'duplicate photos' within iphoto. HOWEVER it is only recently that i noticed a folder (pictures/iphoto library/modified and pictures/iphoto library/origionals) that has the files on my computer again, seperate from my already organized folders. So i have most of my pictures from previous years on my computer twice, because of the option "copy files to iphoto library folder when adding to library" which now, after the damage has been done, is unchecked . Now, the main gist of my question is this... how can i delete the duplicated iphoto pictures in the iphoto library folder (because the origionals are already organized in my pictures) and not delete the photos that i recently imported directly with iphoto. (i realize i can do this picture by picture, but its 3k+ photos, and i dont have that kind of time ). i read about iphotodiet and duplicate annhialator, but these both seem to be dealing with duplicates within iphoto, or deleting the origional and putting the file into the iphoto library: whereas i would like to delete the copies in the iphoto library folder, replace them with links to the origionals, and keep my origionals!!! lengthy, and hopefully solvable perdicament :/
    i am open to any help of any kind!
    Message was edited by: Machado

  • Swatches problem

    hello,
    I have a new problem with the swatches in InDesign - something happened and now I can only see the pantone chart, but I cannot use the CMYK option.
    I will be most thank full if you can help me with this...
    Thanks
    Nirit

    Hi,
    I would suggest trashing your preferences and cache (Troubleshooting 101: Replace, or "trash" your InDesign preferences) and relaunch InDesign.
    Thanks
    -Anshul

  • Send email via workflow , duplicate email problem

    Dear Sir,
    We implement workflow to send email through workplace INBOX in CRM 5.0, However, when trigger to send email to INBOX, it 's always send duplicate emai.
    I don't know how to solve this problem.
    Thank you and best regards,
    Vimol

    Hi Vimol ,
    The very reasons for this to occur could be -
    1) Duplicate workflows being trigerred.
    It might be a case that two workflows are getting trigerrred by the same event .
    to check this use Event trace.
    go to SWELS --> switch on trace --> trigger workflow as per your functionality ---> goto swels and switch off trace ---> look at SWEL
    if you find two similar events , disable one and then recheck your process.
    2) OR it could be incorrect start conditions.
    3) or check workflow documentation , sometimes customizing tables also contribute towards workflow
    trigerring .
    hope this helps.
    Thanks,
    sahiba

  • The "Cover Flow" / "Album Artist" duplicate albums problem on the iPod

    Hi Guys,
    I've made some research about this issue and got to some interesting conclusions.
    DISCLAIMER:
    1. I searched the web and found people describing this problem since 2006 till 2009 and the solution always revolved around not using the "Artist" and the "Album Artist" tags like they should be used.
    2. I did a lot of testing, including re-writing the ID3 tags in different versions and formats to rule out any issues around the tags themselves.
    3. If the stuff I'm going to describe is already well known than sorry about that, I just couldn't find it anywhere.
    PROBLEM:
    An album that has a single Album Artist and different Artists appears several times in the iPod Cover Flow although it looks just fine in iTunes.
    Tagging the tracks as "Part of a Compilation" only partially solves the issue since the album will appear in the iPod Cover Flow as a Compilation showing up in the end and not together with the "Album Artist" like in iTunes and like it should.
    It seems to be a simple issue around the way the iPod uses the "Album Artist" tag but it also seems to be around forever and it's strange Apple hasn't looked into it.
    RESEARCH:
    Since I just bought a new iPod Classic, I was again looking into this issue and now I was getting annoyed, strangely the behaviour wasn't the same for all the albums that were suffering from the problem. I found that when the Artist was a combination of, for example:
    Album - AlbumX
    Album Artist - ArtistX
    Track 1 - ArtistX
    Track 2 - ArtistX Feat. X
    Track 3 - ArtistX
    Track 4 - ArtistX Feat. Z
    Track 10 - ArtistX Feat. XYZ
    In the iPod Cover Flow I got ONLY TWO different albums, one with "ArtistX" and another one with "ArtistX Feat. X".
    Well, this was very different from the normal behaviour when the artists are all completely different, in which case you get X amount of albums according to the X amount of different artist names you have.
    CONCLUSION:
    It seems to have something to do with the dot ".", I reached the conclusion that for Artist interpretation in the iPod when the Artist tag has a dot "." then it stops interpreting. That means that if you had a "." after the main artist name than it will show only once, like in the above example:
    Album - AlbumX
    Album Artist - ArtistX
    Track 1 - ArtistX. <---- NOTICE THE DOT
    Track 2 - ArtistX. Feat. X
    Track 3 - ArtistX.
    Track 4 - ArtistX. Feat. Z
    Track 10 - ArtistX. Feat. XYZ
    Then in the iPod Cover Flow it will show up only once as AlbumX - ArtistX.
    I prefer to use the dots instead of just removing all the "Featurings and similar" since I can still see it normally if I play the track.
    So, in the end, a combination like this in your "Artist" tag: "Album Artist"."Artist" would solve the problem in the iPod.
    I would love for Apple to solve this issue and I hope this helps.
    Has someone else noticed this or am I going crazy?
    Thanks!

    sometimes the official title of a release does include the Feat. Guest info.
    Yes, but only in some (or many) cases. There seems to be no consistency here, as if Apple were paying no attention about where to put "feat. guest". And I guess most of the data in CDDB (Gracenote) still have "feat. guest" in Artist (correctly, in my opinion).
    I quite agree that your workaround is the best workaround. I'm just too self-willed (obstinate?, I don't know the correct English) and don't want to pollute my Library with "wrong" data. Most of the problems would simply be solved if, just if Apple make iPods sort/group artists as iTunes do. Sorry but this is how I feel. I guess you can't help people like me. Thank you for your patience.
    Anyway, we need a clear document from Apple describing what are the intended uses of various tags, and iTunes/iPods should obey this document. It seems for me that each Apple engineer is doing just what (s)he wants to do, without any guidelines.

Maybe you are looking for