How to delete items in folders

Noticed that some playlists had incorrect icon and some of the folders, ie 70's music, and others have some items that shouldn't be there. I looked for a way to delete the individual songs in the misc folders but unable. Does anyone have an ideas?
Thanks,
Don

Working fine now.

Similar Messages

  • How to delete items in transport request

    How to delete items in transport request.  I have quite a lot data to be deleted.
    I click on TR5001. Then click to drill down to Table contents
       C001 
                Data A1
                Data A2
                Data B1
                Data B2
    Placed my cursor on Data A1 and tried deleting Data A1 by clicking on the item and right click then select delete but not able to delete with message "Message no. TK705, A request, task or object could not be deleted because the cursor was not positioned correctly".  . 
    Any clue to the error and any recommded solution?
    I just need to transport Data A2, Data B1 & Data B2. 
    Regards
    PSK

    Hi There,
    I dont have access to SAP as of now, Can you please reffer to these links and give feedback,
    [cursor Page|http://books.google.co.in/books?id=ASekwAiAXdMC&pg=PA250&lpg=PA250&dq=Positionthecursoronarequest,task,orobjectSAPtransport&source=bl&ots=BS7c1uNH0z&sig=dQZNp7UuXvqyHT9-otTbip8iF8U&hl=en&ei=_NBESr7CDsmGkAXX8MmsDw&sa=X&oi=book_result&ct=result&resnum=1]
    [SAP help|http://help.sap.com/saphelp_sm32/helpdata/EN/b6/b40613a44411d1846d0000e8a57770/content.htm]
    Thanks,
    Raja

  • How to delete items in download queue on server side?

    how to delete items in download queue on server side?

    We are fellow users here on these user-to-user forums, you're not talking to iTunes Support nor Apple. If you've tried deleting them and they keep re-appearing in your downloads then you will need to try contacting iTunes Support to get them removed : http://www.apple.com/support/itunes/contact/

  • How to Delete Item from Front Row?

    Someone sent me a short imovie project and it was automatically downloaded to my "Download" folder. When I opened Front Row, the project name it's right under "Movies" along with "iTunes Top Movies", "Theatrical Trailers" and "Movie Folder".
    I then moved the project file from "Download" to another folder created under my "Movie" folder. When I went to Front Row again, the original project was still under the list in Movies, now it's also in "Movies Folder". So basically it's showing up twice in Front Row in different places.
    I see that once I play the movie from my Movies folder directly from the folder, it's automatically set to Music/iTunes/iTunes Media/Movies. So it's showing up in Front Row via iTunes, and it's also showing in Front Row via my Movies Folder.
    I just want to organize Front Row so that I don't have a long list of projects immediately under "Movies" in Front Row. I want these projects to neatly go in one personal movie folder only.
    Is there a way to reorganize the items list in Front Row?
    How do I delete the item that's originally placed under "Movies" in Front Row?

    Assets are organized in various apps - primarily iTunes for most of us.
    That said, you may benefit from this series:
    http://www.macnewsworld.com/story/59317.html

  • How to delete mega-gig folders in hours or minutes instead of days?

    I recently had my computer repaired, a new hard drive installed, and any materials that were not recognized as obvious duplicates were stored on the drive. Now my space is practically maxed out, especially by 4 folders of audio files, each of which is a duplicate and each containing more than 50 gigs. When I do a folder delete or drag a folder to the trash, it requires many many hours, sometimes resulting in a "trash crash"--perhaps due to one defective file that simply won't delete. My next strategy was to attach a couple of external drives--an Iomega and Seagate, both configured for Mac. I thought I could transfer my folders to the drives and then use the "Erase" feature in Disk Utility. However, I'm discovering that dragging the folders to the drives doesn't actually "move" the folders: it merely "copies" them to the drive. Rather than solve the problem, I've increased it (doubling the number of problematic folders)! Short of deleting thousands of files one at a time, or bringing my computer back to a professional, is there some way I can get rid of the unwanted folders? Can an external storage drive be set so that, rather than copying my extra folders, it simply stores them? Thanks for any illumination. Cap

    The fastest way to do this would be to use the Unix command line. One very simple command could wipe out all of those files, however you at least need to know the basics about navigating a filesystem in Unix.
    How comfortable do you feel about doing something like this? Because this is kind of like taking away all the safeguards that the Mac UI has in place. If you mess up the commands, there is a possibility of hosing the entire OS. If you can follow instructions exactly, there should be no risk, but miss a few key characters, and things can go very wrong very fast.
    So, if you have any doubt about this, why not just delete the files in chunks instead of all at once? Just delete one folder at a time since you say there are 4 of them. Or if I'm misreading things, just grab like 100 files at a time, and delete those. It's tedious, but you only need to do it once. You can just format the external drives. Which is also always an option, if you're willing to start over with a virgin OS.

  • How to delete items selected in a JList?

    Ahoy,
    I hava made a Multiple selection list (two list: one for
    the items that might be selected and another one
    for the selected items). How can I delete the (faultly) selected items in the second list?
    Thanx,
    // create function button
    copy = new JButton( ">>" );
    delete = new JButton ( "<<");
    copy.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e )
    // place selected values in functionList
    copyList.setListData(
    functionList.getSelectedValues() );     
    delete.addActionListener(
    new ActionListener() {
    public void actionPerformed( ActionEvent e )
    // delete selected items from copyList
    );

    You must get the selected item and remove from the model...
    delete.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    int si = list.getSelectedIndex(); //get the index of the item selected
    if (si > -1) {   //to validate that be selected
    listModel.removeElementAt(si);  //remove from the listmodel
    modifyTextField.setText("");  
    });in this url you can see a complete sample..
    http://www.esus.com/javaindex/j2se/jdk1.2/javaxswing/atomiccontrols/jlist/addtojlist.html

  • How to delete files, leave folders?

    I have a folder in my documents folder that I would like to clean up. It contains many folders and sub-folders (directories and sub-directories) in a many layers deep arrangement. I would like to delete only the files while preserving the folders and sub-folders (makes backing up and synchronising a LOT easier).
    I am not using Time machine.
    Help appreciated.
    (If it is easier to just delete the main folder and then copy back just the folders from the back-up drive, please help me figure out how.)

    Terminal session
    find /path/to/starting/directory ! -type d -exec rm -f {} \;
    As has been mentioned before, this is a dangerous operation, so MAKE SURE you have the starting directory correct.
    Best to test first using
    find /path/to/starting/directory ! -type d -ls
    Then use the remove file version.

  • How to delete items in download queue

    I've got a number of TV shows in my download queue that I decided against purchasing.  They have never been downloaded.  I delete them manually from the queue, but they keep reappearing.  How can I delete these items permanently?

    Sorry, but I find it very annoying that you can't cancel  something you downloaded when you got it for free (for example, the free songs, books, and apps that Starbucks offers). I  don't mind downloading the songs because they are short, but  when I  download a free TV show and then it tells me it's going to take 4 hours to download because it's 1.4 gigabytes, I want to be able to cancel the download permanently. As it stands now, it keeps coming back on the queue. There should be an option to cancel the download permanently.  I have called Apple  once already to discontinue a long download and they helped, but I don't think  Apple customers  should be required to call them to cancel a download, nor should we be required to wait 4 hours for a download to complete before deleting it.

  • How to delete items in cloud

    How do I delete old videos etc in cloud?

    your self-recorded iOS videos are not accesible . Neiter to delete them nor to watch them..  they are just part of the full iOS backup at once. To delete your backup ( which is a bad idea ) , open Lions icloud preference in Systemsettings, click on the space indicator "manage". From there you can delete cloud data.
    If you thought of purchased itunes videos : they are in your purchased items list and do not take up your space. Apple holds them for you.

  • Home folder on Skype - how to delete items

    My home folder on skype shows a lot of titles of tunes with dancing music notes - when I click on them My profile page pops up. How do I get rid of thes items ??

    If you switched always show bookmarks bar to off, you should not be seeing any bookmarks in the bookmarks bar. If you want to keep the bookmarks bar, but remove some of the bookmarks in it .....
    Tap the bookmarks icon and then tap Bookmarks bar. Tap Edit in the upper right corner of that window, tap the red line in a circle icon to the left of the bookmark, then tap Delete when it pops up. Or just swipe across the bookmark and the delete button pops up,
    Tap done when you are finished.

  • How to delete items from itunes library but not from computer

    I was wondering if there is a way to remove items from my itunes library but still keep them on my computer in case I want to put them back in the library later. For instance, I bought the first season of Desperate Housewives, which takes up about 4.5 GB, and since I have the 30 GB ipod and lots of personally ripped DVDs, I'm running out of room. But it seems a waste to trash the files, since I paid for the show. I know I should back up the files to an external source anyway, and I've done that with my purchased music, but I don't have a DVD burner, and I'm not sure how many CDs it would take to back up the show. And I don't want to manually update the ipod because I think it's much easier to just plug it in and let it do its thing. Any suggestions/help would be appreciated. Thanks.

    Go to that File(s) and right-Click to Remove; then it will ask you if you want to send it to the Recyle bin or Keep Files on your computer; Say Keep Files on your computer and should be fine.

  • How to delete items from the list of "auto-open" tabs that load whenever FF4 opens?

    When I recently downloaded FF4, I was asked if I'd like to have FF automatically open the same tabs as were set in my IE. Great! Worked perfectly until I set those tabs as App Tabs. Now both the App Tabs and the original IE set of tabs open whenever I open FF -- essentially each tab loads twice -- as app tab and large tab. How can I delete tabs from the list of "auto-open" tabs? In addition, for some reason, every time I try to set my home page, it's not working -- I keep getting the same home page regardless of how many times I have tried to set a new one.

    You can close a tab with a middle-click or with a left click on the close X on the tab or via the right-click context menu of that tab.<br />
    Do those tabs come back if you close then and lose Firefox?

  • How to delete DTR wokspace folders

    Dear Experts
    I did some serious mistake and require your help to get rid of it. Basically I created one track and imported the Dev Config in NWDS and created some CAF DC inside it after creating a DTR client. Then I have deleted the projects manually from DTR perspectives inactive view and local view. Then I deleted the track itself. At the time of deleting the track I could see a message which says to delete the DTR workspace seperately. I ignored this message.Then I recreated a new track with same name and saved it;imported the Dev Config; created on CAF DC and could activate and deploy it in the runtime system. Now when I go to DTR WS I see the DCs that I deleted manually from NWDS are still present there and I am not able to delete them. I could found a note from SAP (855537) but could not implement this as I have violated the basic pre-requisites. I have deleted the track itself and the DCs manually.
    Plz provide your inputs on any workaround which I can follow to delete the DTR WS folders.
    Thanks & Regards
    Sudip

    Hi Pascal
    I guess by WebDAV client you wanted to mean windows explorer/internet explorer. But I have tried this approach to delete the folders from IE but it is giving me error. Please comment if I am missing out anything.
    Thanks in advance.
    Sudip

  • How to delete items in the "Places" list in Finder?

    In Finder, in the left column, I have several entries under "Places" which do not belong on this MacMini. When I click on them I get the message "The volume for xxxx cannot be found". Nor can I delete them from "places". I also fear that this is the reason that the MacMini now is exceedingly slow, i.e. spinning color wheels on end.
    These items in "Places" might have gotten on the Mini when I did some synchronization via .Mac with my PowerBook (where these Places make sense), but I would not have any idea which setting could have caused this.
    Any pointers will be highly appreciated.
    Cheers,
    Veit

    Thanks for this solution! Why did I never try it?
    Cheers,
    Veit

  • How to delete  items in CCM manually?

    Hi experts,
    We are using CCM 1.0 . Items which are visible in mysupply are not present in any of the CCM catalog. is there any way to delete these items from the system manually.
    please let me know its urgent.
    Thanks
    Venkatesh.

    solved

Maybe you are looking for

  • Newer 32GB iPod Touch no longer connects to MacBook.

    My newer 32GB iPod Touch no longer connects to my MacBook at all. All has worked fine until yesterday.  All cables and USB port check out fine with older iPod. Touch still works beautifully but charge is dwindling. Since it's not recognized by MacBoo

  • Collection Report

    Hi, any standard report available for customer incoming payment collection report. SAP user.

  • Anyone here got a recommendation for a certificate provider?

    Hi I am about to blow $550 on a 3 year certificate and I would like to know anyone's experiance with this kind of stuff. For me this is a lot of money just to put a 12 letter string on an installer. Who is the best company for this kind of "product"

  • Urgent:Regarding the Pre-Installation Tasks

    Hi, I have a scenario: Currently, i have installed Oracle AS Infrastructure(D'base 10.1.0.5.0) as a pre-requisite for installing oracle Content DB. My Question is : Is that mandatory that i have to again install oracle 10g database as pre-requisite b

  • OCE with metadata - display problems

    <p>Hello,<br><br>I'm having problems with an OCE that retrieves metadata informationon Hyperion Intelligence Designer 8.3.2.138.<br><br>I have 2 databases on the same server, both are MS SQL Server 2000.One holds application data, the other holds Met