Selecting tunes from initial to end of list...how

How do you select from a certain tune in the list of music to the end of the list? I am currently clicking on the initial tune, holding down shift and using the down arrow key. I don't see how to click on initial and 'jump' to end selecting them from initial to end.
thanks
bob

Yes, I understand that.
In windows, you can click on a row, then shift end (I think from memory) and it selects everything to the last row (no manual scrolling needed)
Is that possible in mac?
thanks
bob

Similar Messages

  • Transferring selected tunes from ipod to nano

    My partner has ipod with several hundred tunes. I wish to select and transfer certain tunes from his itunes to mine. Any suggestions

    Have a read
    http://discussions.apple.com/thread.jspa?threadID=434429&tstart=75

  • Insert into oracle_table (column1) select column1 from ms_sql_table

    Hi all,
    how do I export data from ms sql table into oracle table ?
    begin
    insert into oracle_table (column1)
    select column1 from ms_sql_table;
    commit;
    end;

    Hi ymarkiv,
    In addition to Prashanth’s suggestion, you can also use Import and Export Data Wizard to export SQL Server data to Oracle. When using the Wizard, you can edit transformation parameters using the Column
    Mapping dialog box, or write your own query to specify the data to transfer.
    For more details about export data from SQL Server to Oracle , please review this similar blog:
    Export SQL Server Data to Oracle using SSIS.
    Thanks,
    Lydia Zhang

  • How to select data from cluster table

    hi experts,
                   I have a report which picks data from bseg (cluster table ) for a month report it is taking around 4 minutes to process.I feel it is not good when take the report after some months.
    how to select data from these table???how to declare itab for these cluster tables????can we include any search condition or any other kind of internal table???
    please advice.
    mani

    Hi Manikandan,
    The following code may be helpful to understand how to select the data from cluster table.
    Types: Begin of ty_kna1,
    Kunnr type kna1-kunnr,
    adrnr type kna1-adrnr,
    end of ty_kna1,
    begin of ty_bseg,
    belnr type bseg-belnr,
    kunnr type bseg-kunnr,
    end of ty_bseg,
    begin of ty_final,
    belnr type bseg-belnr,
    kunnr type kna1-kunnr,
    adrnr type kna1-adrnr,
    end of ty_final.
    Data: it_kna1 type table of ty_kna1,
    wa_kna1 type ty_kna1,
    it_bseg type table of ty_bseg,
    wa_bseg type ty_bseg,
    it_final type table of ty_final,
    wa_final type ty_final.
    Select kunnr adrnr from kna1 into table it_kna1 where....
    if sy-subrc = 0.
    select belnr kunnr into table it_bseg for all entries in it_kna1 where kunnr = it_kna1-kunnr.
    endif.
    sort it_kna1 by kunnr.
    Loop at it_bseg into wa_bseg.
    move wa_bseg-belnr to wa_final-belnr.
    read table it_kna1 into wa_kna1 with kunnr = wa_bseg-kunnr binary search.
    if sy-subrc = 0.
    move: wa_kna1-kunnr to wa_final-kunnr,
    wa_kna1-belnr to wa_final-belnr.
    endif.
    append wa_final to it_final.
    clear wa_final.
    endloop.
    Loop at it_final into wa_final.
    write: / wa_final-belnr, wa_final-kunnr, wa_final-adrnr.
    endloop.
    Reward if useful.
    Thankyou,
    Regards.

  • Select statement from "v_filename_txt" inside cursor

    Hi,
    I've got a store procedure procedure that create parametric tables to upload from csv files. I have collect into v_filename_txt variable the parametric table name where I would like to make some select.
    I have write the following code but I can't use a variable into a select statement :
    select field
    FROM TABLE '''||v_filename_txt||''' ;
    Does anybody know how to include the precedent statement into a cursor to retrive recods ?
    Paolo.

    You could rcreate an external table. Then select the values from this external table.
    You can switch the source of the external table to a new file with the
    alter table myExtTable location ('mySecondCsvFIle.csv');
    command.
    Of cause this works only when all the files have the same structure. But the Idea is: mimic the structure of the csv file sin the database with a external table command. Then you can read the values and move them to some other table.
    Insert into myParameterTable select * from myExtTable;

  • Thread : select switchover_status from v$database

    hi there,
    I am not able to change my primary database switchover to standby. As before i did some r.n.d while running below command on primary db: "alter database commit to switchover to physical with session shutdown" then i checked status
    "select switchover_status from v$database";
    sql>SWITCHOVER_STATUS
    TO PRIMARY
    after that i run this command to switch again to standby db:
    sql> alter database commit to switchover to standby with session shutdown;
    Database altered.
    but still showing same status:
    SQL> select switchover_status from v$database;
    SWITCHOVER_STATUS
    TO PRIMARY
    how do i make my primary db on switchover_status to standby .any solution would be graceful.
    thanks

    bingo!!
    i create backup of controlfile:
    sql>alter database backup controlfile to trace as '/Pgh/controlfile.sql';
    and take my primary db to nomount stage run the script:
    startup nomount;
    sql@Pgh/controlfile.sql';
    database mount;
    alter database open resetlogs;
    then i checked switchover_status
    select switchover_status from v$database;
    SWITCHOVER_STATUS
    to standby

  • Is it possible to transfer tunes from my iPod to my ipad?

    I am attempting to transfer tunes from my iPod to my iPad how can I accomplish this task?

    CindiS wrote:
    I was told by someone at AppleCare that my saved Outlook 2007 Calendars would open on the Mac in iCal and that my Word 2007 Documents would open on the Mac using pages in iWork.
    This information is correct for Word, Excel and PowerPoint documents.
    It's also correct for Outlook if the Outlook Calendars where exported in the ics format.
    http://www.techhit.com/outlook/export_calendar_icalendar_ics.html
    Lupunus

  • Fill in page items after a selection made from a pop up list

    Hi,
    I am using apex 3.1 with Oracle 10g database. I have an application where I need to fill in page items on a form after a user select something from a popup list. I have an email field which is a popup list on a foem page after a user select an email address I need to fill items on the same page like name, address.
    I foud this example on the web but it's not working for me. Any help would be appreciated.
    Thank you,
    sofia.
    *1. Create an Application Process On Demand - Set_Multi_Items:*
    DECLARE
    v_mgr    VARCHAR2 (200);
    v_job    VARCHAR2 (200);
    v_sal    VARCHAR2 (20);
    v_comm   VARCHAR2 (20);
    CURSOR cur_c
    IS
    SELECT mgr, job, sal, comm
    FROM emp
    WHERE empno = TO_NUMBER (v ('TEMPORARY_APPLICATION_ITEM'));
    BEGIN
    FOR c IN cur_c
    LOOP
    v_mgr := c.mgr;
    v_job := c.job;
    v_sal := c.sal;
    v_comm := c.comm;
    END LOOP;
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<body>');
    HTP.prn ('<desc>this xml genericly sets multiple items</desc>');
    HTP.prn ('<item id="P106_MGR">'  || v_mgr  || '</item>');
    HTP.prn ('<item id="P106_JOB">'  || v_job  || '</item>');
    HTP.prn ('<item id="P106_SAL">'  || v_sal  || '</item>');
    HTP.prn ('<item id="P106_COMM">' || v_comm || '</item>');
    HTP.prn ('</body>');
    EXCEPTION
    WHEN OTHERS
    THEN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    HTP.p ('Cache-Control: no-cache');
    HTP.p ('Pragma: no-cache');
    OWA_UTIL.http_header_close;
    HTP.prn ('<body>');
    HTP.prn ('<desc>this xml genericly sets multiple items</desc>');
    HTP.prn ('<item id="P106_MGR">' || SQLERRM || '</item>');
    HTP.prn ('</body>');
    END;
    *2. Create an application item - TEMPORARY_APPLICATION_ITEM*
    *3. Put the following in the Region Header of your items:*
    *<script language="JavaScript" type="text/javascript">*
    *<!--*
    *function pull_multi_value(pValue){*
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
    *'APPLICATION_PROCESS=Set_Multi_Items',0);*
    *if(pValue){*
    get.add('TEMPORARY_APPLICATION_ITEM',pValue)
    *}else{*
    get.add('TEMPORARY_APPLICATION_ITEM','null')
    gReturn = get.get('XML');
    *if(gReturn){*
    var l_Count = gReturn.getElementsByTagName("item").length;
    *for(var i = 0;i<l_Count;i++){*
    *var l_Opt_Xml = gReturn.getElementsByTagName("item");*
    var l_ID = l_Opt_Xml.getAttribute('id');
    var l_El = html_GetElement(l_ID);
    *if(l_Opt_Xml.firstChild){*
    var l_Value = l_Opt_Xml.firstChild.nodeValue;
    *}else{*
    var l_Value = '';
    *if(l_El){*
    *if(l_El.tagName == 'INPUT'){*
    l_El.value = l_Value;
    *}else if(l_El.tagName == 'SPAN' &&*
    *l_El.className == 'grabber'){*
    l_El.parentNode.innerHTML = l_Value;
    l_El.parentNode.id = l_ID;
    *}else{*
    l_El.innerHTML = l_Value;
    get = null;
    *//-->*
    *</script>*
    *4. Put the following in the HTML Form Element Attributes of :P106_EMPLOYEES:*
    onchange="pull_multi_value(this.value)";

    Hi K,
    One way to achieve a result similar to what you are looking for is to use a combination of pop-up menu for the initial choice and a slider or stepper to make the second choice. The example below uses a slider. The formula would be the same for a stepper cell in column B of Main.
    Column A contains a series of pop-up menu cells with for choices: -- (no choice yet made), Red, Blue and Green.
    Column B contains a series of slider cells, each with the same values: Minimum: 0, Maximum: 3, Interval: 1.
    Each cell in Column C contains the formula below, which uses OFFSET, MATCH and the value set by the slider to retrieve the correct value from the Lookup table.
    Main::C2, and filled down: =IF(A="--","--",OFFSET(Lookup :: $A$1,B,MATCH(A,Lookup :: $1:$1,0)-1,1))
    Results for various combinations of the pop-up and slider cells are shown.
    Regards,
    Barry
    PS: Constructed in Numbers 2.3 (Numbers '09)

  • How to select value from list with multiple selections ?

    HI,
    i have a list with multiple selections where i show email address retrieved from database.
    what i want to do is to send the selected email address to the invoiceedit.jsp.
    please look at the following code which gives you the better idea.
    <td class='smalltext'><select name="email" size="3" multiple="multiple">
       <% 
       Connection conn = null;
       Statement stmt = null;
       Statement stmt_contactperson = null;
       Statement stmt_address = null;
       try{
          conn = getREConnection();
           stmt = conn.createStatement();
       ResultSet rs = null;
       rs = stmt.executeQuery("SELECT PROPERTYID, VALUE FROM PROPERTIES WHERE ENTITYID="+ g_strGroupID+" AND NAME = 'invoice_default_email'");
       int numofrows = 0;
       while(rs.next())
               %>
       <option value="<%= rs.getString("VALUE") %>" selected="selected"> <%= rs.getString("VALUE")  %> </option>
        <%
           }//end of while
          %>
         </select>
        <a href="invoiceedit.jsp?entityid=<%=g_strGroupID%>&add=1"><font color="#000000">Add</font></a>
         <a href="invoiceedit.jsp?entityid=<%=g_strGroupID%>&email_to="><font color="#000000"> Edit</font></a> </td>thanks

    Use a form button instead of a link so that you can send it as a request parameter to the server. In the server side just use HttpServletRequest#getParameterValues() to obtain all values for the given parameter name. If you really need a link rather than a button, then use Javascript to submit the form on click of the link.
    That said, your design is bad. Java code belongs in Java classes, not in JSP files. Database access logic belongs in a DAO class. Business and controlling logic belongs in a Servlet class. Only presentation logic belongs in the JSP file. Avoid scriptlets as much as possible and use JSP EL and/or JSTL instead.

  • F4 for selecting folder from front end

    Hi,
    The function module KD_GET_FILENAME_ON_F4 can be used for selecting a file from the front end.
    Similar way, I need to select a folder name (not specific file in it) through F4 help on to a parameter entry on the selection screen.
    Anyone can help me with the relevant fn module or method.
    Advance Thanks
    Aadarsh

    HI.
    Using ABAP Objects suits better to ur requirement.
    The class CL_GUI_FRONTEND_SERVICES should be used. In that a default method is there which shall give u list of directories.
    Thanks and regards,
    Maheshwari.V

  • Why can't I select just one album under artist view and listen to it from beginning to end anymore? Why would you change that?

    Why can't I go under artist view in music app, select 1 of multiple albums by a specific artist and play the whole album from beginning to end? Why would you have it automatically shuffle between songs from several albums by the same artist automatically? How do we change this back to previous function because this is sucking big time for a music lover.

    I agree this is a really dumb change and I really hope Apple changes it back to the way it was.
    In iOS 6 and earlier when you were in the Music player and selected ARTIST it would show a list sorted by artist. When you selected the artist you wanted, it would show a list of their albums.  Then you could select the album and see the list of songs.  In iOS 7 after you select Artist, it displays the album and every track, so you have to scroll down through not only the album but every track on that album.   That was a really stupid change on Apple's part.  Makes no sense.
    Here is the list of albums under iOS 6.x...
    and here is what is looks like under iOS 7.0
    In iOS 7.0 you have to scroll down through all the songs to see the other albums.  That can be a really pain if you have a large music collection.
    Please Apple change it back to the way it was!!  This didn't need to change!

  • Can we call a selection screen from List output

    Hi Folks,
    Can we call a selection screen from the list output?
    I mean for ex:-
    i am getting the data from MAKT and displaying it in the list output having a button EMAIL.
    When I press that button it should call a selection screen asking the user to enter EMAIL id .
    Thanks,
    K.Kiran.

    Hi
    U can create a dynpro as SELECTION SCREEN and call it using CALL SELECTION-SCREEN statament:
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    PARAMETERS: P_MAIL(80) TYPE C.
    SELECTION-SCREEN END    OF SCREEN  100.
    AT USER-COMMAND.
       CASE SY-UCOMM.
          WHEN 'MAIL'.
              CALL SELECTION-SCREEN 100.
              IF SY-SUBRC = 0. "User press F8
              ELSE.
                " User press exit or back
              ENDIF.
    U can use the addition STARTING AT ..... ENDING AT ..... if you need to show the selection-screen as popup
    Max

  • How to capture the selected values from module pool dialog list box !

    Hi experts,
    Can anyone help me out in capturing the values from the list box.
    i am able to set the values in the list box.But i am not able to capture the selected value from the list box. Always the list box name is getting as "space"
    I also tried in using the FM "VRM_GET_VALUES" but it is retireving all the values. Is there is any flag for filttering out the selected value.
    Your inputs are appreciated.
    Thanks,
    Vijay.

    Along with the PBO and PAI event, add a POV event in the flow logic of the screen
    DEMO_DROPDOWN_LIST_BOX -is a good demo example.
    PROCESS ON VALUE-REQUEST.
    FIELD structure_name-field_name MODULE create_dropdown_box.
    In the report :
    MODULE create_dropdown_box INPUT.
      SELECT carrid carrname
                    FROM scarr
                    INTO CORRESPONDING FIELDS OF TABLE itab_carrid.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
                retfield        = 'CARRID'
                value_org       = 'S'
           TABLES
                value_tab       = itab_carrid
           EXCEPTIONS
                parameter_error = 1
                no_values_found = 2
                OTHERS          = 3.
      IF sy-subrc <> 0.
      ENDIF.
    ENDMODULE.
    In the layout, assign a Function Code , for eg : 'SELECTED' to the listbox and lets say name of the field is SDYN_CONN-CARRID. So in the PAI module,
    MODULE user_command_0100 INPUT.
      CASE ok_code.
        WHEN 'SELECTED'.
          MESSAGE i888(sabapdocu) WITH sdyn_conn-carrid.
      ENDCASE.
    ENDMODULE.
    sdyb_conn-carrid will contain your selected field

  • How do I do SELECT * FROM TABLE WHERE KEY IN ({list})?

    The title says it all really.
    Is there a reasonable performant way to perform the query
    SELECT * FROM TABLE WHERE KEY IN ({list})where {list} is String []?
    I am currently creating a PreparedStatement with a for loop like this   StringBuffer sb = new StringBuffer ("SELECT * FROM TABLE WHERE ID IN (");
      for (int ii=0;ii<keys.length;ii++) {
        sb.append (keys [ii]);
        if (ii != keys.length-1) sb.append (",");
      sb.append (")");but this means that the prepared statement is created each time I call my method and so I'm not sure that the optimizer will find it easy to cope with. Is there a construction that I'm missing along the lines of SELECT * FROM TABLE WHERE KEY = ? where I can create the PreparedStatement once and just call setObject or something on it when the values in {list} change?

    but this means that the prepared statement is created
    each time I call my method and so I'm not sure that
    the optimizer will find it easy to cope with.You are right, the optimizer won't find that easy to deal with (presuming that is even relevant for your driver/database.) But most optimizers won't do anything with statements that change and that is what you are doing.
    You could create several prepared statements which have a common number of bind variables. For example 10 statements with from 1 to 10 bind values. This will work if most of the queries use those.

  • How do you select data from tables not in the Properties table list?

    Hi I am new to SAP B1.
    I am amending the production order and wish to add fields from the Bill of Materials table Itt1.  However this table is not in the list of tables for this report.
    1. Do I have to redo the whole report in Crystal or is there a way of using the PLD report?
    2. This table join needs to have 2 fields in the join the father and the child item codes.  How many joins can the PLD report look after?  I assume that Relate to is the first join and next segment is a second join.  Am I right or not as I have been unable to find any reasonable documentation on creating and maintaining PLD reports.
    3. Where can I find information if any on System Variables and what data they represent?
    Thanks
    Chris

    Hi Cris,
    welcome to Sdn forum!
    For question 1, i think you can do this using pld.
    For question 2, to be able to view other tables, you will need to hold the ALT button and press the database table(Properties section on the lower right portion of the PLD screen), you can now view other tables. then to join other tables you will need to RELATE to and Next Segment, you can also find this under Properties and go to Content Tab.
    for question 3, you will need to create a query that will lead you to the exact field name, say for example SELECT Price from POR1, this price is actually variable 81 from purchase order line and the equivalent value is the por1.price..
    Regards,
    Darius Gragasin

Maybe you are looking for

  • ITunes Library on an Airport Disk?  Read and write from multiple Macs?

    OK, I've scoured the forums for an answer to this, but haven't found anything definitive. Apologies if I've missed the answer, but here's what I want to know: I have an iMac as a primary computer, plus a Mac Mini hooked up to my entertainment system,

  • How to create Links in a cell  to other Excel docs Cell  in Planning layout

    Hi All, I have a requirement to replace an existing forecasting process using normal Excel with BPS with Excel in place. One difficulty I came across is that the existing Excel input template has cells with links to many other excel files so users do

  • Passing Value to Java Script Code in a BSP

    Hi Guys, In order to use BSP Extension in my BS i need to specify the "ID" for the field / Text area / Table i want to work with. Now these elements (Field / Text Area / Table) are created by SAP CRM automatically and i am not sure how i can get the

  • XServe 2006 RAID Card Issues

    Basically, I was gifted (some gift!) a Late 2006 XServe 2.0GHz Dual QX, with 4 GB RAM, and basically was told 'It does not boot. We give up.' So heres what I have found so far.. It has an Apple Raid Card (don't ask me much more than that, or ill have

  • Timeline like navigation  using tween class

    I am a beginner, please help! So I want to create a timeline nav like this site: http://us.leica-camera.com/photography/m_system/m9/ timeline is a 40 x 40px color filled movie clip that use as the playhead.  featContent is the movie clip that contain