Help with Logic Set Up - Loops and samples

Hi all
I am a new Logic user so apologies if this question is very newbie...
I am just installing and setting up my program. I installed the full Logic with all the included sample content on my boot drive. Subsequently I bought a drive that I want to be a dedicated drive for sample libraries.
My question is, how do I locate all the sample content and Apple Jam Pack content that Logic has already installed in order to move it to the new drive, and how do I make Logic aware of the new location of the libraries?
If it weren't an eight hour install, I might just run the installer again, but hoping there would be an easier way.
Thanks!!
Message was edited by: V Silly

There is no need to uncheck remote and testing. Previewing locally should work exactly the same as it did in CS3.
Are you using a server-side language? If so, expand the Files panel by clicking this icon:
Then make sure that the Testing Server icon is selected.

Similar Messages

  • Help with Logic Sets

    Hi guys,
    We have a requirement for writing a logic set.
    The requirement is as follows-
    1. A metric Set gets data at a frequency of 4 months cycle (data is input in July, November and March).
    2. The user will enter the Current data corresponding to these 3 months only.
    3. The client needs the data entered for these months (July, Nov, Mar) to be copied to the remaining 3 months in the cycle.
    Can this be done using Logic Set? Can you please advise on how should we proceed with this requirement.
    Thanks in anticipation,
    Sameer

    Hi,
    Logic sets are very useful for various calculations.  They can be used when importing data to create "new columns" of data based on calculations of other data - and they can also be used at run-time as virtual variables.  I'm not suggesting that this is a good use of the later - but I wanted to answer your question and help folks understand how to use Logics.  (There may be better/more performant ways of accomplishing the same thing, such as making the variable a LAST or RATE variable.)    However, if you want to become familiar with the use and power of LOGICS, here is an examples below to get you started:
    I'm using the HFPBM sample database as a starting point. 
    Create a file in your Home directory (C:\Program Files\SAP BusinessObjects\Strategy Management\ApplicationServer\home) called BYPEg.txt.  Add the info at the bottom of this post.
    In PasAdmin, IDQL, run the commands:
    use HFPBM excl
    job BYPEg.txt;ext
    This example creates a logic (BYPeg) to perform some calculation, then defines a virtual variable called foo_index using that logic to selects only values that are below some threshold of UNITS_SOLD_CUST_TARDEV.
    remo logic BYPEg
    ...Copy Logic Terminal BYPEg
    OUTPUT temp.txt;ext over
    echo input testvar
    echo input thrshld
    echo result rslt
    echo SCALAR HoldVal
    echo BYPERIOD
    ...echo TEXT "Looping..."
    echo WHEN testvar LT thrshld
    echo     HoldVal = testvar
    echo ENDWHEN
    echo rslt = HoldVal
    ...echo DISPLAY UNITS_SOLD_CUST_TARDEV, HoldVal
    echo ENDBYPERIOD
    OUTPUT OFF
    COPY LOGIC temp.txt;ext BYPEg over
    Compile Logic BYPEg
    remo var foo_index
    cre var foo_index "Foo Index" by customer, product, store as BYPEg(UNITS_SOLD_CUST_TARDEV,1)
    sel var foo_index
    sel var plus UNITS_SOLD_CUST_TARDEV
    acro var down time
    list

  • Help with if statement in cursor and for loop to get output

    I have the following cursor and and want to use if else statement to get the output. The cursor is working fine. What i need help with is how to use and if else statement to only get the folderrsn that have not been updated in the last 30 days. If you look at the talbe below my select statement is showing folderrs 291631 was updated only 4 days ago and folderrsn 322160 was also updated 4 days ago.
    I do not want these two to appear in my result set. So i need to use if else so that my result only shows all folderrsn that havenot been updated in the last 30 days.
    Here is my cursor:
    /*Cursor for Email procedure. It is working Shows userid and the string
    You need to update these folders*/
    DECLARE
    a_user varchar2(200) := null;
    v_assigneduser varchar2(20);
    v_folderrsn varchar2(200);
    v_emailaddress varchar2(60);
    v_subject varchar2(200);
    Cursor c IS
    SELECT assigneduser, vu.emailaddress, f.folderrsn, trunc(f.indate) AS "IN DATE",
    MAX (trunc(fpa.attemptdate)) AS "LAST UPDATE",
    trunc(sysdate) - MAX (trunc(fpa.attemptdate)) AS "DAYS PAST"
    --MAX (TRUNC (fpa.attemptdate)) - TRUNC (f.indate) AS "NUMBER OF DAYS"
    FROM folder f, folderprocess fp, validuser vu, folderprocessattempt fpa
    WHERE f.foldertype = 'HJ'
    AND f.statuscode NOT IN (20, 40)
    AND f.folderrsn = fp.folderrsn
    AND fp.processrsn = fpa.processrsn
    AND vu.userid = fp.assigneduser
    AND vu.statuscode = 1
    GROUP BY assigneduser, vu.emailaddress, f.folderrsn, f.indate
    ORDER BY fp.assigneduser;
    BEGIN
    FOR c1 IN c LOOP
    IF (c1.assigneduser = v_assigneduser) THEN
    dbms_output.put_line(' ' || c1.folderrsn);
    else
    dbms_output.put(c1.assigneduser ||': ' || 'Overdue Folders:You need to update these folders: Folderrsn: '||c1.folderrsn);
    END IF;
    a_user := c1.assigneduser;
    v_assigneduser := c1.assigneduser;
    v_folderrsn := c1.folderrsn;
    v_emailaddress := c1.emailaddress;
    v_subject := 'Subject: Project for';
    END LOOP;
    END;
    The reason I have included the folowing table is that I want you to see the output from the select statement. that way you can help me do the if statement in the above cursor so that the result will look like this:
    emailaddress
    Subject: 'Project for ' || V_email || 'not updated in the last 30 days'
    v_folderrsn
    v_folderrsn
    etc
    [email protected]......
    Subject: 'Project for: ' Jim...'not updated in the last 30 days'
    284087
    292709
    [email protected].....
    Subject: 'Project for: ' Kim...'not updated in the last 30 days'
    185083
    190121
    190132
    190133
    190159
    190237
    284109
    286647
    294631
    322922
    [email protected]....
    Subject: 'Project for: Joe...'not updated in the last 30 days'
    183332
    183336
    [email protected]......
    Subject: 'Project for: Sam...'not updated in the last 30 days'
    183876
    183877
    183879
    183880
    183881
    183882
    183883
    183884
    183886
    183887
    183888
    This table is to shwo you the select statement output. I want to eliminnate the two days that that are less than 30 days since the last update in the last column.
    Assigneduser....Email.........Folderrsn...........indate.............maxattemptdate...days past since last update
    JIM.........      jim@ aol.com.... 284087.............     9/28/2006.......10/5/2006...........690
    JIM.........      jim@ aol.com.... 292709.............     3/20/2007.......3/28/2007............516
    KIM.........      kim@ aol.com.... 185083.............     8/31/2004.......2/9/2006.............     928
    KIM...........kim@ aol.com.... 190121.............     2/9/2006.........2/9/2006.............928
    KIM...........kim@ aol.com.... 190132.............     2/9/2006.........2/9/2006.............928
    KIM...........kim@ aol.com.... 190133.............     2/9/2006.........2/9/2006.............928
    KIM...........kim@ aol.com.... 190159.............     2/13/2006.......2/14/2006............923
    KIM...........kim@ aol.com.... 190237.............     2/23/2006.......2/23/2006............914
    KIM...........kim@ aol.com.... 284109.............     9/28/2006.......9/28/2006............697
    KIM...........kim@ aol.com.... 286647.............     11/7/2006.......12/5/2006............629
    KIM...........kim@ aol.com.... 294631.............     4/2/2007.........3/4/2008.............174
    KIM...........kim@ aol.com.... 322922.............     7/29/2008.......7/29/2008............27
    JOE...........joe@ aol.com.... 183332.............     1/28/2004.......4/23/2004............1585
    JOE...........joe@ aol.com.... 183336.............     1/28/2004.......3/9/2004.............1630
    SAM...........sam@ aol.com....183876.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183877.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183879.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183880.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183881.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183882.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183883.............3/5/2004.........3/8/2004.............1631
    SAM...........sam@ aol.com....183884.............3/5/2004.........3/8/2004............     1631
    SAM...........sam@ aol.com....183886.............3/5/2004.........3/8/2004............     1631
    SAM...........sam@ aol.com....183887.............3/5/2004.........3/8/2004............     1631
    SAM...........sam@ aol.com....183888.............3/5/2004.........3/8/2004............     1631
    PAT...........pat@ aol.com.....291630.............2/23/2007.......7/8/2008............     48
    PAT...........pat@ aol.com.....313990.............2/27/2008.......7/28/2008............28
    NED...........ned@ aol.com.....190681.............4/4/2006........8/10/2006............746
    NED...........ned@ aol.com......95467.............6/14/2006.......11/6/2006............658
    NED...........ned@ aol.com......286688.............11/8/2006.......10/3/2007............327
    NED...........ned@ aol.com.....291631.............2/23/2007.......8/21/2008............4
    NED...........ned@ aol.com.....292111.............3/7/2007.........2/26/2008............181
    NED...........ned@ aol.com.....292410.............3/15/2007.......7/22/2008............34
    NED...........ned@ aol.com.....299410.............6/27/2007.......2/27/2008............180
    NED...........ned@ aol.com.....303790.............9/19/2007.......9/19/2007............341
    NED...........ned@ aol.com.....304268.............9/24/2007.......3/3/2008............     175
    NED...........ned@ aol.com.....308228.............12/6/2007.......12/6/2007............263
    NED...........ned@ aol.com.....316689.............3/19/2008.......3/19/2008............159
    NED...........ned@ aol.com.....316789.............3/20/2008.......3/20/2008............158
    NED...........ned@ aol.com.....317528.............3/25/2008.......3/25/2008............153
    NED...........ned@ aol.com.....321476.............6/4/2008.........6/17/2008............69
    NED...........ned@ aol.com.....322160.............7/3/2008.........8/21/2008............4
    MOE...........moe@ aol.com.....184169.............4/5/2004.......12/5/2006............629
    [email protected]/27/2004.......3/8/2004............1631
    How do I incorporate a if else statement in the above cursor so the two days less than 30 days since last update are not returned. I do not want to send email if the project have been updated within the last 30 days.
    Edited by: user4653174 on Aug 25, 2008 2:40 PM

    analytical functions: http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/functions2a.htm#81409
    CASE
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96624/02_funds.htm#36899
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96624/04_struc.htm#5997
    Incorporating either of these into your query should assist you in returning the desired results.

  • Correct binding order in a Cluster with logical switches, NIC teams, and vNICs on the host.

    I have seen many recommendations to set the network binding order on you Hyper-V hosts to something similar to:
    Management NIC
    Cluster NICs
    iSCSI NICS
    However, all of  these recommendations are for scenarios where the NICs are all physical NICs in the host.
    Using Server 2012 R2, I am building converged networks with logical switches, NIC Teams, and vNICs on the host.  So when I go set the network binding order, I now have all these components to deal with as well.  For example, on a 4 adapter blade,
    I might typically have the following items in the binding order drop-down.
    4 - physical NICs (2- teamed for the 1 virtual switch, the other 2 used for iSCSI)
    1 - Team interface (Datacenter_Switch)
    5 - vNICs (Management, Cluster, LiveMigration, iSCSI-1, iSCSI-2)
    So, should you only worry about order of the vNICS (placed at the top) and let the other components just fall to the bottom of the list?  This seems to be likely to me, since the binding order applies to service access to the resources, and the other
    components are not being directly accessed by network services?
    Or, should the order start out with the physical resources needed to access the vNICs, followed by any intermediate resources (switches or team interfaces, then the vNICS themselves, to ensure that the resources are available to the subcompnents accessing
    them?
    Any help would be appreciated.
    Thanks.
    -Tim Reid

    If by 'network binding order' you mean the order set in the Advanced Settings of the Network Connections of the Control Panel, then the most important one is to make sure the domain network is at the top of the list.  Whichever network is at the top
    of the list is used first for auth functions.  So auth functions perform best when the proper network is placed first in the binding order.  After that, I don't know that it makes much difference at all.  (If it does, I'm sure my statement will
    start a lively discussion. <grin>)
    . : | : . : | : . tim

  • Hi i would like help with:  When I draw circle and add stroke I can not see stroke  I use Photoshop CS 5

    Hi i would like help with:
    When I draw circle and add stroke I can not see stroke
    I use Photoshop CS 5

    Make sure the stroke is set to a color and not to the symbol that appears here for Fill

  • Need help with how to reset bios and admin password to reformat hard drive in 8440p elitebook.......

    need help with how to reset bios and admin password to reformat hard drive in 8440p elitebook? removal of cmos, resetting laptop, using cccleaner, windows password recovery and hiren's was noneffective, any help is appreciated. thanks

    Hi,
    As your notebook is a business class machine, security is more stringent - the password is stored in non-volatile memory and there are no 'backdoor' passwords.  Your best option would be to contact HP regarding this.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Can anyone help with issue whereby Music, Podcasts and Audiable Book Apps keep stopping when listing via Headphones following IOS 7.01 Updates on Iphone 4?

    Can anyone help with issue whereby Music, Podcasts and Audiable Book Apps keep stopping when listing via Headphones following IOS 7.06 Updates on Iphone 4?
    I have tried the following all ready:
    Resetting Phone
    Resetting Settings on phone
    Change Headsets to speakers
    Reinstalled Phone
    Updated to IOS 7.1
    No of the above has resolved the issue does anyone have any ideas?

    Can anyone help with issue whereby Music, Podcasts and Audiable Book Apps keep stopping when listing via Headphones following IOS 7.06 Updates on Iphone 4?
    I have tried the following all ready:
    Resetting Phone
    Resetting Settings on phone
    Change Headsets to speakers
    Reinstalled Phone
    Updated to IOS 7.1
    No of the above has resolved the issue does anyone have any ideas?

  • Can i use Avid mbox pro with logic pro x? And also which mac would be best for using avid pro tools 11 ;)

    Can i use Avid mbox pro with logic pro x? And also which mac would be best for using avid pro tools 11

    If your info is correct you need to first buy Snow Leopard from the Apple on-line store ($20) install and update to 10.6.8 and then buy Lion from the App Store for $20.

  • Can't access loops and samples

    Hi,
    I have posted this on the regular SoundTrack discussion list and have not received an answer.I am not really sure which list this belongs on since it is SoundTrack Academic. Here's the issue: My computer is shared. I am the administrator and can access SoundTrack and all its features. Other users who are not administrators can not access the loops and samples. I did create another admin account and that account also can not access the loops and samples. How can I make the loops and samples available to who ever uses this computer? Thanks.

    Logged in on one of the other accounts, open STP and under the Search tab, click the Setup... button at the top right. See if you can browse to the folder where the files are located (probably something like: /Library/Audio/Apple Loops/Apple Loops for Soundtrack Pro, and /Library/Audio/Apple Loops/Apple/Apple Loops for GarageBand). If so, just add that/those folder(s) to the Folders Indexed list.
    Try that, then report back.
    tim

  • Noob needs help with Logic and Motu live setup.

    Hello everyone,
    I'm a noob / semi noob who could use some help with a live setup using 2 MOTU 896HD's and Logic on a Mac.
    Here's the scenario:
    I teach an outdoor marching percussion section (a drumline and a front ensemble of marimbas and vibes). We have an amazing setup of live sound to amplify and enhance the mallet percussion. There is a yamaha PA system with 2 subs and 2 mains which are routed through a rack unit that processes the overall PA balance. I'm pretty sure that the unit is supposed to avoid feedback and do an overall cross-over EQ of the sound. Other then that unit, we have 2 motu896hd units which are routed via fire-wire. I also have a coax cable routing the output of the secondary box to the input of the primary box (digital i/o which converts to ADAT in (i think?)..?
    Here's the confusion:
    There are more then 8 inputs being used from the ensemble itself, so I need the 16 available inputs to be available in Logic. I was lead to believe that the 2nd motu unit would have to be sent digitally to the 1st motu unit via coax digital i/o. Once in Logic, however, I cannot find the signal or any input at all past the 8th input (of the 1st unit).
    Here's the goal:
    All of my performers and inputs routed via firewire into a Mac Mini running OSX and Logic pro.
    I want to be able to use MainStage and run different patches of effects / virt. instruments for a midi controller keyboard / etc.
    I want to be able to EQ and balance the ensemble via Logic.
    Here's another question:
    How much latency will I be dealing with? Would a mac mini with 4gb of ram be able to handle this load? With percussion, I obviously want the sound as latency free as possible. I also, however, want the flexibility of sound enhancement / modification that comes with Logic and the motu896hd units.
    Any help would be REALLY appreciated. I need the routing assistance along with some direction as to whether or not this will work for this type of application. I'm pretty certain it does, as I have spoken with some other teachers in similar venues and they have been doing similar things using mac mini's / logic / mainstage / etc.
    Thanks in advance,
    Chris

    You'll definitely want to read the manual to make sure the 896HDs are connected together properly. ADAT is a little tricky, it's not just a matter of cabling them together. Go to motunation.com if you need more guidance on connecting multiple devices. Beyond that initial hookup, here are a couple of quick suggestions:
    1. Open CueMix and see if both devices are reported there. If not, your connections aren't correct. Be sure to select 44.1kHz as your sample rate, otherwise you are reducing the number of additional channels. For instance at 88.2kHz you would get half the additional channels via ADAT.
    2. You may need to create an aggregate device for the MacBook to recognize more than the first 896HD. Lots of help on this forum for how to do that. Again, first make sure you have the 896HDs connected together properly.
    3. As for latency with Mainstage on the Mini, no way to know until you try it. Generally MOTU is fantastic for low latency work but Mainstage is a question mark for a lot of users right now. If the Mini can't cut the mustard, you have a great excuse to upgrade to a MacBook Pro.

  • Help with Logic Pro 8, Apogee Symphony System, and Nehalem 8-core Mac Pro

    So here's the problem. I went on a shopping spree recently and purchased an 8-core Nehalem 8-core Mac with 14 GB RAM, Apogee's Symphony system (With Rosetta 800 and AD-16X), and I use this gear with Logic Pro 8.
    I still get system overload messages. Sometimes with only 1 virtual instrument and 8 audio tracks!
    What gives? I'm running the fastest machine on the fastest system with the fastest/cleanest hardware.
    I'm running Logic Pro on all of its highest settings (like it should). Of course I could drop the buffer size and unclick a few things here and there. but why? Is my machine powerful enough to handle it or not?
    I've deleted the plist a bunch of times and repaired hardisks and everything. any help from a certified LOGIC pro would be excellent and much appreciated! thanks in advance,
    jayme

    jayme Lewis wrote:
    So here's the problem. I went on a shopping spree recently and purchased an 8-core Nehalem 8-core Mac with 14 GB RAM, Apogee's Symphony system (With Rosetta 800 and AD-16X), and I use this gear with Logic Pro 8.
    I still get system overload messages. Sometimes with only 1 virtual instrument and 8 audio tracks!
    What gives? I'm running the fastest machine on the fastest system with the fastest/cleanest hardware.
    I'm running Logic Pro on all of its highest settings (like it should).
    ?It's highest settings?
    Do you mean the sample buffer is at 32 or 1024.
    Even though you have Apple's flagship system it's still possible for Logic to bring it to it's knees. High sample rates plus a couple of space designer reverbs can send a single core into an overload condition.
    Try these settings under Preferences/Audio.
    I/O Buffer Size - 256
    Process buffer - medium
    Do NOT have the I/O Safety Buffer selected.
    More info.
    What sample rate and bit depth are you recording at? ie: 48kHz, 24-bit?
    When you open Logic's CPU meters are you seeing a single core spiking?
    What effects are being used on the audio and single VI track?
    pancenter-

  • Help with Logic Pro 7 and Yamaha 01X please!

    My friend has purchased an 01X, a 20" G5 iMac with 1.5GB RAM and Logic Pro 7. He is not the 'techiest' of people so was rather hesitant about going this route for his recording purposes. Having used a Yamaha AW4416 to successfully record an album, he figured that the 01X with Logic would be the next step up the ladder of useability & functionality.
    Unfortunately, he is having a great deal of difficulty in getting the 01X to talk to Logic. He purchased and installed the Logic 7.1 update in the hope that things would start to work. Unfortunately, that hasn't helped either. All the 01X is able to do is start and stop the 'play head' in Logic. None of its other functions are having any effect. He is also having problems with mLan.
    So, before he throws the whole lot out as a bad idea can anybody provide any success stories with Logic and the 01X. I am hoping to visit him this weekend to see if I can help. However, whilst I know a whole lot about Macs, I have no experience with the 01X or Logic (I used Cubase VST in the past on a few projects). Any help or pointers in troubleshooting this would be very gratefully received.
    Lol

    i've been looking into getting the 01X and been doing some reading. i have no experience with it but i'm interested in hearing more about how you get on. i did find that www.o1xray.com has a forum full of information about setting up logic and the 01X. ElmerJFud seems to be the main dude, his post has a lot of setup information: http://www.01xray.com/forums/showflat.php?Cat=7&Board=01X_Macintosh&Number=19978 0&page=0&view=collapsed&sb=5&o=&fpart=1

  • MIDI help with Logic X

    Hoping someone can shed some light on a somewhat elusive topic. I am new to recording, so maybe I just don't know where to look.  Info on recording each pad on a different track is pretty sparse.
    I have the TD-15KV set of Roland V-drums.  I like a lot the sounds on the module and have recorded tracks using the onboard sounds via 1/4" cables through a Focusrite Scarlett 2i4.  However, I recently learned about the drum sample library called Superior Drummer 2.0.  The acoustic drums in that library sound pretty stellar.  (If you anyone knows of any other top-notch library, please hip me to it.)  To use this sampler or any other drum sounds within Logic, I need to run the drum pads through MIDI.  Today, I ran a MIDI cable from the TD-15 module output to the input on the Scarlett 2i4.  I through I'd be able to figure out how to navigate through Logic X to set up a template to start triggering the sounds within the Logic library, but it's not as simple as I thought.
    Does anyone know where I can learn how to get this going (I'm testing the compatibility between my pads and Logic's sample library BEFORE I go out and buy Superior Drummer)?  Or is anyone here willing to provide some info on how to do this?
    I also came across a YouTube video that briefly mentioned the capability to even record each pad to a different track within Logic.  Only thing I seemed to understand was that you can only assign individual tracks by using the Producer Kits.
    Any sort of help would be much appreciated.  Thanks.

    I left teaching a couple of years ago to pursue a different opportunity outside of music.  Ironically enough, it allowed me to have more time to do music for me and not for the program I was involved with.  Band directing is a ton more work than most people would think.
    Anyway, I've always been a performer with many bands, but I've really gotten interested in recording in the past few years.  It's only now that I've gotten to starting to learn.  I bought Logic 8 in 2009 with intentions of digging into it then, but my job was too time-consuming.  But now that I'm removed from that world, I'm actually playing and creating more music for personal enjoyment than I did then.
    You know, I should clarify that I think I have a pretty decent understanding of what MIDI is.  I've dabbled a bit with an M-Audio MIDI controller I have.  Obviously, that's basic stuff.  I plug my controller into a USB port on my computer and it works with little set up.  I load a sound, and I'm set to record.  Through this, I have seen how I can record something into Logic and then I can change the sounds later.  Moreover, I understand that that's possible because I'm recording data and not actual pitches.  That data is there to be manipulated in whatever way I see fit.
    But it seems that there are a million things that can be done with MIDI that I'm missing out on.  Like in this instance with my V-Drums.  I know I can go MIDI out from the module to MIDI in on my interface, and it works.  As you previously explained, I open up Drum Designer or EXS24, I load a drum kit, and I'm good.  But it seems complicated beyond that.  Like assigning the pads to specific sounds or assigning each pad to a different track (that's probably not MIDI-related and may have more to do with setting in Logic).
    In a nutshell, it's more the various setting and options that seem daunting.  Hope I'm making sense.

  • The best way to get help with logic

    I was posting in a thread on support for logic which appears to have been deleted. anyway, what I was going to say I think is useful info for people, so I'm going to post it anyway. to the mods - it doesn't contain any speculation about policies or anything like that. just an explanation of my views on the best way to deal with issues people have with logic, which I think is a valuable contribution to this forum.
    I think there's a need for perspective. when you buy an apple product you get 90 days of free phone support to get everything working nice and neat. you can call them whenever, and you could actually keep them on the phone all day if you wanted, making them explain to you how to copy a file, install microsoft office, or any number of little questions no matter how simple - what is that red button thingy in my window for?.. on top of that, you've got a 14 day dead on arrival period (or 10 days I can't remember) in which if your machine has any kind of hardware fault whatsoever it's exchanged for a totally new one, no questions asked. a lot of people complain that applecare is overpriced.. and if you think of it just as an extended warranty, then it is a little pricey. but if you are someone that could use a lot of phone support, then it's actually potentially a total bargain. the fact that 2 or more years after you bought a computer, you could still be calling them every single day, asking for any kind of advice on how to use anything on the machine, is quite something. many people on this forum have had problems when they made the mistake of upgrading to 10.4.9 without first creating a system clone or checking first with their 3rd party plug in vendors to make sure it was ok. so, with apple care, you could call them and keep a technician on the phone _all day_ talking you through step-by-step how to back up all of your user data, how to go through and preserve your preferences and any other specific settings you might not want to lose, and then how to rollback to an earlier OS version.. they'll hold your hand through the whole thing if you need them to.
    as for applecare support for pro apps like logic, I'd be the first person to agree that it's not great for anyone except beginners and first time users. if you look at what it takes to get even the highest level of logic certification, it's all pretty basic stuff. and logic doesn't exist in a vacuum, there is an entire universe of 3rd party software and hardware, as well as studio culture and advanced user techniques that are going to be totally invisible to some poor phone support guy at apple that did a logic 101. but it's not hard to see that apple are trying to promote a different kind of support culture, it's up to you to decide whether you want to buy into it or not.
    the idea is that they are able to provide basic setup support for new users, including troubleshooting. because it's a simpler level of support, at least they can do this well. so there's no reason why any new user with say a new imac and logic can't get up and running with the 90 days of phone support they get for free.
    but the thing is, for extremely high end pro users it's a different matter altogether. pro use of logic within the context of say, a studio or a film composition scenario is a very different world. it's almost a nonsense to imagine that apple could even hire people capable of giving useful support for this end of the spectrum, over the phone. there are so many variables, and so many things that require a very experienced studio person or in-work composer to even begin to understand the setup, let alone troubleshoot it. and it's a constantly evolving world, you actually have to be working in it and aware of developments on 3rd party fronts as well as changes in hardware.. not to mention even changes in the culture of studio production and the changed expectations that come from that. there's no way some poor little guy sitting at a help desk at apple can even hope to be privy to that kind of knowledge. it's already good enough that they don't outsource their support staff to india, let alone go out to studios and hire the very people with the skills that should be staying in the studio! not answering phones for apple.
    so, given this reality.. companies have two choices. they can either offer an email based support ticket system, which others do. but in my opinion.. this can just be frustrating and only a half-solution. sure you 'feel' like you are getting a response from the people that make the software and therefore must know it.. but it's not really the case due to what I said above. DAWs don't exist in a vacuum, and so much of what you need to understand to help people requires an intimate knowledge of the music industry in which they are working. you still won't get that from steinberg, even if they sort of answer your emails. the other problem is that this kind of system can mean sporadic answers, a lot of tail-chasing, and quite often you won't get an answer that helps you in the end anyway.
    the other model is to foster a strong user support culture. some people react in the wrong way to this idea.. they just think it's a big brush off from the manufacturer, saying we don't care, go sort it out yourselves.. but this isn't true. apple has a classification for pro resellers called 'apple solutions expert - audio'. what this means is that these dealers are recognised as audio specialists and they can receive extra support and training from apple for this. but more importantly than this.. most of them are music stores, or pro gear dealerships that are also mac and logic dealers. they already employ people that have worked or do work in the music industry, and are constantly on top of all of this stuff. apple encourages these dealers to run workshops, and to provide expert sales advice in the very niche area that logic is in, which they can do far better than some generic apple store ever could. but most importantly, they are encouraged to offer their own expert after-sales support and whatever other value-adding expertise they can, to get sales. because margins in computer gear are so tight nowadays, discounting is not really a viable option for these dealers to guarantee getting musicians to buy computers and logic setups from them. the only companies that can entice people with a lower price a big online wholesalers or big chain stores. so the best idea for these niche expert stores to get sales is to offer you their own experts to help with configuration, ongoing support and to generally make it a better idea that you bought your system from them rather than from some anonymous online store. I can see the wisdom of this.. it puts the support back out there on the ground where it's needed, and also where it can work best. apple could never hope to offer the same level of expertise in helping a film composer work through some issues with a specific interface or some highly specific issue they have with getting a task done. no big software manufacturer could do this anywhere near as well as people out there that have worked in studios or currently do work in studios. so in my opinion it's a far better model to foster this kind of support culture, along with training courses, books and training video support. also user forums like this one are possibly one of the most valuable ports of call anyone could ask for. apple couldn't replicate this with their own staff, even if they tried. and even if they made a system where some of the people close to logic development were able to answer emails, it would still be nowhere near as useful, as rapid or as capable of being up to speed with logic use out in the real world with 3rd pary gear, as any of these other methods are.
    the only thing I think they could do better would be to publish a list of known bugs which are officially recognised. this would help everyone and put an end to a lot of wasted time and speculation on if something is a bug totally to do with logic, or if it's a specific issue raised by a particular configuration.
    but really, in my view, a 3rd party support and training culture through a combination of specialist dealers, consultants that literally run a business setting up computers for pro-users and helping them keep it all working, online user-to-user forums and published materials really are the way forward.

    In all honesty this is currently the 3rd "logicboard" (motherboard)
    in my powerbook due to a design flaw regarding the 2nd memory slot....
    Yep. Mine failed five weeks after I bought it. However, I bought it for work and couldn't afford being without it for four weeks while they fixed it, so I had to live with it. My serial number did not entitle me to a replacement either, post Applecare.
    My firewire ports have burnt out from a third-party defective device (no hot-plugging involved)
    My screen is blotchy (my PW serial number did not entitle me to a replacement).
    My battery serial number did not entitle me to a replacement, and is not that good these days.
    My guaranteed Powerbook-compatible RAM is actually not, causing RAM related problems, most notably these days meaning that as soon as I switch to battery power, the laptop crashes, so I can only use mains power. The company I bought it from stopped taking my calls and wouldn't replace it after they replaced it once, so I'm stuck with it. And of course, only one ram slot is working, so I can't even use my original stick in the first slot, which would shift the dodgy stuff away from the lower system area.
    My power supply failed at the weak spot and caught fire. I managed to break apart the power supply and recable it so I didn't have to buy a new power supply, although the connection at the laptop end is loose (all the more fun that as soon as power is lost, the laptop crashes - see above). The power supply is held together with gaffa tape. Silver gaffer tape though, so it's still kind of 'Appley"...
    My internal hard drive is dying - four or five times now it clicks and won't power up, causing the laptop to die.
    One foot has fallen off (but glued back on).
    The lid is warped.
    The hinge is loosish.
    The S-Video adaptor cable is intermittent.
    But aside from all that, I have looked after it well, and I love it to death. Just as well, because it doesn't look like it will be that long...
    But it still "just works". Apart from the battery power obviously. And the ram slot. And the ram. And the screen. And the hard drive. And the firewire ports. And the feet.
    But everything apart from the main board, the screen, the case, the hard drive and the power supply works fine. So thats... er..
    Hmm.

  • Help with frozen process, retry delay and transaction rolled back

    Hi all,
    </br>
    </br>
    Is there a way to create a JPD that will be able to retry a specific logic for several times with <b>delay</b> in between and <b>freeze</b> on the last retry. Also, at the same time, <b>not rollback</b> any database commits?
    </br>
    </br>
    I have tried several ways to approach this but did not work.
    </br>
    </br>
    1) create a JPD with transaction block with start node = "<b>freeze on failure</b>". Set retry count and delay in the transaction block. The outcome is, the JPD freezes, retries correctly, unfreezed properly, <b>but all DB transactions are rolled back</b>
    </br>
    </br>
    2) create a JPD without transaction block, and set start node with "<b>freeze on failure</b>", group the nodes that I would like to perform retry and in the <b>exception path</b> add in the retry count. Use <b>timer</b> in the exception path to introduct the delay. The outcome of this is: JPD freezes, retries correctly, <b>unfreezed INCORRECTLY</b> (when trying to unfreeze this process, it will start at the ontimeout method of the timer and does not start from the beginning of the jpd), DB transactions are commited correctly
    </br>
    </br>
    Any help or suggestions would be much appreciated...
    </br>
    Thanks!
    </br>
    </br>
    Carol

    The issue may be due to the transaction timeout, verify the configured timeouts and the processing time of the process B.
    Try increasing Sync Max Time Out and the other timeouts accordingly and test it.
    Refer the below URL for the details of configuring the timeouts.
    http://www.albinsblog.com/2011/11/oracle-soa-11g-configure-transaction_20.html
    Regards
    Albin I

Maybe you are looking for

  • My Macbook is 2 years old and I have yet to see the wonders of Apple...

    Hello. Maybe someone can help me with my troubles here. I bought my Macbook a year and a half ago, it will be two years in June. The first night I took it out of the box, something happened to the hard drive. I took it into the genius bar and they ha

  • Error While doing KO88

    Hi All While doing KO88 (internal order settlement from AUC to Asset ) getting the error saying, Even though all the GL are maintained Account 'Acc.dep. accnt.for ordinary depreciation' could not be found for area 01 Message no. AU133 Diagnosis When

  • MIGO GR of sub-contracting

    Hi Guys When I try to GR a PO with reference to a Sales order I got following error Sales order stock 1500020 000022  does not exist, can anyone tell me how to correct this I have created a PO with Account assignment category M and Item category L fo

  • How to force logout of portal user

    Hi all, we're currently facing trouble with portal users being "locked" in the portal. They are not locked in the ume sense, but when trying to logon they are only able to see navigation framework, and no content. The only content we're using in the

  • How to find Authorized User

    Can anybody say how to find the user with a specific  authorization given the athorisation object and values. Regds Thiru