Logic 8 Korg legacy not working

Hey Guys,
I have a 2.4 intel dual core2 macbookpro and using logic 8 and the korg legacy does not vaildate
at all, is anyone having the same problem? and i have the latest updates and still nothing.
any help would be great.
chers dale

problem solved:
KORG Legacy Collection - ANALOG EDITION 2007 is needed for validation to pass.
It is not a free update .
you will also need a syncrosoft usb key to authorize the software.
upon payment you get an automatic mail from Korg with codes that you dwl to your soft on your USB key using a wizard in the license syncrosoft control center
.there's a monopoly plug in as bonus for your money.I installed and validated it .

Similar Messages

  • Logic Pro X is not working with nanoPAD2

    Hello,
    I bought the nanopad2, I am using it with Logic Pro X and I am having some strange situation, basically Logic is not respecting the changes that I do in the Korg Kontrol Editor, for example if I set in the Kontrol Editor that the first pad is D1 note when I press that pad Logic interprets that the note is A#1.
    I thought that maybe the problem was the device but I have tested it in Reaper and it works perfectly.

    Hi Guys, thanks but I have found the solution. Basically the issue was due a wrong configuration on Logic, in order to set up for use it with nanoPAD2 you have to go to: Logic Pro X -> Preferences -> Display -> Display Middle C as: G4 (Roland).
    And it is all, the issue was fixed.
    Thanks for your help!!

  • Abap code Logic for splitting is not working

    Hi,
    I have a requirement to split a single amount and product into several parts. so far my logic is not working as only the first row is being fetched.
    TYPES: BEGIN of map_tab,
             ZPRODH4 TYPE NEWMAPPINGTABLE-/BIC/ZNEW_MP,
             ZSPRATIO TYPE NEWMAPPINGTABLE-/BIC/ZSP_RATIO,
             ZMATERIAL TYPE NEWMAPPINGTABLE-MATERIAL,
           END OF map_tab.
    Data:IT_MAP_TAB TYPE HASHED table of MAP_TAB with unique Key ZPRODH4,
         wa_it_map_tab like line of IT_MAP_TAB.
    Data rp TYPE _ty_s_TG_1.
    LOOP AT RESULT_PACKAGE into rp.
    Clear wa_it_map_tab.
    read table IT_MAP_TAB into wa_it_map_tab with table key ZPRODH4 =
    rp-prodh4.
    IF sy-subrc EQ 0.
    select SINGLE /BIC/ZNEW_MP /BIC/ZSP_RATIO MATERIAL into corresponding
    fields of wa_it_map_tab from NEWMAPPINGTABLE
    where  PRODH4 = rp-PRODH4.
    IF sy-subrc EQ 0.
      rp-PRODH4 = wa_it_map_tab-ZPRODH4.
      rp-AMOUNT = rp-AMOUNT * wa_it_map_tab-Zspratio.
      rp-MATERIAL = wa_it_map_tab-ZMATERIAL.
    ENDIF.
    ENDIF.
    MODIFY RESULT_PACKAGE FROM rp.
    ENDLOOP.
    <br><br>
    This is how my tables looks like
    Source Table
    PROD                                       AMOUNT
    900006600999                          1000
    400004400000                           500
    NEW MAPPING TABLE
    PROD                                      NEWPROD                      MATERIAL                             SPLITRATIO
    900006600999                         1000066001111                    7000                                         0.5
    900006600999                         1000066002222                    7001                                         0.4
    900006600999                         1000066003333                    7002                                         0.1
    OLD MAPPING TABLE
    PROD                              MATERIAL
    4000044000000               7100
    TARGET TABLE
    PROD                        PROD3               MATERIAL        AMOUNT
    1000066001111         100006600            7000                 500            
    1000066002222         100006600            7001                 400          
    1000066003333         100006600            7002                 100
    4000044000000         400004400            7100                 500

    Hi,
    I rewrote the code the like this and it is still not working as the new value is not being fetched.
    {* TABLES: ...
    Defining tables
    Tables: /BIC/OLDTABLE,/BIC/NEWTABLE.
    $$ end of global - insert your declaration only before this line -
    The follow definition is new in the BW3.x
    TYPES:
    BEGIN OF DATA_PACKAGE_STRUCTURE.
    INCLUDE STRUCTURE /BIC/CS8ZSEM_TC03.
    TYPES:
    RECNO LIKE sy-tabix,
    END OF DATA_PACKAGE_STRUCTURE.
    DATA:
    DATA_PACKAGE TYPE STANDARD TABLE OF DATA_PACKAGE_STRUCTURE
    WITH HEADER LINE
    WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    New Material table
    DATA: BEGIN OF I_S_NEWTAB,
    PRODH4 TYPE /BIC/NEWTABLE-PRODH4,
    /BIC/ZNEW_MP TYPE /BIC/NEWTABLE-/BIC/ZNEW_MP,
    /BIC/ZSP_RATIO TYPE /BIC/NEWTABLE-/BIC/ZSP_RATIO,
    MATERIAL TYPE /BIC/NEWTABLE-MATERIAL,
    END OF I_S_NEWTAB.
    Data: i_t_newtab LIKE TABLE OF I_S_NEWTAB.
    *Old Material table
    DATA: BEGIN OF I_S_OLDTAB,
    PRODH4 TYPE /BIC/OLDTABLE-PRODH4,
    MATERIAL TYPE /BIC/OLDTABLE-MATERIAL,
    END OF I_S_OLDTAB.
    DATA: i_t_oldtab like table of I_S_oldTAB.
    data: e_s_result type STANDARD TABLE OF DATA_PACKAGE_STRUCTURE WITH
    HEADER LINE
    WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    data: e_t_result type STANDARD TABLE OF DATA_PACKAGE_STRUCTURE WITH
    HEADER LINE
    WITH NON-UNIQUE DEFAULT KEY INITIAL SIZE 0.
    data: amount type DATA_PACKAGE_STRUCTURE-/BIC/AMOUNT.
    data: CUSTSOLD type DATA_PACKAGE_STRUCTURE-/BIC/CUSTSOLD.
    selecting data from new table
    Select PRODH4 /BIC/ZNEW_MP /BIC/ZSP_RATIO MATERIAL FROM /BIC/NEWTABLE
    into corresponding fields of table i_t_newtab.
    SORT i_t_newtab by PRODH4.
    Selecting data from old material table
    Select PRODH4 MATERIAL FROM /BIC/OLDTABLE into corresponding fields
    of table i_t_oldtab.
    SORT i_t_oldtab by PRODH4.
    LOOP AT DATA_PACKAGE INTO e_s_result.
    read table i_t_oldtab into i_s_oldtab with key PRODH4 =
    e_s_result-PRODH4.
    if sy-subrc EQ 0.
    MOVE i_s_oldtab-PRODH4 to e_s_result-PRODH4.
    MOVE i_s_oldtab-PRODH4(14) to e_s_result-PRODH3.
    MOVE i_s_oldtab-MATERIAL to e_s_result-MATERIAL.
    APPEND e_s_result to e_t_result.
    ELSE.
    LOOP AT i_t_newtab into i_s_newtab where PRODH4 = e_s_result-PRODH4.
    amount = i_s_newtab-/BIC/ZSP_RATIO * e_s_result-/BIC/AMOUNT.
    CONCATENATE DATA_PACKAGE-SOLD_TO i_s_newtab-PRODH4(10) into AMOUNT.
    MOVE i_s_newtab-/BIC/ZNEW_MP to e_s_result-PRODH4.
    MOVE i_s_newtab-MATERIAL to e_s_result-MATERIAL.
    MOVE i_s_newtab-/BIC/ZNEW_MP(14) to e_s_result-PRODH3.
    MOVE amount to e_s_result-/BIC/AMOUNT.
    MOVE ZASTUOTE to e_s_result-/BIC/CUSTSOLD.
    APPEND e_s_result to e_t_result.
    ENDLOOP.
    ENDIF.
    ENDLOOP.
    REFRESH DATA_PACKAGE.
    MOVE e_t_result to DATA_PACKAGE[].}

  • Korg Nanopad not working in Garageband since upgrading to Lion

    I've just upgraded to Lion and the new update to Garageband but have found that my Korg Nanopad's not working anymore. I've got a Nanokey and that's fine but not the Nanopad. I've Downloaded and installed all new drivers etc... but still no luck and strangely now I can only get Mac to recognise one midi input at one time where I used to get the ability to run two at once in Snow Leopard. I get the light on the unit and when I tap the XY pad, I see a little dot appear in Garagebands LED area but none of the pads are making sounds like they used to. Not sure if it's a note mapping issue but have hit the frustrated level now.
    I'm hoping someone can shed some light as it used to be pluginplay goodness.
    Many thanks.

    Have you tried using the editor? to set the notes on the Nano? Maybe something in your set up got wiped in the updates?

  • Soundtrack Pro, with Logic Studio. app will not work, while Garage Band is present on my iMac?

    Still new to Logic Pro. Got the Soundtrack Pro when i bought the Logic Studio. am i to understand that this app will not work, while Garage Band is present on my iMac?
    if this is true, i'd welcome any suggestions.  do i have to delete GarageBand on current machine which has Logic Pro?
    appreciate any help
    thanks,

    My MacPro w/ OSX 10.6.8 runs GarageBand, SoundtrackPro and Logic 9 (Express) without issues.
    Everything was installed fresh - ie no overwrite OS upgrades and no app version overwrite upgrades.
    Just so we are clear - an UPGRADE would be from OSX 5 to 6 or from Logic 8 to 9 and involves a purchase. UPDATES are those decimal increments - 10.6.7 to 10.6.8  or Logic 9.1.3 to 9.1.6 that are free.
    Sometimes the sequence of installs can make a difference.
    Good luck,
    x

  • Why does the logic pro 9 upgrade not work on OS X 10.8.4 ?

    Just decided to upgrade to logic 9 from my 8 (an upgrade from 6!) but I also have Protools on my computer (dont hate). Tools 11 needs 10.8.4 but the logic 9 update refuses to work with 10.8.4 ...BTW pro 8 is still working well on my system, but 9 has some additional cool featurs etc
    Additionally an upate to Logic X loses all my 32bit plugins so...I am  staying with 8/9 for a while ..any help to get 9 functional??

    It is the installer that's quitting, or Logic Pro when you try to launch it? If the latter, download all the available updates, either through Software Update or the standalone downloaders;
    http://support.apple.com/downloads/#logic%20pro%209
    and apply them before attempting to launch Logic. That might work better.
    Regards.

  • Script Logic in BPC is not working properly

    Hi All,
    I have the BPC Microsoft version 7.0.114. I am trying to create a script logic to calculate price x units.
    I have an application called GYP with the following dimensions:
    PL (Account type) in this dimension are the units
    Time
    Category
    Entity
    Product
    RptCurrency
    I have another application called PRICE with the following dimensions:
    Price  (Account type) in this dimension are the prices
    Time
    Category
    Entity
    Product
    RptCurrency
    The script logic i created in the GYP application is as follows:
    *XDIM_MEMBERSET PL="Units"
    *XDIM_MEMBERSET PRODUCT=<ALL>
    *XDIM_MEMBERSET ENTITY=<ALL>
    *XDIM_MEMBERSET CATEGORY="Budget"
    *LOOKUP PRICE
    *DIM PR:PRICE ="PRICES"
    *ENDLOOKUP
    *WHEN PL
    *IS "Units"
    *REC(FACTOR=LOOKUP(PR), PL="Revenues")
    *ENDWHEN
    *COMMIT
    I also put in the default.lgf :
    *INCLUDE UnitsxPrice.LGF
    *COMMIT
    I have loaded data for units and price only for one product to validate the script logic but I'm not getting any calculated value in the revenues element.
    I have read a lot of documentation about script logic but i haven't found which could be the problem.
    Please, could you help me to know what i am missing to?
    Thanks in advance for all your help.
    Regards,
    Luisana

    Hi,
    Your script logic looks fine to me. However, I would request you to make a small change in your default logic.
    Lets say that you created the script logic with the name CALCULATION.LGF, then the default logic should look like below:
    *INCLUDE CALCULATION.LGF
    Notice that the name of the script logic should be consistent (and I have removed the commit statement from the default logic).
    Hope this helps.

  • HT4528 i wont know  i change logic board after button not working

    i change logic board after button not working

    If you opened the phone, you've rendered your phone unsupportable. The iPhone is not user servicable and Apple does not sell iPhone parts.

  • Help! Logic Express 8 does not work on my Mac Pro with OS 10.5.1

    Hello, I hope somebody around here is able to help me.
    I have got a new Mac Pro with one Quad core processor since yesterday and it works fine except for Logic Express 8 (version 8.0.1). Whenever I start Logic the program crashes as soon as "Core Audio initialisieren" is shown in the display. I have tried to reinstall the program, deleted it completely and installed it again. It is always the same.
    Has anyone else experienced this problem? What can I do about it? I am a musician and I really need Logic Express to run.

    Confused. 10.6 is DVD based. Only Lion and above are downloads.
    And best install is not to upgrade. Do a clean install  - on another drive.
    Corrupt partition tables or bad sectors or no room to adjust the partitions or the directory is corrupt.
    ERASE the drive if Repair Disk didn't work.

  • After upgrading to Lion Logic Pro 9 is not working right

    I have no idea what is going on, I was working on a project this evening, did a bunch of work as a matter of fact, I always hit save after every litte bit of work I do, it's a force of habit now.
    When I go to re-open my project I get some kind of error message that Logic can't open my file. I close out of that and open project again, this time it opens but it was the project before all the work that I had recently done. Anybody have any idea what could have happened and how can I possibly restore the work that I had done.
    Even since I upgraded to Lion, Logic has not been working the same, everything time I open it, it opens 2 instances of the project I'm working on, what is that about?

    There are apparently a lot of problems with Logic 9 and Lion. A lot of Logic users don't go to a new system at least for several months after it comes out, or until the X.1 version comes out. I go to this site a lot for help with Logic.
    www.logicprohelp.com
    They are very knowledgeable and helpful. I've seen quite a few threads about Lion, but haven't read many of them, since I'm staying away for a while.

  • Logic 9.0.0 NOT WORKING with mountain lion update

    Hey guys,
    I was running on snow leopard 10.6.8 prior to this evening and I had logic 9.0.0. I didn't get it from the appstore, though. When I try to open logic it shows the following message:
    I really need to have logic working.  I did do a back up with time machine before I downloaded the update for mountain lion, so it was running on snow leopard and logic was working fine when I backed everything up. But i'd rather not downgrade since I already spent the time and money to upgrade it would just be another hassle, and since this is the first time I've upgraded my mac I don't know how I would upgrade again once I downgraded.
    The most favorable solution would be if I could keep mountain lion but have logic 9 still working. please HELP thanks!

    If you or, any one else is having the same problem, I had the same. It transpired that I hadn't installed Logic in to my applications folder, so I transfered my version of Logic to the aplications folder, downloaded the update from apples website (google it) and I was away.

  • Logic X movie frame not working correctly

    Hi,
    I'm using Logic X to score to picture.
    Whenever I drag the timline/playhead back or forward in the arrange window, the movie seems to freeze then skip a few frames - it's not displaying all the frames,
    The result is that I can't score accurately, I'm just guessing as the where specific sync points are.
    Anyone else having this problem?
    Thanks.

    Hi,
    I've been taking a bit of a break from music and just got back into things, so apologies if I'm duplicating a topic; just can't be bothered trawling through endless searches.
    I've had a Logic X app update which I dutifully performed.
    I've just loaded up my first project of 2014...and..
    I CAN'T BELIEVE THEY HAVEN"T SORTED THE MOVIE PROBLEM OUT!!!!
    Apologies for shouting, but my movie is lagging and now gets stuck unless I close down and re-load? Don't they listen at Apple?
    Is all this gear meant for kids playing about, or is it for serious working musicians.
    So had it with Apple!
    NO...I'm not buying a new Mac Pro; because Apple cannot be trusted to produce serious professional products.
    Rant over.
    Thanks.
    p.s. further apologies if this problem has already been fixed and I've missed it. I just haven't got time seaching for the cure to something that should already work.

  • Logic express 9 will not work on Lion

    and the update cannot find the app in Applications. also the icon of LE9 has a grey circle with a line through it
    Please help!

    Hi
    You need to be running version 9.1.4 or later with Lion OS
    http://support.apple.com/kb/HT4807
    For the updaters to work, the Logic Express application must be:
    a) Named "Logic Express" with no numbers or spaces at the end of the name
    b) Inside the Applications folder, but not inside any other subfolder
    CCT

  • Abap Logic for performance tuning not working when using Internal tables

    Hi,
    I wrote this piece of code that is working correctly that is select SUM of cost from DSO where Plant is the same for Sales Items.
    LOOP AT RESULT_PACKAGE INTO rp.
    SELECT SUM( /N/S_STRDCOST ) FROM /N/ADSP_DPIT00 INTO
    rp-/N/S_STRDCOST
    WHERE /N42/S_SALESITEM = rp-/N42/S_ITEMID AND /N42/S_PLPLANT EQ
    rp-/N42/S_SOURCE.
    MODIFY RESULT_PACKAGE FROM rp.
    Clear rp.
    ENDLOOP.
    Now I try to rewrite it for performance tunning using internal table  but I am getting 0 values. can't figure out whats the problem and been struggling fixing it.
    TYPES : begin of ty_DSO_TABLE,
             /N42/S_STRDCOST TYPE /N/ADSP_DSPC00-/N/S_STRDCOST,
             /N42/S_ITEMID TYPE /N/ADSP_DSPC00-/N/S_ITEMID,
           end of ty_DSO_TABLE.
    DATA: it_DSO_TABLE type hashed table of ty_DSO_TABLE with unique key
    /N/S_ITEMID,
         wa_DSO_TABLE type ty_DSO_TABLE.
    Field-symbols:  <rp> TYPE tys_TG_1.
    LOOP AT RESULT_PACKAGE assigning <rp>.
      clear wa_DSO_TABLE.
    Read table IT_DSO_TABLE into wa_DSO_TABLE with table key /N/S_ITEMID
      = <rp>-/N/S_ITEMID.
      if sy-subrc ne 0.
          select SUM( /N/S_STRDCOST )  into CORRESPONDING
          FIELDS OF wa_DSO_TABLE from
          /N/ADSP_DPIT00 WHERE /N/S_SALESITEM =  <rp>-/N/S_ITEMID AND
          /N/S_PLPLANT EQ <rp>-/N/S_SOURCE.
         if sy-subrc eq 0.
              <rp>-/N/S_STRDCOST = wa_DSO_TABLE-/N/S_STRDCOST.
         endif.
    endif.
    ENDLOOP.
    Any idea whats wrong with the code
    thanks

    Hi Vaidya,
    According to the code which you have written, there is no value in table IT_DSO_TABLE when you are trying to read the values.And after the read statement you have given a condition for sy-subrc. Hence the select statement is actually not even getting executed. *Also you have not assigned the final value back to the ResultPackage.*_
    So Kindly correct your code as follows:
    Data: wa_dso type ty_DSO_TABLE.
    LOOP AT RESULT_PACKAGE assigning <rp>.
    clear wa_DSO_TABLE.
    select SUM( /N/S_STRDCOST ) into CORRESPONDING
    FIELDS OF wa_DSO_TABLE from
    /N/ADSP_DPIT00 WHERE /N/S_SALESITEM = <rp>-/N/S_ITEMID AND
    /N/S_PLPLANT EQ <rp>-/N/S_SOURCE.
    if sy-subrc eq 0.
    <rp>-/N/S_STRDCOST = wa_DSO_TABLE-/N/S_STRDCOST.
    MODIFY RESULT_PACKAGE FROM <rp>.
    endif.
    ENDLOOP.
    Hope this helps you.
    Regards,
    Satyam

  • Logic Remote iPad app not working

    I've have Logic Pro X installed on Mountain Lion and the latest IOS on an iPad (3rd gen) running Logic Remote but can't get them to work together.
    After I choose the Mac pop up boxes keep appearing with either an option to re-connect to Mac or the attached error. (In the backround I can see the clock ticking that's synced with the Logic project playing on the Mac?
    I've never had any problems with my wi fi and all the other apps work fine (including other controller apps that communicate with Logic Pro 9?)
    I've tried removed the iPad from the Control Surface Setup page in Logic Pro X and selecting it again from the iPad app (which re-adds it correctly into the Setup in Logic Pro X)
    Any ideas?
    Thanks,
    A.

    Amazingly this worked, thanks. I'd already removed and let it add automatically a few times and it didn't work properly even after authorizing it.
    I removed it from the setup and then added it back in manually myself (New, Install, Apple Logic Remote).
    Then I ran the iPad app, and I ended up with 2 Logic remotes in the Control Surfaces Setup. The iPad logic remote wasn't coming up with any errors but all the faders were on 0 when they weren't on the Logic Pro X on the mac.
    I then deleted the first Logic Remote in the Control Surfaces Setup and it seems to work. Thanks!

Maybe you are looking for