Ultrabeat + Multiple Outs - Sorted!!

Hello Peeps, just a note to say that I've cracked the problem with Multiple Outputs and Ultrabeat (Logic Pro) - set up as normal and then trigger notes from the MIDI keyboard, from there on it's fine. Thanx for all the help, cheers, Rich C.

Hi,
1. Instantiate a multi-ouput EXS24 instance. NOT a Stereo version.
2. Create new auxes according to how many outputs you will need.
3. In each Aux, select the exs output you want to feed to that Aux track.
4. In the EXS, for each track, change the output that you want to route the track to.
Voila.
Cheers.

Similar Messages

  • Ultrabeat multiple out put problem

    when i change the output of a voice in ultrabeat it plays out of sync and sounds like a different pattern.When i change it back to "main" its plays back ok.Is it a bug or something?or is something wrong with my system?
    Message was edited by: top2004

    Hi Vishi
    Please check you routine associated with your output type, suppose you have a requiremnt that is qty=5 then trigger DLO1, in such cases every time you save sales order with qty =5 output will trigger automatically.
    To avoid such cases add some code in routine that is output has already triggered then don't trigger.
    Take help of ABAPer.
    try and revert

  • Multiple column  sorting on JTable data

    if any body can please send an example code how multiple column sorting can be done on table data.
    condition:- one column should sort in ascending order another column in descending order.
    am completly out of ideas it's urgent any help is greatly appritiated
    Thank's in advance
    sri

    I think the crosspost is because the OP was advised to post it in the Swing forum instead (it would've been nice to see the original post closed as well, though). Anyway...
    Have you got your table sorting using one column? If so, how have you achieved that (eg, are you using Java 6)?
    All you're after is a stable sorting algorithm so that any elements that are the same in the new sorting scheme stay in the same position relative to each other. Then you can just sort by "Column B" then "Column A" to achieve multiple column sorting. I believe that Collections.sort is stable and therefore any sorting approach based on that should be easily modifiable to do what you want.
    Hope this helps.

  • Multiple order sort in xsl

    Hi all,
    Does anyone know how I would go about doing a multiple order sort through my xsl? For example, sort by name first, then sort those results by date, thanks in advance.

    okay, that would work, but i think i have a problem, i have an xml that looks like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    <report>
    - <column_headers>
    <heading>Heading1</heading>
    <heading >Heading2</heading>
    </column_headers>
    - <results>
    - <row>
    <attr1>value1</attr1>
    <attr2>value2</attr2>
    </row>
    - <row>
    <attr1>value3</attr1>
    <attr2>value4</attr2>
    </row>
    - <row>
    <attr1>consulting agreement</attr1>
    <attr2>yesterday</attr2>
    </row>
    </results>
    - <sort default="attr1">
    - <order-by id="attr2">
    <clause>attr2</clause>
    <clause>attr1</clause>
    </order-by>
    </sort>
    </report>
    I need to sort the row nodes by attr2 first, then attr1, and i have something like this in my xsl:
    <xsl:if test="$sortField != 'default'">
    <xsl:for-each select="/report/sort/order-by">
    <xsl:variable name="idField" select="@id"/>
    <xsl:if test="$idField=$sortField">
    <xsl:for-each select="/report/results/row">
    <xsl:sort select="*[name()=$newSort]"/> --> i need the sort statements here for both attr2 and attr1, but how do i get them out of the xml whenI don't know beforehand how many clause nodes there will be, or what they will contain
    <tr>
    <xsl:for-each select="*">
    <td class="report">
    <xsl:value-of select="."/>
    </td>
    </xsl:for-each>
    </tr>
    </xsl:for-each>

  • Multiple Outer join in ORACLE 8.1.6

    Hi ,
    Can anybody suggest me how can i use multiple outer join on one table. I'm using ORACLE 8.1.6.
    I know this version of oracle doesnt support this. But is there anmy other wa\y I can achieve this.
    Thanks amd Regards
    Deependra

    Tricky question - but I went through this about 3 months ago, and found a good thread on here that explains it pretty well.
    check out Re: Outer join a table with two diff table
    You basically will have to create an inline view with one outer join in there, and then a second outer join on the outside. Read through the posts in that thread and it should help!

  • Query with multiple outer joins

    I had a doubt with whether the following kind of query is valid with multiple outer-joins. The format of the query is something like this:-
    select A.col1, B.col2
    from table1 A, table2 B, table3 C where
    A.col3=B.col4(+) and B.col5=C.col6(+)
    This would mean the follwoing with regard to outer-joins in the query.
    1) fetch records with col3 in table A matching or not matching col4 in table B
    2) fetch records with col5 in table B matching or not matching col6 in table C
    So, this query is valid?
    I hope, my question is clear.
    Please, help in solving the doubt.
    regards

    This is valid and it works fine

  • Web service with multiple out parameters

    Hi Developers,
    I have been playing around with som web services in the developer studio.
    I can create a webservice from a normal ejb.
    But i can only get one out parameter, which is the return parameter of the ejb.
    I tried to make an object to use as return parameter, but then i couldn't use the method for the web service.
    Can anyone tell me how to make a web service with multiple out parameters?
    Br Rasmus

    Hi Developers,
    I have the same question, is it possible to have multiple outgoing parameters?
    When not, does SAP Netweaver knows a IN-OUT parameter? Because I found on the internet that it is possible to have a IN-OUT parameter. But that was with the BEA Weblogic 8.x.
    When not, is then the only solution to return a object? With in this object all the parameters you want.
    Or otherwise is there a other workaround?
    Thanks in advance,
    Marinus Geuze

  • Procedure multiple out parameters into a cursor

    Hi,
    I have a procedure that returns multiple out parameters.  How do I combine those and return as a cursor?
    Here is the procedure I use (modified for forums)
    PROCEDURE SAMPLEPROCEDURE
    (in_param1 IN NUMBER,
    in_param2   IN VARCHAR2,
    output_ONE   IN VARCHAR2,
    output_TWO   IN VARCHAR2,
    output_THREE   IN VARCHAR2,
    output_FOUR   IN VARCHAR2,
    output_FIVE   IN VARCHAR2,
    output_SIX   IN VARCHAR2,
    IS
    BEGIN
          output_one := 'YAH!';
         SELECT count(*) into output_TWO FROM   tablea WHERE  tablea.columnB = in_param1;
         IF (variable1 = 0) THEN
            output_one := 'SOMETHING MISSING';
            RETURN;
         END IF;
          SELECT count(*) into CHECKINGACCOUNT_COUNT from ACCOUNT WHERE   TABLE = in_param1 AND  ACCOUNT.TYPE = 'CHECKING';
       IF  (CHECKINGACCOUNT_COUNT <> 0) then
      SELECT count(*) into output_THREE FROM   tableB WHERE  tableB.columnB = in_param1;
      SELECT columnC into output_FOUR FROM   tableC WHERE  tableC.columnC = in_param1;
      SELECT SUM(columnD) into output_FIVE FROM   tableD WHERE  tableD.columnD = in_param1;
       if(output_FIVE >= input_param2) then
      output_FIX := 'RETURN VALUE';
       end if;
    END IF;
    end SAMPLEPROCEDURE;

    Should Use 'OUT' for Output parameter instead of 'IN' in your procedure, its wrong.
    For fetching more than one row from procedure, use REFCURSOR.
    Follow the Code:
    CREATE OR REPLACE PROCEDURE proc_cursor (in_n_sal   
    IN
    NUMBER,
    ov_n_sumsal   
    OUT NUMBER,
    ov_n_empno    
    OUT sys_refcursor,
    ov_cr_details 
    OUT sys_refcursor)
    AS
    BEGIN
       SELECT   SUM (sal)
    INTO   ov_n_sumsal
    FROM   emp
    WHERE   sal = in_n_sal; /*here , the query returns only one row*/
    open ov_n_empno for
       SELECT   empno
    FROM   emp
    WHERE   sal = in_n_sal;/*here the query may return more than one row , so i used refcursor for fetching the result set*/
    open ov_cr_details for
       SELECT   SUM (sal), empno
    FROM   emp
    WHERE   sal = in_n_sal
    group by empno;/*here also i used refcursor , to achieve more than one row and two more columns result set*/
    END;
    EXECUTION:
    SQL> variable  OV_N_SUMSAL number;
    SQL> variable OV_N_EMPNO number;
    SQL> variable OV_N_EMPNO refcursor;
    SQL> variable OV_CR_DETAILS refcursor;
    SQL> EXECUTE PROC_CURSOR ( 800, :OV_N_SUMSAL, :OV_N_EMPNO, :OV_CR_DETAILS );
    PL/SQL procedure successfully completed.
    SQL> PRINT OV_N_SUMSAL;
    OV_N_SUMSAL
           1600
    SQL> PRINT OV_N_EMPNO;
         EMPNO
          1888
          1239
    SQL> PRINT OV_CR_DETAILS;
      SUM(SAL)      EMPNO
           800       1888
           800       1239
    SQL>
    I hope this one will help you.

  • Multiple Out put issued

    Dear All,
    I have one sales order where out put types DLO1, DLO3 and DLO4 are determined as sales order confirmation out put. The transmission medium for all of these is Print out ie external send.
    Here in the sales order multiple out puts are issued. Customer has received 5-6 mails for each output. When i go to out put determination / edit screen thre also i can see as many number of lines partaining to output types.
    Can you please help me solving this issue since i am not able to analyse from where or how this thing is happening.
    One imp thing i noted that all the out put are automatically detemined. I mean no mannual addtion of lines has happened.
    Regards,
    Vishi.

    Hi Vishi
    Please check you routine associated with your output type, suppose you have a requiremnt that is qty=5 then trigger DLO1, in such cases every time you save sales order with qty =5 output will trigger automatically.
    To avoid such cases add some code in routine that is output has already triggered then don't trigger.
    Take help of ABAPer.
    try and revert

  • Multiple Column sort Pop Up not opening using af:PanelCollection

    Hi guys,
    I have a table in which i want to sort on the basis of Multiple Columns.For that I have used af:PanelCollection but when in menus my advance sort Pop Up is Not opening.I am using jdeveloper 11.1.1.6.
    <af:panelCollection id="pc1" styleClass="AFStretchWidth"
    partialTriggers="t1">
    <f:facet name="menus"/>
    <f:facet name="toolbar"/>
    <f:facet name="statusbar"/>
    <af:table value="#{bindings.xx_sw_vwVO.collectionModel}"
    var="row" rows="#{bindings.xx_sw_vwVO.rangeSize}"
    emptyText="#{bindings.xx_sw_vwVO.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.xx_sw_vwVO.rangeSize}"
    rowBandingInterval="0"
    width="100%"
    selectionListener="#{bindings.xx_sw_vwVO.collectionModel.makeCurrent}"
    inlineStyle="height:350;"
    rowSelection="single" id="t1"
    partialTriggers="::cb1 ::sor1"
    contentDelivery="immediate" immediate="true"
    autoHeightRows="30" columnSelection="multiple">
    <af:clientListener method="sskuRowSelection" type="click"/>
         <af:serverListener type="sskuRowSelectEvent"
    method="#{DataworkbenchBN.sskurowselect}"/>
    <af:column sortProperty="SskuId" sortable="true"
    headerText="#{bindings.xx_sw_vwVO.hints.SskuId.label}"
    id="c33">
    <af:inputText value="#{row.bindings.SskuId.inputValue}"
    label="#{bindings.xx_sw_vwVO.hints.SskuId.label}"
    required="#{bindings.xx_sw_vwVO.hints.SskuId.mandatory}"
    columns="#{bindings.xx_sw_vwVO.hints.SskuId.displayWidth}"
    maximumLength="#{bindings.xx_sw_vwVO.hints.SskuId.precision}"
    shortDesc="#{bindings.xx_sw_vwVO.hints.SskuId.tooltip}"
    id="it17">
    <f:validator binding="#{row.bindings.SskuId.validator}"/>
    </af:inputText>
    </af:column>

    ADF -- panelCollection multiple column sort
    ~Abhijit

  • Multiple column sorting in JTable

    There is way to release multiple column sorting in JTable.
    ADF/SWing, Jdev 10.1.3

    I do not know that there is, but it would be really nice!
    regards,
    mario udina

  • Sort with out sort command

    How can we sort the internal table with out sort command.

    DECLARE A SORTED INTERNAL TABLE.
    DATA : ITAB TYPE SORTED TABLE OF MARA WITH UNIQUE KEY MATNR.
    Now, whatever data you are inserting into ITAB will be SORTED automatically.
    You CANNOT use APPEND statement with SORTED tables, have to use INSERT statement. You don't have to use the SORT statement.
    regards,
    Ravi
    Note : Please mark all the helpful answers and close the thread if the issue is resolved.

  • Having audio object use multiple outs

    is it possible to have my autoload setup to where my audio tracks and instrument tracks use multiple outs?
    example.
    setup audio track 1 to use out 1-2 and out 2-3.
    reason.
    i have my mackie hr824's on out 1-2, but i have another set of monitors that i would like to use for an a/b setup. i don't have the money to purchase a mackie big knob, or a presonus device. per other discussions i have my env setup with a layer to control the outputs of my RME. what i would like to do is to connect the other monitors to outs 3-4. keep them muted until i need to use them. i just need to know i you can setup audio objects to use multiple outs.
    ciao

    what do you have you PDC set to in the preferences?
    I use all three settings, at times. I'll turn PDC off if I need to use software monitoring with high-latency plug-ins on other tracks, but really, the best solution is not to track with too many plug-ins on anything. PDC is designed for playback/mixing, not tracking, and in 7.2.3, I've found it works well (although not exactly the way I'd like it to). For tracking with plug-ins, you'd likely want different behavior, to compensate for the fact that you're playing along with tracks that are already delayed due to plug-in latency--it's different from playback.
    At any rate, my best advice at this point (with any DAW, as far as I know) is that you shouldn't track with high-latency plug-ins on any tracks or busses that are time/rhythm references, regardless of PDC settings. For mixing, the "All" PDC setting should be fine.
    And the PDC setting doesn't affect the mix bus routing at all (no latency at any setting), unless you have plug-ins on that mix bus when tracking, which again, isn't a good idea re: performance timing.
    James
    [email protected]

  • I have pictures sorted manually in an album. When I try to print the pictures, they come out sorted by date. What am I doing wrong?

    I have an Album in iPhoto, that the pictures are sorted manually.  When I try to print the pictures in the album, using "contact sheet" it comes out sorted by date. I want it in the order of the Album.  How do I do that?

    Hello Richard,
    in the "Print" dialogue select "Contact Sheet", then press the "Customize" button.
    In the Customize view you can rearrange your images by dragging them around.
    Just a work-around, but I hope this helps.
    Regards
    Léonie

  • Help to make multiple out for ultrabeat

    I am new to logic and could some one walk me though thank you

    Load an UB as a Multichannel, not as stereo: Click on the instrument slot of an instrument object and choose Multichannel->Logic->Ultrabeat
    In the UB interface there is a column "out". Set the output here by clicking and holding on "main" and selecting the one you want.
    Now choose the Untrabeat output (the one you just specified) as an Input of an Aux object.
    repeat for each Ultrabeat Output.
    That's it
    cheers
    Martin

Maybe you are looking for

  • What does symbol can't be resolved mean?

    Hi again. I'm looking through another tutorial and have written in a test program. I keep going over the toot(tutorial) and I can't seem to find any syntactical errors, but according to DOS I'm getting a "cannot resolve symbol" and the arrow indicato

  • Sprint Navigation can no longer find my contacts...

    smkranz I am a volunteer, and not an HP employee. Palm OS ∙ webOS ∙ Android

  • Accounts getting disabled after enabling password expiration on BOXI R2 SP2

    Hi All, We have a strange issue with our production environment.After enabling password expiration on the enterprise some accounts got disabled,on further investigation I found that these users were either trying to log on to Designer or 2 tier Deski

  • Sybase - Cannot connect from WL 7.0

    Just trying to connect via weblogic 7.0 to sybase 12. I have achieve this before but for some reason this time it does not want to connect. Here is my Config.xml file : <?xml version="1.0" encoding="UTF-8"?> <!--If your domain is active, please do no

  • Get database result as a type of complex object

    Hi, I would like to make a query and send the results with web service to the client by a user defined object type. I send the servis and client code below. My query works fine but I got all array elements of my object equal to null. I could not unde