Grouping similar movies under one thumbnail

Hi,
I've bought a few movies from iTunes that are part of a series, like Star Trek, Die Hard, etc.
I want to group such moves together so that (for example), all the Star Treks appear together under one thumbnail - like episodes are grouped in seasons in TV Shows.
In Get Info, I've named the Album and TV Show (in Video) Star Trek, called the Season " 1 " and given "episode" numbers to each movie.
When I view them in Cover Flow and List, they are grouped together under one "poster" (thumbnail), but if I view them in Grid they are all scattered about. As is the case when transferred to an iPod.
And how do I get the them to appear under one thumbnail on an iPod - like TV Seasons (without needing to class my movies as TV Seasons)?
Regards

Hi,
Try to use BankID instead. I think by using this you can find the bank even though they use different spellings.
If bankID is not there then try to enhance that to the InfoObject.
Regards,
rik

Similar Messages

  • Idoc mapping to group similar items under one idoc

    Hi,
    I have a file to multiple idoc scenario.
    My Source structure:
    Msg type
       Data Type
              Header (1)  (field1, field 2, field 3 etc)
              ITEM( 0 to U)  (field X, field Y, field Z etc)
    Target structure:
    Idoc Type
         IDOC (1 to U)
         Begin
         Idoc Ports (1) (field a1, field a2, field a3 etc)
         Idoc_HDR (1) (field1, field Y, field 3 etc)
               Idoc_ITM (1 to 99999999)  (field X, field Z etc)
    Idocs are generated only for some ITEM lines of source and so the value of field X is used and mapped to IDOC node using createif.
    Rest of the mapping is done normally and works fine and creating multiple idocs if there are multiple ITEM lines in the source file. This mapping is doesn't work if I want to create multiple Idoc-ITMs
    My requirement is to create multiple Idoc_ITM nodes under one parent IDOC node for for all ITEMs relating to one "field Y" of source. At the moment I am creating 4 idocs for the below example, but I want 3 like below:
    For example:
    Source file:
    Country, city, date
    emp1, department1, roleA
    emp2, department1, roleB
    emp3, department2, roleC
    emp4, department3, roleC
    Required Target file:
    IDOC 1
    Idoc_HDR
      Country, department1, date
      Idoc_ITM
      emp1, department1, roleA
      Idoc_ITM
      emp2, department1, roleB
    IDOC 2
    Idoc_HDR
      Country, department2, date
      Idoc_ITM
      emp3, department2, roleC
    IDOC 3
    Idoc_HDR
      Country, department3, date
      Idoc_ITM
      emp4, department3, roleC
    How can achieve it please?
    Many thanks.
    Ramesh.

    Hi Muni,
    The source and required target xmls are here: I made it a bit simpler for better understanding and space.
    If you want the xml of the source message structure, I can send that too.
    Source:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:expense_source_msg xmlns:ns0="http://dtsp.com/postexpense">
       <Online_Expenses>
          <Expenses_Header>
             <Constant/>
             <BatchDate>20140320<BatchDate/>
             <Record_Count/>
             <Amount_Total/>
          </Expenses_Header>
          <Expenses_Item>
             <Employee_ID>test1<Employee_ID/>
             <Employee_Name>RAMESH<Employee_Name/>
             <price>10.00<price/>
             <Org_Unit>z1<Org_Unit/>
             <Type>Price<Type/>   
          </Expenses_Item>
          <Expenses_Item>
             <Employee_ID>test2<Employee_ID/>
             <Employee_Name>ANKIT<Employee_Name/>
             <price>20.00<price/>
             <Org_Unit>z2<Org_Unit/>
             <Type>Price<Type/>   
          </Expenses_Item>
          <Expenses_Item>
             <Employee_ID>test3<Employee_ID/>
             <Employee_Name>SIVA<Employee_Name/>
             <price>30.00<price/>
             <Org_Unit>z2<Org_Unit/>
             <Type>Price<Type/>   
          </Expenses_Item>
       </Online_Expenses>
    Required Target:
    </ns0:concur_online_expense_source_msg>
    <?xml version="1.0" encoding="UTF-8"?>
    <ZFI204_AR_INV01>
       <IDOC BEGIN="1">
          <EDI_DC40 SEGMENT="EDI_DC40">
             <TABNAM>EDI_DC40</TABNAM>
             <DIRECT>2</DIRECT>
             <IDOCTYP>ZFI204_AR_INV01</IDOCTYP>
             <MESTYP>ZFI204_AR_INV</MESTYP>
             <RCVPRN/>
          </EDI_DC40>
          <Z1ZFI204_HDR SEGMENT="Z1ZFI204_HDR">
             <DOCUMENT_TYPE>KX</DOCUMENT_TYPE>
             <DOCUMENT_DATE>20140320</DOCUMENT_DATE>
             <POSTING_DATE>20140320</POSTING_DATE>
             <COMPANY_CODE>z1</COMPANY_CODE>    
             <Z1ZFI204_ITM SEGMENT="Z1ZFI204_ITM">
                <NET_INVOICE_AMOUNT>10.00</NET_INVOICE_AMOUNT>
                <EMPLOYEE_NAME>RAMESH</EMPLOYEE_NAME>
                <EMPLOYEE_NUMBER>test1</EMPLOYEE_NUMBER>
             </Z1ZFI204_ITM>
          </Z1ZFI204_HDR>
       </IDOC>
       <IDOC BEGIN="1">
          <EDI_DC40 SEGMENT="EDI_DC40">
             <TABNAM>EDI_DC40</TABNAM>
             <DIRECT>2</DIRECT>
             <IDOCTYP>ZFI204_AR_INV01</IDOCTYP>
             <MESTYP>ZFI204_AR_INV</MESTYP>
             <RCVPRN/>
          </EDI_DC40>
          <Z1ZFI204_HDR SEGMENT="Z1ZFI204_HDR">
             <DOCUMENT_TYPE>KX</DOCUMENT_TYPE>
             <DOCUMENT_DATE>20140320</DOCUMENT_DATE>
             <POSTING_DATE>20140320</POSTING_DATE>
             <COMPANY_CODE>z2</COMPANY_CODE>    
             <Z1ZFI204_ITM SEGMENT="Z1ZFI204_ITM">
                <NET_INVOICE_AMOUNT>20.00</NET_INVOICE_AMOUNT>
                <EMPLOYEE_NAME>ANKIT</EMPLOYEE_NAME>
                <EMPLOYEE_NUMBER>test2</EMPLOYEE_NUMBER>
             </Z1ZFI204_ITM>
             <Z1ZFI204_ITM SEGMENT="Z1ZFI204_ITM">
                <NET_INVOICE_AMOUNT>30.00</NET_INVOICE_AMOUNT>
                <EMPLOYEE_NAME>SIVA</EMPLOYEE_NAME>
                <EMPLOYEE_NUMBER>test3</EMPLOYEE_NUMBER>
             </Z1ZFI204_ITM>
          </Z1ZFI204_HDR>
       </IDOC>
    </ZFI204_AR_INV01>

  • Grouping single songs under one artist

    Hi,
    I've been busting my brain; how do you group single songs to appear all under ONE artist? Is there a way to do this without changing the artist field? Has it something to do with compilations/sorting category?
    Note, this is for playback on the iPhone but hope this is the right category as you have to do this in iTunes!
    Thanks

    MusioMan wrote:
    Haha, i'm now talking to my email subscriptions so i've gone mad! I do thank you for the help though.
    So say you have these random songs;
    Yesterday by the Beatles
    Hey Jude by the Beatles
    Hotel California by the Eagles
    Respect Aretha Franklin
    On my iPhone, they each appear under the artist name (Beatles/Eagles/Aretha)
    There still doesn't seem to be a way to plan all these songs from the ARTISTS menu by selecting say, 'various artist' or miscellaneous.
    The only way i can think is rename every artist field to 'various artists' but you loose the artist name this way.
    Message was edited by: MusioMan
    Nope, the artists menu is just that, a list of artists. If we had an *Album Artists* menu then you could find such collections under say "Various Artists" if you grouped them together with an Album name. Even though we don't get an *Album Artist menu* if you do go to the trouble of creating an album name for this collection then you can just choose it from the Album menu. If you happen to be browsing the artists and notice the Beatles entry you can drill down into it, then the album for this collection then having selected a track, turn your iPhone into landscape mode and reselect the album so that all tracks play. Otherwise playlists may be a better bet, and at least you can then leave these tracks with their original album art and other details.
    tt2

  • Putting multiple chapter-marked movies under one IDVD menu

    I am currently making various instructional videos for a company and I want to fit 4 separate imovies that are chapter-marked under 1 idvd menu so I can fit this in 1 Dual layer DVD . Any answer can help. Thanks
    Macbook Pro 15"   Mac OS X (10.4.10)  

    I assumed the OP had tried that and it failed..
    I asssumed he was using the 'Export from iMovie' approach that only gives you a way to add one movie to an iDVD project.
    Anyway, we should have him covered.
    Fred

  • How to group Similar Rows into One Row  ?? Suggestions??

    Hi there , I am having a problem in my project you see I have 2 dimensions in my cube called Username and Symbols and a measure called M1.
    You see in the Symbol dimension there is repeated data in multiple rows such as the following
    Pepsi
    Pepsi
    Pepsi
    CocalCola
    Now when i display the dimension Username with the dimension Symbol using the Measure value M1. I get something like this
    UserName A
    Pepsi---- 10
    Pepsi---- 10
    Pepsi---- 10
    CoacalCola--- 20
    Now in the above table UserNameA represents a member of Username Dimension and cold drinks represent members of the Symbol Dimension
    and the numarical value represents the measure M1.
    I want it to appear something like this
    UserName A
    Pepsi 30 (Notice The measures of Pepsi have been added)
    CocalCola 20
    Any idea on how i can accomplish this or tip i would be really thankful

    Hi
    Use the aggregator operator in mapping. You can use the SUM function on the columns you wish to sum for example, and group by the other columns.
    Cheers
    David

  • How can I group collaborations under one artist?

    Hi, this is hard to explain but I'm trying to group various collaborations under one artist so that it looks neater on my iTunes/iPod. I haven't managed to get it working right yet. I'll give an example:
    I have various albums involving Elvis Costello. They include solo albums, but also albums credited to "Elvis Costello and the Attractions", "...and the Imposters", "...with Burt Bacharach" and so on. I don't want to drop these titles, but I would like them all to be sorted on my ipod in a folder named "Elvis Costello". I've tried fiddling about with the Artist, Album Artist, Sort Album, Sort Album Artist fields etc but i haven't had any luck.
    I'm using iTunes 11.1.5.5, and an iPod Classic 2.0.4.
    Does anyone know how I can do this? Thanks.

    I have exactly this situation, with the following solution:
    In all cases where I have one Artist per album (most of EC's albums), set the Sort Artist to "Costello, Elvis", leave the Album Artist and Sort Album Artist fields blank
    For compilations like "Out of Our Idiot", where the Artist field varies across tracks, set Album Artist to "Elvis Costello" and Sort Album Artist to "Costello, Elvis", leave the Sort Album field blank
    For all albums set the Sort Album to "Costello, Elvis yyyymmdd" where yyyymmdd is the release date - this is a standard scheme that I use to ensure than when sorted by Artist & Title albums appear in correct release order (sorting by Album and Year doesn't always work when an artist has more than one release per year - I categorize live albums by recording date, so this works particularly well for artists with multiple live releases from the same year, e.g. I have 33 Grateful Dead albums* where the Year field is 1972, including the recording/release date field in the Sort Album ensures that these are listed in correct sequential order).
    With this approach the Albums listing on my iPod Nano 7th gen is (to me) correct, being ordered by artist and then by release date.
    * I have each of the 22 shows from the "Europe '72" box set in iTunes as separate albums.

  • Multiple Podcasts under one Artist

    I am looking for information on how to build a group of podcasts under one artist? Just like the VH1 podcast. A main page with all vh1 podcasts listed (with graphic). Thank you for your help.

    Now the site won't let me edit my original post yet again, so I'm going to have to "Reply" to my own thread.
    After removing all the Minutemen songs from my iPod, and re-editing all the ID3 tags for the MP3 files on my hard drive, then dumping all back onto my iPod, I'm still having the same problem.
    <Edited by Moderator>

  • Group Different Albums by the Same Artist under one Album Cover

    I've read many posts regarding grouping tracks by different artists into one album, but none dealing with grouping tracks by one artist together from different album titles. An example of this would be classical pieces that are divided into different acts, or more recently, the new Green Day album "21st Century Breakdown," which also divides the album into "acts." Another example of this situation could be a box set by a particular artist, for instance an Eagles box set that contains 3 discs of differing titles (disc one: Eagles, disc two: Desperado, disc three: Live) in which case the three CDs are all essentially part of the same album.
    I know the grouping field can be utilized to tag all the CDs within the same set to keep them together; however, I have not been able to use this feature to group albums such as those mentioned above together under one album art in the grid or in the coverflow view. It looks rather silly when there are 3 or 4 of the same album cover in a row in the grid or the coverflow.
    The best way I could think to differentiate the different acts on an album or CDs in a set was to group the songs in their own folder and change the title of the album tag to reflect which act (or CD) those particular tracks covered. While this works in the list view to keep the tracks in order, it does not allow me to view the album as a “whole” using the coverflow view. It seems the only way to merge differently tagged tracks is if the ALBUM title is the same even if there are multiple artists. I’ve tried using the grouping, sorting, and “part of a compilation” options with no success. Is there any way to merge these tracks under one album art while retaining the different album names?

    Adding slightly to the previous post I would suggest that you give each disc of the set an appropriate disc no., e.g. Discs 1 of 3, 2 of 3 and 3 of 3 for Eagles, Desperado & Live respectively in your Eagles Box Set. Record the individual disc titles in the Comments or Grouping field, then change the Album title for all three discs to something appropriate like "Eagles Box Set". The three discs will collapse into one cover and play in sequence. If marking the transition from one disc to another matters you could, for example, simply add the album name in brackets to the first track of each album. You could use curly brackets to distinguish this from other types of track comment. For more organizational tips see my previous post on Grouping Tracks Into Albums, in particular the topic One cover for multi-disc album.
    The alternative approach for box sets which simply repackage a number of original albums together is to find the original artwork for each album.
    tt2

  • For itunes 11: movie that are not purchased via itunes are loaded into and catagorized as "home videos". I want all of my movies in one spot under Movies as they always were. How can i tweak this?

    for itunes 11: movie that are not purchased via itunes are now loaded into and catagorized as "home videos". I want all of my movies in one spot under Movies as they always were. How can i tweak/resolve this?

    Cdaver wrote:
    I have this issue too and want the same result, another feed suggests selecting the movie, going to get info, and changing this under options, but I suppose you have to do that movie by movie.
    You can select all the movies you want and change them at once.

  • Move group of pages from one InDesign file to another InDesign File using VB.Script

    Dear team,
    I am trying to move group of InDesign pages from one indesign file to another indesign file using vb.script.
    I have written the code like
    Dim Pages=IndDoc.Pages
    Dim Mytype=TypeName(Pages)
    Pages.Move(InDesign.idLocationOptions.idBefore,IndDoc1.Pages.LastItem)
    but it is giving an error as method Move is not a member of Pages 
    please give mme the solution to move the Multiple pages or a group of page from one Indd to another Indd.

    Hey Peter, if I wan to move several page that part of Auto Flow text, I checked the "delete page after moving" but the content still there, not deleted.
    Is there any way to delete it automatically, just to make sure I have moved that autoflowed page?

  • Is it possible to have a group of email contacts under one name eg mums in year 4?

    I would like to be able to send a group of people regular emails without having to add their address to the 'to' box. Is it possible to have a number of email addresses under one name?

    Hi,
    from the panel on the left hand side (where you see all the slides vertically), you can select one with your mouse and slightly drag it to the right, so as to create a sort of indentation.
    would that work?
    Ricc

  • How to group order & AR for the customers under one customer hierarchy

    There are serveral customers under one customer hierarchy, we could easily get the group value in COPA (KE30) via
    the "customer hierarchy" parameter in the navigation channel. Could we also get the group value towards the incoming sales
    order and Account Receivable? Thanks for the suggestion...

    Hi,
    Please check "FDM_COLL01". It is very useful report, you can drill down the report inside aswell.
    Rgds
    Murali. N

  • HT1766 On an iPhone 5, Is there an easy way to move app icons as a group? instead of one by one?

    On an iPhone 5, Is there an easy way to move app icons as a group? instead of one by one?

    If you have a bunch of apps on one screen yunwantnto move to another as a group, create a folder by holding your finger on ne app until all the icons start shaking and show and "x" in the top left corner of the icon. Press again and don't lift your finger; move that icon with your finger over one of the other icons you want to add to the folder, which will create a folder. Then you can move the other apps you want to move into that folder. When you have all the apps you want to move into that folder, close the folder by tapping on the screen outside the folder. The icons should still be shaking. Then press on the folder you want to move and slide it to the edge of the screen, left or right, until the folder moves to the next screen. Once you get it to the screen of choice, you can leave the apps in that folder or move them out by the same process. When you are done moving things around, press the Home button and the icons will stop shaking. Now they will stay put.
    Alternatively,my can sync your device with iTunes and move the icons around in the Apps windows in iTunes, then re-sync your device after you're finished. That will rearrange your icons on the device.
    Good luck!

  • Move apps under one icon ???

    Does anyone know if you can move some of your apps (games) under one icon so that your ipod will hold more. I am no where near 1/2 full and I can not put anymore on the ipod ( it only holds 9 pages of icons) and would like ot add more apps. Which i can add more apps but can not see icon to exe the app. Any help?

    i don't think that is possible, sorry.

  • How to prevent multiple purchases under one account

    how do you make sure kids dont purchase songs already under my library? We have three people buying songs from different devices under one credit card. Thanks, Julie

    Welcome to the Apple Community.
    Previously purchased items should display a purchased notification instead of the price at the point of purchase. I think the problem might occur when there are similar items, some people like to have various versions of the same thing, it probably isn't appropriate to mark these as purchased.
    I guess it's a difficult one, but perhaps the only way is to get them to check before they buy.

Maybe you are looking for