Sorting Folders and limit chars per row: is it possibile?

Hallo,
I am new to OS X and to Mail, I would like to:
- sort the folders I have created in the order I prefer instead of alphabetical order;
- limit the number of char for each row eg. 72 chars for each row I type.
Are these costumizations possible?
Thank you
Message was edited by: fauzzo

hi aimee,
if you're working on SAP environment, use proper tools. For example, SAP have already provide you BRTOOLS to configure and manage your Oracle Database.
Use this tool otherwise may be some problem will happened.
ardhian
http://sapbasis.wordpress.com
http://ardhian.kioslinux.com

Similar Messages

  • Sorting folders and files in FINDER

    I can sort folders and files alphabetically, chronologically, etc using LIST view, but not in any other view.
    I seem to recall that FINDER used to sort alphabetically but now seems to sort randomly. I prefer to use the COLUMNS view.
    In LIST view there are column headers NAME, DATE MODIFIED, SIZE, KIND and clicking on one will sort accordingly.
    But these headers do not appear in the other views.

    Hi,
    This can be done. If you want to arrange your files etc as columns...select "As Columns" from the "View" menu & then select "View Options" also from the "View" menu. It will then give you options as to how you wish to arrange your files etc.
    Ben

  • How to alphabetically sort albums and folders within a folder

    Much to my dismay, I discovered that iPhoto will not alphabetically sort folders or albums that are within a folder. It will only sort folders and albums (in separate groups) that are at the "root" level beneath the ALBUMS label. I used "iPhoto Folder Import 1.0" to import multiple clip art and stock photo files which resulted in many nested folders and albums that did not stay in alphabetical order (because iPhoto often randomize them when you add them to an existing folder).
    Here's how to get around the problem.
    Albums: 1. Select all the albums in a folder. 2. Drag the albums to the ALBUMS label so they end up on the root level. 3. Right click on any of the selected albums and choose "Sort Albums." 4. Drag the still selected albums back into their original folder. They should retain their alphabetical order.
    Folders: 1. Close all the folders that you want to alphabetize. 2. Follow steps 1-4 above with "folders" in place "albums."
    I cannot understand why sorting won't work within folders. I also do not understand why we don't have the option to alphabetically interleave folders and albums. The only way to achieve this is to create folders for just one album, which seems silly.

    crossrulz wrote:
    CSmith8 wrote:
    Thank you for a quick response.
    How do you suggest i resolve the issue of different data types in order to use this function? I have tried a few different ways and have whenever I adjust, it wont run through my sub VI's correctly due to being different data types.
    You have to READ THE FILES.  Jeff just showed you how to use a FOR loop to go through the files.  You still need to open the files, read them and then process the data.
    I had assumed from CSmith8's original post that the text file processing vi worked.  just drop that vi into the for loop and wire the file name in!
    Alternately, attach the code that processes the file and a sample file.  I bet we can show you a thing or two about how to do it cleaner and faster  then point you to the right learning resources so one day you can show us some new tricks.
    -Old Dog Jeff·Þ·B
    (Why does everyone forget the commas?  alt+0183 alt+0222 alt+0183) 

  • HT204655 Can I create folders and subfolders in the new Photos on my mac?

    I've just started using the new Photos app in the latest Yosemite update on my Macbook Pro.
    Until recently I was using Aperture to sort all my photos into folders and subfolders - I think they were called "events" or "projects" in Aperture. 
    In Aperture, I was creating folders like "1993", "1994", "1995" or "Best of My Family".
    Then I had subfolders within those folders - things like a "Christmas 1995", and perhaps some subfolders within that like "Christmas 1995 at Home", "Christmas 1995 at Parents" as well as things like a "favorite 1995 pics".
    And sometime non-date related folders - things like "Children as Babies" subfolder or "Parents on Vacations" subfolder within the "Family" folder.  
    These folders and subfolders seem to have been carried through to this new Photos app as "iPhotos Events".
    But I dont seem to be able to continue sorting - like creating new subfolders within folders.   For example, in Photos I don't seem to be able to create an album within in an album.
    Am I missing a trick here?
    Is Photos unable to do this?
    Or, is the community please able to suggest another alternative solution - like, would using the Pictures folder in Finder be better, perhaps in conjunction with DropBox instead of iCloud?
    Or another photo organizing app that is able to sort folders and subfolders?
    Thank you for your help in advance!

    One way to create folders, subfolders, albums, is to make sure you have your Sidebar showing (menu - view > sidebar) and then use "Control + mouse click" on a folder you want to create a subfolder or album in to bring up the contextual menu.   You can also do these things in the upper right of the Photos window using the + icon but that always seemed to put those items in the top level of the sidebar so I would have to drag and drop them to the folder where I wanted them to go.
    Lori

  • Web ADI Run a database sequence per row

    Hi,
    I'm new to Web ADI and I'm trying to call a database sequence for column A to generate value per row for the upload in a custom web ADI, but every time the sequence runs once for the whole batch generating duplicate values.
    This is what I've tried so far:
    1. Called the sequence in the interface section as default SQL Query for a column A. Made the column to appear at Line in the layout.
    2. Added an import rule sequence
    3. Wrote a database trigger for the temp table and called the sequence before insert: in this case the sequence runs fine and generates values per row but $PARAM$.ColumnA is null.
    I need this for row identification, otherwise if there is duplicate rows the error message overlaps.
    Please help.
    Regards
    Arnab

    Hi,
    What was the workaround for this problem?
    Please share.
    Thanks

  • Limit number of chars per line

    Hi ,
    how to limit the number of chars per Line in a textArea or RTFEditableText?
    I have to do the following:
    Allow 25 Chars for first line,
    any other line should have max. 28 chars.
    First line should have a bold font.
    Not an easy thing..
    I tried to use a textarea fpr input and put the text into a datagrid in the textarea.change() event.
    This works, but I lose a lot of the standard features of the textarea (hyphenation etc.)
    The idea is to use only the textarea or a RTFEditor for applying the rules mentioned above.
    Thanks
    thorsten

    extend PlainDocument class to restrict the number of characters per line.
    Set this class as model to TextArea.
    Below is a class which does this. May be its useful
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    public class FixedNumericDocument extends PlainDocument {
    private int maxLength = 9999;
    private String max="";
    public FixedNumericDocument(int maxLength) {
    super();
    this.maxLength = maxLength;
    //this is where we'll control all input to our document.
    //If the text that is being entered passes our criteria, then we'll just call
    //super.insertString(...)
    public void insertString(int offset, String str, AttributeSet attr)
    throws BadLocationException {
    if (getLength() + str.length() > maxLength) {
    return;
    else {
    try {
    //check if str is numeric only
    int value = Integer.parseInt(str);
    //if we get here then str contains only numbers
    //chk if it is less than 65535 so that it can be inserted
    super.insertString(offset, str, attr);
    catch(NumberFormatException exp) {
    return;
    return;

  • Is there a recommended limit on the number of custom sections and the cells per table so that there are no performance issues with the UI?

    Is there a recommended limit on the number of custom sections and the cells per table so that there are no performance issues with the UI?

    Thanks Kelly,
    The answers would be the following:
    1200 cells per custom section (NEW COUNT), and up to 30 custom sections per spec.
    Assuming all will be populated, and this would apply to all final material specs in the system which could be ~25% of all material specs.
    The cells will be numeric, free text, drop downs, and some calculated numeric.
    Are we reaching the limits for UI performance?
    Thanks

  • Can't sort files and folders

    Two questions:
    1. In a folder I want to sort the items in order allways folders first and second files by namne but sometimes the folders last. Is it any way to solve this? The Mac mixed sorting makes me mad.
    2. When in Finder-menu View the choice Clean Up and Arrange by is grey and can't be used. How come? Is it possible to make these choices active?
    Svante

    It's always frustrating when the designers didn't think to do it 'your' way. But we all figured out how to drive cars that were built 'their' way and we can do this too. The fact that MicroSoft did it another way, just is not relevant to working with your Mac. We're still coping with sillyunderscoresover here, and now our apps quit on us when we close their windows.
    You like a hierarchy that puts folders before individual file items: Make a folder, call it "Directories" (or even better " Directories", or "•Folders"), put all your folders in that window into it, and if you want, make a companion "Documents" folder for everything else. Click the flippy triangles of both to reveal their contents. There, everything in list order, folders first. You will have to do a teensy bit of handfiling you're not used to, but as others mentioned a simple naming convention would have spared you that (and this suggestion). If you truly hate the look, you can make invisible custom icons for the two folders and use a style like:"••••••Folders•••••", "-----Files----" so they look like headers.
    People have complained about missing this Windows 'feature' before without ever convincing me of its virtue. I can see which items are folders and don't need them artificially at the top (Sort by kind does that if ever I do) and find the integrated alphanumeric list useful for grouping unfiled documents near their folders. When I want the first item(s) on the list to be a folder, I so name it. You can cope, just like you can learn to navigate a new subdivision with all the cul-de-sacs. Now if I could just get used to this silly idea North Americans have that we should drive on the right.
    Message was edited by: Ed Hanna
    Message was edited by: Ed Hanna

  • Can't sort files and folders. Sorry doubble mailed

    Two questions:
    1. In a folder I want to sort the items in order allways folders first and second files by namne but sometimes the folders last. Is it any way to solve this? The Mac mixed sorting makes me mad.
    2. When in Finder-menu View the choice Clean Up and Arrange by is grey and can't be used. How come? Is it possible to make these choices active?
    Svante
    Message was edited by: Svante

    It's always frustrating when the designers didn't think to do it 'your' way. But we all figured out how to drive cars that were built 'their' way and we can do this too. The fact that MicroSoft did it another way, just is not relevant to working with your Mac. We're still coping with sillyunderscoresover here, and now our apps quit on us when we close their windows.
    You like a hierarchy that puts folders before individual file items: Make a folder, call it "Directories" (or even better " Directories", or "•Folders"), put all your folders in that window into it, and if you want, make a companion "Documents" folder for everything else. Click the flippy triangles of both to reveal their contents. There, everything in list order, folders first. You will have to do a teensy bit of handfiling you're not used to, but as others mentioned a simple naming convention would have spared you that (and this suggestion). If you truly hate the look, you can make invisible custom icons for the two folders and use a style like:"••••••Folders•••••", "-----Files----" so they look like headers.
    People have complained about missing this Windows 'feature' before without ever convincing me of its virtue. I can see which items are folders and don't need them artificially at the top (Sort by kind does that if ever I do) and find the integrated alphanumeric list useful for grouping unfiled documents near their folders. When I want the first item(s) on the list to be a folder, I so name it. You can cope, just like you can learn to navigate a new subdivision with all the cul-de-sacs. Now if I could just get used to this silly idea North Americans have that we should drive on the right.
    Message was edited by: Ed Hanna
    Message was edited by: Ed Hanna

  • Is it possible to sort folders by date that is written in the folders name? eg. folders are named 26 May 2011 and so on

    Hi,
    Question as in the topic: Is it possible to sort folders by date that is written in the folders name? eg. folders are named 26 May 2011 and so on
    Thanks
    Karol

    I sort mine 5.1.11, 5.2.11, etc. - that works (adding letters to the numerals does not work as well). Starting with the month will also work better because there are only 12 of them (rather than a repetition of days).

  • Sorting Albums and Folders

    Is there a way to sort albums and/or folders (such as by alphabet) other than manually moving them into the order you want?
    Also, regarding difference between an album and a folder, am I correct that a folder may hold several albums but an album cannot hold another album or folder? Please distinguish the two and their differences for me.
    Thanks for your help.
    Vernon

    in the source pane on the left right click and choose "sort albums" to sort them Alpha - which is the only choice - and there is no undo so be sure you want that
    albums hold photos - folders hold either albums or other folders but not photos
    LN

  • I need to set up folders in I pad and I phone to sort received and sent email

    I need to learn how to create folders on I Phone and I pad to sort incoming and sent emails I need to save. Hope someone can help me?

    You create a save folders from your computer then sync your iphone with iTunes.
    When you create your email account, it should automatically have a incoming and sent folders.
    IOS setting up email account http://support.apple.com/kb/ht4810

  • Sorting columns and rows

    I am incredibly frustrated, more and more, but what I find to be non-intuitive functions of this app. I have a long column of row headings (and column headings to be frank) that are in text. I want to sort them, along with the associated row.
    This should not be difficult, but it is impossible. I've been using spreadsheet programs from the first day they were available for the Mac, a billion years ago (give or take a couple of years). I'm starting to think that Numbers is one of the worst.
    Annoyingly, the help function, gives me no help. Can someone point me to the location of how to learn how to do a sort? Because I guess just right clicking on the column to sort is way to easy, like it was in the previous version of Numbers.

    Click on the right edge of a column heading to get:
    Sort & Fiilter Options (also via Table > Sort & Filter Options):

  • Sort priority of merged folders and worksets

    Hi Forum!
    I have a challenge, which I hope some of you can contribute to solving:
    I'm trying to merge several roles, which have different structures, but I can't get the sorting to work. Here goes :
    Structure of my different roles:
    1 : Role -> Folder -> iView
    2 : Role -> Folder -> Workset -> ....
    I've setup merge ID's on the folders, so they merge fine into one top-level navigation item - no problem here.
    But my problem is to control 2nd. level navigation. I can't set any navigational priorities on the iView directly attached to the folder, which leaves me without any possibility to control the sort-sequence on 2nd level. I already tried to insert a folder or workset in between the folder and iView level, but this also results in an additional navigation layer, which I don't want.
    Any ideas, on how to solve this ?
    Rgds.
    Claus Gosmer

    Hi Claus,
    the property you are looking for is called "Sort Priority" (or Sortierpriorität in German).
    This property is available for iViews, pages, worksets and folders. SAP Help link
    If none of the objects has a sort priority or all objects have the same priority the content is displayed in the order of appearance in the role. If some have a sort priority and some not the ones with prio are displayed first in the order of ther prio and then the rest...
    Should work that way!
    Hth,
    Michael

  • Can a single char be used both in rows, filters and free chars

    Hi.,
      Can 0customer can be used in rows, filters and free chars at a time ?
    Or the chars which are used in either one of themrows or filters or free chars) cant beused in the other(rows or filters or free chars)?

    NOpe, it can only be used in one place.
    May be what you have seen is it could be a nav. attribute of master data and transactional data with the same name. Or the same object name could have been in two different underlying model of infoset and it would be dragged and dropped with the same name.
    thanks.
    Wond

Maybe you are looking for

  • Opening a PDF file in Admin mode from a windows forms application (C#)

    Hi, I need to open a pdf file using Windows Application. I have used the below code launch the pdf files. Process prc = new Process();             prc.StartInfo.FileName = "cmd.exe";             Environment.CurrentDirectory = @"C:\SamplePDF\";       

  • Error deploying the application with Crystal Report

    Hello, I'm using Visual Studio 2010 and I installed the required version of crystal report for it. I'm developing a windows Application with C# and Crystal Reports. The program runs correctly in the visual studio but when I tried to deploy it by addi

  • How come Power Nap doesn't work on late 2011 MacBook Pros?

    I have a late MacBook Pro, recently bought Mountian Lion hoping I would get Power Nap, but unfortunatly not, could someone be able to explain why Power Nap is only for MacBook Pro Retina and MacBook Air please? Much appreciated.

  • IOS 4.2.1 older app version

    I have an iphone 3g, and I restored it because I had a problem with it. before the restore, if i would download an app that wasn't compatible woth ios 4.2.1, it would ask me to download an older version. But after the restore it doesn't ask it anymor

  • Material component not deployed in ms04

    Hi, May I request your assistance on my issue? When I run the MS04 one of the component material is not displaying. I have change the planning period and run again the MS03 for a specific material which is the finished material. Can you help me under