Sort Preset Bin by Name?

Am I missing something?  I've searched the net for this and can not find a way to sort preset bins by name or other.  I must be missing somthing.  When i add a preset to a custom bin it just goes in random order and that makes it hard to locate and not mix up presets with similar but different names.
Thanks for the help.
Cliff

I don't think you can do a sort like you want.  But, you can click and drag a present up or down to change its position

Similar Messages

  • Sorting of bins by using WM movement types

    Hello,
    I want to have my sorting of bins in descending order when am using the movement type 999. For example, i have bins which name are 11, 12 and 13. When i used the WM movement Type 999, i want my TO created will trigger the bins in order of starting to 13, 12 and 11. where could exactly i need to define that given that the movement type 999 settings is blank data for source and destination source bin is blank.
    thanks in advance!!
    trek

    Hello John,
    The print code is the same for the movement types that i have used, it is 21.For the sort profile TO processing configurations, we have a standard data that we have followed for all the warehouses.Are there any ways where i could set the sorting of bins in decreasing or ascending depending on the movement types that i will used?
    Thanks in advance!

  • Help with using mergesort to sort a list of names alphabetically?

    Hi, I'm trying to sort a list of names alphabetically, case-insensitive by using the mergesort technique.
    I wrote this code and when I trace it through on paper with an example array of names, it should work, but when I run it with an actual txt file, it's not correctly alphabetical.
    I'd appreciate it if someone could take a look at my code and give me some ideas on what my problem might be.
    Thanks in advance! (note: I also posted this question to java-forums.org, as I've been working on this little problem for over five hours and am in desperate need of some help!)
    public static void mergeSort(String[] names) 
            if (names.length >= 2) 
                String[] left = new String[names.length/2]; 
                String[] right = new String[names.length-names.length/2]; 
                for (int i = 0; i < left.length; i++) 
                    left[i] = names;
    for (int i = 0; i < right.length; i++)
    right[i] = names[i + names.length/2];
    mergeSort(left);
    mergeSort(right);
    merge(names, left, right);
    // pre : result is empty; list1 is sorted; list2 is sorted
    // post: result contains result of merging sorted lists;
    // add merge method below
    public static void merge(String[] names, String[] left, String[] right)
    int i1 = 0;
    int i2 = 0;
    for (int i = 0; i < names.length; i++)
    if (i2 >= right.length || (i1 < left.length && left[i1].compareToIgnoreCase(right[i1])<0))
    names[i] = left[i1];
    i1++;
    } else
    names[i] = right[i2];
    i2++;

    Welcome to the forum.
    Please read this to learn hot to format your code (and other things relevant for this forum):
    https://forums.oracle.com/forums/ann.jspa?annID=1535
    923566 wrote:
    Hi, I'm trying to sort a list of names alphabetically, case-insensitive by using the mergesort technique.
    I wrote this codeDo you know the <tt>TreeSet</tt> class?
    http://docs.oracle.com/javase/7/docs/api/java/util/TreeSet.html
    With that sorting Strings is a two liner:
    http://www.java2s.com/Code/Java/Collections-Data-Structure/TreeSetDemo.htm
    bye
    TPD

  • Alphabetical sorting of Music Artists [Name of Artist] All Songs?

    When I go to Music>Artists>[Name of Artist]>All Songs, it sorts the songs by album, is there a way to have this sorted alphabetically instead, without regard to album? Basically I want a way to view an alphabetical list of songs by a certain artist without making a million playlists. This would only apply to Music>Artists>[Artist]>All Songs, I want everything else to stay as is. This is for a current gen Ipod Classic. Also, would doing this (if it's even possible) mess up the sorting of artists who I only have one album for (I would want these to stay sorted by track number)?

    Regarding the playlists, just click on the NAME column within each playlist to sort the list by name. Make sure the shuffle icon is not selected before you do this. Your playlists will be in Track Name order now. (You must do this for EACH playlist)
    I believe when choosing an individual artist, then choosing all albums by that artist, the tracks will be sorted by album name then track number per album, so the ALBUMS will be played in alphabetical order, but the songs will play in the track order of each album. There is no way to chage this, as far as I know.
    There may be a workaround for this by removing all the track numbers from all of your files. However, this will mess up your album order if you ever wish to listen to individual albums.
    To each his own, I know, but hearing all songs in alphabetical order drives me insane.

  • PE9 - sort photos by file name?

    PE9 - how can I sort photos by file name so I can drag and drop into the timeline?

    Date is all I want to sort by, so for me it is a better way than filename. Originally they were sorted by name on iOS devices (up to iOS 3.1.3), but Apple must have decided (possibly via feedback) that capture date was a better way. You can always try leaving feedback and maybe in the future there will be a choice : http://www.apple.com/feedback/ipad.html
    If you want to sort them in a different order then you can do so if you use a Mac and transfer the photos via iPhoto or Aperture. Otherwise you can either manipulate their capture dates prior to syncing so that they are in the order you want (http://support.apple.com/kb/HT4221), or there are third-party apps in the iTunes App Store that apparently allow sorting e.g. Photo-Sort for iPad or Sort Shorts iPad Edition

  • How to display Bin Location Name in GRPO PLD ?

    Hi Experts,
    Do you have any idea about how to display Bin location name in GRPO PLD (SAP B1 9).
    Awaiting for your valuable suggestions.
    Regards
    KMJ

    Nagaraj,
    The requirement is when the user is doing GRPO, user will select the Bin location to receive the items. When the user given this GRPO details to Store keeper, user has to put the same items in particular bin  location.
    Regards
    KMJ

  • SORT CONTACTS BY COMPANY NAME

    Why don't my contacts sort the same way they are sorted in Outlook? We are a business, we need to sort by a company name not by contact name. Please help.

    I don't work for Apple so I can't speak on their behalf as to their desire to infiltrate the business mobile market.
    All I can do is tell you what the iPhone can and can not do and recommend work arounds for problems that you may be having. From what you have said, you require a feature that the iPhone does not support and the only work around is not satisfactory to you. Given that information, the iPhone is not a good fit for your business needs so you should look into a competing product.
    No one product can be all things to all people. It is up to you to decide if having an iPhone is worth the sacrifices/work arounds necessary.

  • How do I sort by employee last name when grouped by employee id?

    Hi,
    The first Group is: Employee ID.
    The second Group is: Employee Last Name.
    I wish to sort the entire report by Employee Last Name; however, standard crystal reports sorting functionality doesn't present me with this ability. As a result, the report is sorted by Employee ID.
    Can someone help me how to sort by Employee Last Name in this scenario?
    thx,
    Mark

    Hi Mark,
    When you create a Group in the report, Crystal reports automatically adds the grouped fields in the Sort list which unfortunately cannot be removed! You cannot change the priority of the sort fields too, and the only way of achieving this is by actually changing the group order. But it wouldn't help the purpose.
    As a workaround, here's what you can do though:
    1) Create a command object and provide a pre-sorted result set to Crystal Reports. In this situation you would probably create a command object like :
    select Emp_ID, Last_Name from Emp order by Last_Name asc
    2) Create the 2 groups in the report again. Open the 'Group Expert', click on the first group and then click 'Options'
    3) The Sort order for this group would be 'in ascending order' by default. Change it to 'in original order'
    4) Repeat the above step for the next group
    This is the only way I know of sorting a report on another field.
    Let me know how this goes!
    -Abhilash

  • Sorting "artist" by last name

    How do I sort artists by last name, i.e. Davis, Miles rather than Miles Davis?

    I don't believe this issue is resolved. I believe it is a fundamental flaw in the iPod. If I'm look for a Frank Zappa song, iPod sorts it so that it's filed under "F" for Frank. Blech. The problem is, iPod does not have artist first and last name fields, just "Artist".
    So the solution proposed above does work, but man, what a pain.
    In the case above, an alternative (and quicker?) solution is to change the Artist Name sort field to "Davis" or "Davis, Miles" click OK, then click apply Artist sort to all songs by this artist, which iPod will do gracefully. But, man, with over 3,000 songs and who knows how many hundreds of Artists, Albums, and individual cuts, what an arduous process!
    The fix is to have first and last name fields or to get "smart" and recognize a space between names so that an algorithm could be written to sort properly. Of course in that scenario, doing a mass conversion, "Led Zeppelin" would be filed as "Zeppelin, Led". Argh. (File as Zep).

  • How do I sort artists by last name in iTunes?

    HHow do I sort artist by last name in iTunes without tagging each album?

    For individual songs, Get Info has a sort field.  If you have a lot of songs, it will still be a lot of work to get caught up, though.
    Good luck
    srb

  • Sort videos by their name in an event ?

    Hi !
    I've imported several videos into a same event and I don't understand what data iMovie uses to sort the videos... It doesn't sort them according to their name, nor their duration or "most recent importation" or anything like that. It looks... random.
    I'd like to sort them by their names, obviously. Is that even possible ?!

    It sorts by the date and time they were shot. An event is usually defined as all the clips that correspond to a certain time period. You could have multiple events per day, such as Birthday Party, Football Game. Or you could group related events over several days, such as Labor Day Weekend.
    You can view events in the Event Library by Year or by Year and Month.
    In general, it is best to let the camcorder name the clips, because frequently, the naming scheme contains the data and time metadata. You can name the Events.
    If that does not make sense, tell us more about your clips.
    Message was edited by: AppleMan1958

  • How do you sort photos by face/name on iPad2?

    How do you sort photos by face/name on iPad2?

    iPhoto is designed to work with photos from cameras, and so seeks the date in the Exif metadata that the camera writes to the file.
    There is no way to organise photos by the date they were imported to iPhoto.
    Regards
    TD

  • Is there a way to sort easily sequences by name in the sequence editor?

    I want to sort my sequences by name. It really doesn't matter the order because I am calling those sequences from a main sequence. I am using TestStand 4.2, I saw a previous question for an older TestStand and I was hoping that maybe this function was added to newer version.
    Regards

    Oroan,
    There is no explicit function to do this but as Ray was saying you could write your own. Here's a link to an outdated discussion forum describing the process 
    sort sequences in a sequence file
    http://forums.ni.com/ni/board/message?board.id=330&requireLogin=False&thread.id=5923
    Updated for TestStand 4.2 you can do this by instead of using the ActiveX API use TestStand expressions. You can determine the number of sequences in your sequence file by calling SequenceFile.NumSequences. Loop for each of the sequences and get the name by using SequenceFile.GetSequence (Number index).Name. Sort all of these names using your favorite sorting algorithm and then remove them and insert them back in the sequence using SequenceFile.RemoveSequence (Number index) and SequenceFile.InsertSequenceEx (Number index, Object Reference sequenceToInsert). The RemoveSequence Method will return the Object Reference you need for InsertSequenceEx.
    Regards,
    Steven Zittrower
    Applications Engineer
    National Instruments
    http://www.ni.com/support

  • Elements 10 / Folder Mode sorts files in "file name" order; is there a way to do this in Elements 11

    Elements 10 / Folder Mode sorts files in "file name" order; is there a way to do this in Elements 11

    No not automatically.
    You can p-lace them into an album and then choose Album Order from the dropdown menu and they will remain fixed.

  • Sort order of file names in list windows

    Why is the sort order of file names in the File > Open File...
    list window other than in a normal Finder list window?
    Example:
    File > Open...:
    @@@2Know.pages
    @@@2KnowQ.pages
    @@@@@2Do.pages
    @@@@eBayAmaz.pages
    @@@@pws.pages
    @@@@Sold-DE.pages
    @@@@Sold-UK.pages
    Finder Window:
    @@@@@2Do.pages
    @@@@eBayAmaz.pages
    @@@@pws.pages
    @@@@Sold-DE.pages
    @@@@Sold-UK.pages
    @@@2Know.pages
    @@@2KnowQ.pages
    How could both lists be displayed equal?
    Thanks!

    Run this short script
    set theFolder to choose folder
    set theNames to list folder theFolder
    set texte to ""
    repeat with n in theNames
    --set n to n as text
    set texte to texte & n & return
    repeat with i from 1 to count of n
    set texte to texte & (ASCII number of character i of n) & " , "
    end repeat
    set texte to texte & return
    end repeat
    set p2d to path to desktop
    set rapport to "the characters.txt"
    tell application "Finder"
    if exists file rapport of p2d then delete file rapport of p2d
    set theRapport to (make new file at p2d with properties {name:rapport})
    end tell
    write texte to (theRapport as alias) starting at 1
    navigate to the folder whose list seems curious.
    You will get a file named "the characters.txt" on the desktop.
    It will show the code of every character embedded in fileNames.
    My guess is that there are some control characters which aren't treated the same by the open dialog and by the Finder.
    Here is an example:
    .DS_Store
    46 , 68 , 83 , 95 , 83 , 116 , 111 , 114 , 101 ,
    base Kbase - copie 1.cwk
    98 , 97 , 115 , 101 , 32 , 75 , 98 , 97 , 115 , 101 , 32 , 45 , 32 , 99 , 111 , 112 , 105 , 101 , 32 , 49 , 46 , 99 , 119 , 107 ,
    base Kbase - copie.cwk
    98 , 97 , 115 , 101 , 32 , 75 , 98 , 97 , 115 , 101 , 32 , 45 , 32 , 99 , 111 , 112 , 105 , 101 , 46 , 99 , 119 , 107 ,
    base Kbase.cwk
    98 , 97 , 115 , 101 , 32 , 75 , 98 , 97 , 115 , 101 , 46 , 99 , 119 , 107 ,
    exemple wKbase
    101 , 120 , 101 , 109 , 112 , 108 , 101 , 32 , 119 , 75 , 98 , 97 , 115 , 101 ,
    Icon
    73 , 99 , 111 , 110 , 13 ,
    safe
    115 , 97 , 102 , 101 ,
    scripts pour Kbase
    115 , 99 , 114 , 105 , 112 , 116 , 115 , 32 , 112 , 111 , 117 , 114 , 32 , 75 , 98 , 97 , 115 , 101 ,
     w_Kbase vers AW.scpt
    240 , 32 , 119 , 95 , 75 , 98 , 97 , 115 , 101 , 32 , 118 , 101 , 114 , 115 , 32 , 65 , 87 , 46 , 115 , 99 , 112 , 116 ,
    Yvan KOENIG (from FRANCE samedi 7 mars 2009 23:14:15)

Maybe you are looking for

  • Z1 White Balance Displa Setting

    May I ask how to see the white balance setting into the display setting for Xperia Z1? Bec. I have Xperia Z also and the white balance setting is already seen but into my Z1 I can't see the white balance setting to adjust the screen display hope to a

  • Quickly creating an intro to multiple compositions

    Thanks for checking out my post! He is an overview of what I'm trying to do: Take approximately 200 videos, insert a 10 second countdown (I have a pre-rendered video, but I don't have to use that particular one), and slow the videos down, and render

  • 2012 Developer Install: prior version registry problem

    Hi,       Just trying to do a simple ms sql 2012 developer edition install on a win 7 machine.  It would be easy except this machine has a laplink upgrade history.   Some old registry entry from the ms sql 2005 install is messing up the current 2012

  • Brief water contact; black apple logo blinking/flashing white screen

    Ok, this idiot didn't take his phone from his pocket & it briefly was water submerged. Maybe 20 seconds; feeling stupid about it. Phone has been in a bag of (uncooked) rice for a solid 48hrs. I thought that was long enough to plug phone into lighteni

  • Mac mini: OS can not "see" second HDD.

    Hello: Through a series of unfortunate events I messed up the partition table of my Mac mini server. The OS can not "see" one of the 02 HDDs included in this mini server. Even trying to install the OS from the original DVD fails to see the second HDD