New View / Sort Field, PLEASE!

I'll start off by saying that iTunes is not at all my favorite software for media organization; I use J. River Media Center. But I have to use it because I proudly own a new iPhone 3GS, and iPod Touch.
If someone could please make my life with iTunes easier by creating a "Filename" or "Folder Path" viewing/sorting field in the iTunes Library that would just be GREAT. I heavily rely on sorting my media by their locations in my directory, and I'm sure many would appreciate it. If you ask me, it's a far more valuable field for sorting than like Disc Number or Skip Count. Please, please, please get a "Filename" field in the iTunes Library asap.

J. River Media Center allows me to (extremely easily) rename, move, and copy files according to certain rules based off their tags. Therefore, all of my music is already in their correct folders etc. by the time iTunes gets to it.
In iTunes I don't need to know which folder a file is in or what the filename is. Frankly, I don't care.
I can find any song, movie, podcast, etc. directly in iTunes.
All I'm asking for is another way to sort my media.
In iTunes, you can sort on any of the columns available (soetihng like 27 different variable).
You can use smart playlists, as weel as selecting any genre, artist, album and sort those by any of the previous mentioned columns.
However, if none of this suits your needs, send suggestions here as Meg mentioned -> http://www.apple.com/feedback/itunesapp.html

Similar Messages

  • New View, any suggestions please

    Hi I'm trying to accomplish a view that looks something like this
    < A>-----------< B >--------< C >------< D >
    |
    |--------< B1 >------<C1>-----<D1>
    |
    |--------< B2 >------<C2>-----<D2>
    etc.
    I cant seem to find any layout that allows me to do this.
    I first started of trying to set the Layout as null and the doing direct Placement.
    But It doesnt work, nothing shows up on the panel.
    this is my code.
    JPanel panel = new JPanel();
    panel.setLayout (null);
    JLabel mainLabel = new JLabel("A ");
    panel.add(mainLabel);
    panel.setPreferredSize (new java.awt.Dimension (300,300));
    mainLabel.setLocation (10,10);
    mainLabel.setVisible (true);
    panel.setVisible(true);
    this.add(panel, BorderLayout.CENTER);
    But no label shows up, am I doing something wrong while adding the label, cos' when I remove the setLayout(null) it shows up.
    Also if anyone can give me some other idea how to implement this type of view I will greatly appreciate it.
    thanks in advance

    Adding the line mainLabel.setSize(20, 20); will make your label visible.
    (I chose 20 arbitararily - you can choose one appropriately)
    But I am curious about the arrangement (view) you are attempting to develop. I couldnt really understand the diagram or the significance of the code posted to bring about the arrangement in the diagram.
    Thanks,
    Binil

  • Problem in Spras field for join condition in creating new views

    Hi,
    I want to create a new view for three tables t1 t2 and t3 say.....i want to join this three tables like
    table    field         table   field
    t1      mandt     =   t2     mandt.
    t1      vkbur      =   t2      vkbur.
    And other condition is t2-spras = 'E' now.... how should i give this condition in the join condition as u have to give the other table name and the field name on the other side too..... table t1 has no filed in its table for the field spras.........so i just have to give t2-spras as 'E'. But this is throwing error...Please help

    Hi,
    1.u can specify the first thing i.e. t1 mandt = t2 mandt and t1 vkbur = t2 vkbur in the <b>join conditions</b> even if there is no relation ship b/w t1 and t2 on vkbur.simply u specify the join condition manually.
    2.for the second thing....wat u did is rite.......
    I think it will work.
    Thanks ,
    Jyothi.D
    want to create a new view for three tables t1 t2 and t3 say.....i want to join this three tables like
    table field table field
    t1 mandt = t2 mandt.
    t1 vkbur = t2 vkbur.
    And other condition is t2-spras = 'E' now.... how should i give this condition in the join condition as u have to give the other table name and the field name on the other side too..... table t1 has no filed in its table for the field spras.........so i just have to give t2-spras as 'E'. But this is throwing error...Please help

  • Sorting field  in View

    How do I sort field in View? thanks!

    Hi,
    Actually I do not understand your question: what do you want  to sort? If you are referring to a SELECT from a view please refer to the documentation of SELECT.
    Regards, Gerd Rother

  • I am new in indesign scripting, please tell me how to write a script to get  content of a element in xml and then sort all the content

    I am new in indesign scripting, please tell me how to write a script to get  content of a element in xml and then sort all the content

    Hi,
    May the below code is useful for you, but I dont know how to sort.
    Edit the tag as per your job request.
    alert(app.activeDocument.xmlElements[0].contents)
    //Second alert
    var xe = app.activeDocument.xmlElements[0].evaluateXPathExpression("//marginalnote");
    alert(xe.length)
    for(i=0; i<xe.length; i++)
        alert(xe[i].texts[0].contents)
    Regards
    Siraj

  • Table View : Sort='server' : Error=Invalid sort field type in "SORT ... AS

    Hi ,
    The Sort button does not work for GUID and it shows the error,
    <b>Invalid sort field type in "SORT ... AS TEXT"</b>
    How do I solve this problem?
    Thanks and Best Regards,
    Bindiya

    Hi ,
    Below is the code :
    IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS
    ==================================================
            ls_coldef-columnname              = 'PBI_C_VALUE_ID1'.
            ls_coldef-width                         = '150'.
            ls_coldef-title                           = 'Category I '.
            ls_coldef-tooltipheader              = 'Category I '.
            ls_coldef-wrapping                   = zcl_zsc_co=>sc_true.
            ls_coldef-edit                          = zcl_zsc_co=>sc_true.
            ls_coldef-sort                          = zcl_zsc_co=>sc_true.
            APPEND ls_coldef TO p_column_definitions.
            CLEAR ls_coldef.
    ==================================================
    IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START
    ==================================================
        WHEN 'PBI_C_VALUE_ID1'.
          CREATE OBJECT lr_dropdown.
          lr_dropdown->id                 =  p_cell_id.
          lr_dropdown->nameofkeycolumn    = 'PBI_C_VALUE_ID'.
          lr_dropdown->nameofvaluecolumn  = 'SHORT_NAME'.
          lr_dropdown->selection          = <fs_row>-pbi_c_value_id1.
          lr_dropdown->disabled           = lv_disable.
          lr_dropdown->width              = '170'.
          GET REFERENCE OF mr_model_assign_sb_list->mr_model_pb_item_list->mr_model_def_category->mt_dropdown_cat_1_val INTO lr_dropdown->table.
          p_replacement_bee = lr_dropdown.
    ==================================================
    NOTE: the data element of 'PBI_C_VALUE_ID' is RAW 16.
    Thanks and Best Regards,
    Bindiya

  • After idoc regenration unable to view the field in IDOC

    Hi,
    I have enhanced the business partner by EEWB.
    After tha i have regenarted the message type CRMXIF_PARTNER_SAVE and bo type BUS1006 by Tcode BDFG.
    After that also i am unable to view the field in Basin type  CRMXIF_PARTNER_SAVE01 [message type CRMXIF_PARTNER_SAVE ].
    New Zfield added through EEWB is available in CRMXIF_PARTNER_COMPLEX structre.But not coming in IDOC.
    Please advice.
    Regards
    Malay

    Hi,
    From your thread i have understood that the EEWB extended fields have not appeared in the IDoc after regeneration.
    For the customer enhancements there are some of the XIF segments provided by SAP to transport them to IDoc structure.
    Now that you have added the customer fields using EEWB. Please add the fields
    to CRMXIF_CUSTOMER_H and then regenerate the IDOC using BDFG.
    After extending these above mentioned structure kindly regenerate the Idoc Structures. I recommend
    not to add the enhancement fields to the CRMXIF_PARTNER_COMPLEX structure which might lead
    to inconsistency.
    You can make use of CRMXIF_CUSTOMER_H for customer enhancements.
    Regards,
    Venkat

  • CRM_IC new view

    Hi experts,
    I need your help to resolve a problem.
    I have to create a new view in transaction BSP_WD_WORKBENCH.
    I have tried to create view putting in Model Notes Fields this datas:
    Model Notes -   BOL Entity -  Higher-Level   -     BOL Realtion
    BTORDER   -    BtOrder -  -     
    BTADMINH   -   BTAdminH  -  BTORDER   -     BTOrderHeader
    BTDATESSET - BTDatesSet - BTADMINH   -    BTHeaderDatesSet
    BTDATE         -  BTDate  -      BTDATESSET -  BTDatesAll 
    in model Attributes:
    Model Attribute    -     Model Nodes      -    BOL Attribute
    DispatchDate       -    BTDATE            -     TIMESTAMP_FROM
    CustBlockTime    -    BTDATE           -       TIMESTAMP_FROM
    ResponseTime   -      BTDATE        -         TIMESTAMP_FROM
    DueDate               -   BTDATE            -     TIMESTAMP_FROM
    and in link context node
    Context Node       -      BSP Application   -  Custom Controller  - Context Node
    BTORDER        -         Z_CRM_IC      -       CuCoBDC.do      -     CurrentServiceObject
    now reading the instraction I have, I must define in Inbound Plug but if I go in Inbound Plug node IP_INBOUNDPLUG was not generated.
    Can you help me?
    Thanks

    Hi Alessandro,
       I am not able to understand what exactly is your problem.
    It looks like you have already created the model context nodes(with attributes) for your view and have also bound the context node BTORDER to node <i>CurrentServiceObject</i> of the custom controller. After that you are trying to define an inbound plug for your view.
    Please note that NO inbound plug by the name IP_INBOUNDPLUG will be generated automatically. You have to explicitly create an inbound plug from the context menu(right mouse click) of the inbound plug node.
    You can also create the inbound plug manually in the view controller class clIMPL of your view with the method name starting with IP
    I hope this was what you are looking for.
    Regards,
    Sudipta Sarma

  • How is "most helpful" determined in App Store Reviews sort field?

    How is "most helpful" determined in each apps Reviews sort field In the App store?  I use this field to help make decisions. I like to see how buyers feel about their purchases. But, as a buyer, I've never been asked which review I consider most helpful.
    I'm finding some really poor apps with high ratings. Help, please!  If this has already been answered, I was directed to begin a new discussion. Thanks!

    Yes, most people download from there iOS device. But there are over 1,000,000 who Do it from there computer.
    In the itunes store.

  • Crystal Report. How to create sort field programmatically?

    After updating CrystalReports to version 13.0.10 I noticed a strange feature in Details section. I'm filling in the Subreport Details section from the User Table. Previously the data was displayed in the order it was in the database. Every time I open the report data now it is displayed in a different order. There is a huge amount of crystal report documents and I am not able to change each document. Is it possible to add a new sorting field programmatically? (I found only how to change existing sort fields)

    Hi Aliaksandr,
    I used the top right corner search box on this page and enterred "sort, field, runtime, crystal, sdk, .net" keywords.
    Here are the first three results.
    http://search.sap.com/notes?id=0001201611&boj=/sap/bc/bsp/spn/scn_bosap/notes.do?access=69765F6D6F64653D3939382669765F7361706E6F7465735F6E756D6265723D30303031323031363131
    http://search.sap.com/notes?id=0001638023&boj=/sap/bc/bsp/spn/scn_bosap/notes.do?access=69765F6D6F64653D3939382669765F7361706E6F7465735F6E756D6265723D30303031363338303233
    http://search.sap.com/notes?id=0001613588&boj=/sap/bc/bsp/spn/scn_bosap/notes.do?access=69765F6D6F64653D3939382669765F7361706E6F7465735F6E756D6265723D30303031363133353838
    Complete search is here.
    http://search.sap.com/ui/scn#query=sort%2C+field%2C+runtime%2C+crystal%2C+sdk%2C+.net&startindex=1&filter=scm_a_site%28scm_v_Site11%29&filter=scm_a_modDate%28*%29&timeScope=all
    Please search before posting.
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

  • Not able to view the fields ....made through enhancement 0002--

    Dear Freinds,
                I have made enhancment for infotype's 0002 and  0023 . However when i am looking through PA30 for a personnel number iam not able to view the fields created in 0002 infotype , however iam able to view the fields created in infotype 0023 . Is there is a any setting's i have to make so that i can view these fields created in infotype 0002 also ??
    please let me know .
    regards
    vamsi.

    Dear Deepak
                yes this is enhancement to 0002 and 0023 ... i have to add one field for the
    0002 ..........as ihave to add chinese name for my requirement ..................
    and i have done some new fields for 0023. if can give me your personnel id i can
    send the screen shots ........
    i want to tell one thing.........   i have created for 0002 by adding new  the new field (chinese name) .. it created a z program.ZP000200(Module pool)  with the below
    includes
    INCLUDE ZP000210.
    INCLUDE MPPDAT00.
    INCLUDE FP50PPSB.
    INCLUDE MPPERS00.
    INCLUDE ZP000220.
    INCLUDE ZP000230.
    INCLUDE ZP000240.
    and when i went to the screen  0200 i have found the field which i have added
    P0002-ZZCHNAM  type char 20 . and i executed from here itself (by clicking F8).
    and iam able to see the field which i have added
    under additional fields...........but the same if i go in PA30 and create .........for an employee (molga = 27)... i dont find the field which i created...... i have done this
    change for the country 27 only.
    regards
    vamsi
    regards

  • Create a new view in a enhance component

    Hi All,
              I want to create a new view for sales order and quatation in a component BP_factsheet.When i craete new view ,it is asking about some value like model node, bol entity, higher level, bol realtion.after that is is asking context node ,bsp application ,custome controller and view type.How can i get these value .when i create a new view then have to add these view in run time repositry under a window or not?
    Thanks in advance....
    Vishwas

    Hello Vishwas,
    You might be interested in knowing how to customise the new UI to add a new view using the enhancement concept.
    Please refer to the published document on the service marketplace:
    http://help.sap.com/saphelp_crm60/helpdata/en/1a/023d63b8387c4a8dfea6592f3a23a7/frameset.htm
    refers to the link at
    service.sap.com/okp
    Inside this go to:
    SAP CRM 2006s: Learning Map for Technology Consultants
    wherein you can find the cookbook to perform similar operation in detail.
    SAP CRM UI Cookbook
    I hope this helps.

  • Opening a new view in a new window on click of a table row entry.

    Hi Guys,
    How to open a new View of a same application in a new window (just like a pop up) on a click of a Table Row entry?
    I am using NWDS 7.0 version. So please suggest acccorrdingly.

    Hi Nikesh,
    first of all you will have to declare use of onLeadSelect event handler for your table (note that it will only be triggered when a lead selection occurs not a multiselection).
    Also, you can build at design time a View and a Window (for example, PopupWin) in your WebDynpro Component, and embed the view into the window.
    In your code for onLeadSelect function, you can use something like this to pop up the window.
    public void onActionRowSelection(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent )
        //@@begin onActionSeleccionTabla(ServerEvent)
        IWDWindowManager windowManager = wdComponentAPI.getWindowManager();
        IWDWindowInfo windowInfo = wdComponentAPI.getComponentInfo().findInWindows("PopupWin");
        IWDWindow window = windowManager.createModalWindow(windowInfo);
        window.setWindowPosition(WDWindowPos.CENTER);
        window.setWindowSize(new WDCssSize(450, WDWindowUnitOfLength.PX) , WDCssSize.UNDEFINED);
        // Store handle ti window in context attribute to able to close it later
        wdContext.currentContextElement().setPopup(window);
        window.show();
        //@@end
    Hope it helps,
    David

  • Creating a new view in a component

    HI,
    I am trying to create a new view in a BSP component using the wizard. But the context nodes are not getting created. Its throwing up an error - "View not copied with wizard; processing not possible".
    What could be the problem ? Pls help.
    Regards,
    Aravind.

    Hi Arvind,
    Before posting error, please search for it.
    Here is what i found here in 2007 forum itself.
    I guess you have not enhanced your component and your view.
    Without enhancing the component it is not possible to add a new context node.
    Here is a very helpful, follow it and the the other link within this thread,
    both are very useful in this regard.
    Web Client Context Node Enhancement
    Thanks & Regards
    Shiven

  • Sort field in action monitor

    Dear Experts,
    I'm trying to take bulk/mass printouts for CRM transactions, using t.code- CRMC_ACTION_JOB.here we have a field called SORT FIELD1.please tell me the significance of this.actually there is no furthur filteration criteria for this.like-user id,service organisation etc.
    My requirement is to print the service order as per the service organisations,which is not possible in t.code-CRMC_ACTION_JOB.
    please provide some input for this issue.

    Hi,
    You can use the sort fields to process a series of actions in a defined order during batch processing. For this, you have to assign an attribute of the application object to the sort field in the action Customizing. When the action is generated, the value of this attribute is then entered into the corresponding sort field. First, the sorting defines how the selected actions are displayed in the list. During the batch run, the actions are then also processed in this order.
    For the sorting, you must create and specify a variant that orders the ALV according to the entries in the sort fields. The dialog allows you to check the correct sort sequence in the ALV.
    For example, if the postal code of the document recipient is entered into one of the sort fields, documents can be printed sorted by their postal code.
    Regards,
    Madhu

Maybe you are looking for