SQL query urgent helps needed!!!

Hi all,
I got the following query :-
SELECT RH.REQUEST_NUMBER,     
     MSIK.CONCATENATED_SEGMENTS,
MSIK.DESCRIPTION,
     RL.FROM_SUBINVENTORY_CODE,
     RL.UOM_CODE,
     RL.QUANTITY,
PP.FULL_NAME     ,
     M.TRANSACTION_QUANTITY
FROM     MTL_TXN_REQUEST_HEADERS RH,
MTL_TXN_REQUEST_LINES RL,
     MTL_SYSTEM_ITEMS_KFV MSIK,
FND_USER FU,
PER_PEOPLE_V7 PP,
          ( SELECT MSIK2.CONCATENATED_SEGMENTS, MOQ.SUBINVENTORY_CODE, SUM(MOQ.TRANSACTION_QUANTITY)
          FROM MTL_ONHAND_QUANTITIES MOQ, MTL_SYSTEM_ITEMS_KFV MSIK2
          WHERE MSIK2.INVENTORY_ITEM_ID = MOQ.INVENTORY_ITEM_ID
          AND MSIK2.ORGANIZATION_ID = 8
          AND MOQ.SUBINVENTORY_CODE LIKE 'ST%'
          GROUP BY MSIK2.CONCATENATED_SEGMENTS, MOQ.SUBINVENTORY_CODE) M
WHERE     
RH.HEADER_STATUS IN(3,7,8)
AND RH.MOVE_ORDER_TYPE IN(1,2)
and rh.header_id = rl.header_id
AND MSIK.INVENTORY_ITEM_ID = RL.INVENTORY_ITEM_ID
AND MSIK.ORGANIZATION_ID = 8
AND RL.FROM_SUBINVENTORY_CODE LIKE 'ST%'
AND RH.CREATED_BY = FU.USER_ID
AND FU.EMPLOYEE_ID = PP.PERSON_ID
However, when I try to run I got the invalid column for m.transaction_quantity ??? why? does it b'cos of the group sum that I used ?
My intention of this query to display the sum of total qty from the mtl_onhand_quantities table.
Please helps.
Thanks.
Rgds
Lim

sorry if its too late.....
my guess is alias the SUM(MOQ.TRANSACTION_QUANTITY) in the sub-query table (M) as TRANSACTION_QUANTITY.
-------- code snippet---------
FND_USER FU,
PER_PEOPLE_V7 PP,
( SELECT MSIK2.CONCATENATED_SEGMENTS, MOQ.SUBINVENTORY_CODE,
SUM(MOQ.TRANSACTION_QUANTITY) TRANSACTION_QUANTITY <------------------------------------This is important
FROM MTL_ONHAND_QUANTITIES MOQ, MTL_SYSTEM_ITEMS_KFV MSIK2
WHERE MSIK2.INVENTORY_ITEM_ID = MOQ.INVENTORY_ITEM_ID
AND MSIK2.ORGANIZATION_ID = 8
AND MOQ.SUBINVENTORY_CODE LIKE 'ST%'
GROUP BY MSIK2.CONCATENATED_SEGMENTS, MOQ.SUBINVENTORY_CODE) M
WHERE
RH.HEADER_STATUS IN(3,7,8)
AND RH.MOVE_ORDER_TYPE IN(1,2)
--------------code snippet ends------------------------
hope this helps,

Similar Messages

  • Database connection to MS SQL 2005 (URGENT Help Needed)

    Hi all,
    Does anyone know how to connect my adobe form to MS SQL 2005?
    I have this code:
    try {
         InitialContext initialContext = new InitialContext ();
         DataSource dataSource = (DataSource) initialContext.lookup ("jdbc/MyAlias");
          java.sql.Connection connection = dataSource.getConnection ();
    } catch (SQLException e) {
         // handle exception
    } catch (NamingException e) {
    // handle exception
    Other than these, what else do i need to do inorder to get my database connection up?
    And after my database connection is up, how do i test to check if my database connection is up or not?
    How do i extract the information from the database and put them onto the textfields/dropdownlists on my form?
    Thanks In Advance

    Hi Mel,
    After implementing the codes and modifying them, some of them are underlined, why is this so? =X
    Or are u willing to exchange msn so i could send u the screenshot instead?
    Thanks In Advance
    (Sorry im not that good in this)
    (I shall underline the areas which represents the red underline in my web dynpro)
         //Code for database connection.
           InitialContext ctx = new InitialContext();
           DataSource ds = (DataSource)_ctx.lookup("jdbc/JXDataSource");_
           Connection conn = ds.getConnection();
           Statement st = null;
           ResultSet rs = null;
           IPrivateDetailed_Claims_FormView.IFillDataElement dataEle = null;
           st = conn.createStatement();
         //     Execute the appropriate SQL query
           rs = st.executeQuery("SELECT NAME WHERE VENDORCODE='9000116L' ");_     
           while (rs.next())       {
         //     Code that will populate your VN based on the data obtained in the ResultSet.
           dataEle = wdContext.createFillDataElement();
           dataEle.setName(_rs.getString(1)_);
          // dataEle.setAge(rs.getInt(2));
          // dataEle.setAddress(rs.getString(3));
           //wdContext.nodeFillData.addElement(dataEle);
           //  Close the connections
           rs.close();
           st.close();
                      conn.close();
    Edited by: JingXuan Lim on Jan 25, 2008 4:59 AM
    Edited by: JingXuan Lim on Jan 25, 2008 5:00 AM

  • Query urgent help need

    hi friends,
    Could u please help me how to do this
    tables : knb1,     "customer master (companycode)
             kna1,     "genaral data in customer master
             knvp.     "customer master partener functions
            zvarv.    "Program Hard Coded Values support table
           TYPE-POOLS DEFINATION
    type-pools : slis.
           TYPES DECLARATION
          Customer Master Company code Data
    types : begin of t_knb1,
              kunnr like knb1-kunnr,
              akont like knb1-akont,
            end of t_knb1.
    data : i_knb1 type t_knb1 occurs 0 with header line .
          Customer Master
    types : begin of t_kna1,
              kunnr like kna1-kunnr,
              name1 like kna1-name1,
              stras like kna1-stras,
              ort01 like kna1-ort01,
              stcd1 like kna1-stcd1,
              pstlz like kna1-pstlz,
            end of t_kna1.
    data  : i_kna1 type t_kna1 occurs 0 with header line.
          Customer Partner Functions
    types : begin of t_knvp,
              kunnr like knvp-kunnr,
              vkorg like knvp-vkorg,
              parvw like knvp-parvw,
              kunn2 like knvp-kunn2,
            end of t_knvp.
    data : i_knvp type t_knvp occurs 0 with header line.
          Output data
    types : begin of t_output,
              recordtype      type c,
              soldtocust(10)  type c,
              payer(10)       type c,
              sequence(5)     type n,
              custname(35)    type c,
              custaddress(35) type c,
              custcity(35)    type c,
              taxid(16)       type c,
              postalcode(5)   type c,
              branch          type c,
              delivery(3)     type c,
            end of t_output.
    data : i_output type t_output occurs 0 with header line.
          ZVARV Table
    *types : begin of t_zvarv,
             zobject1 like zvarv-zobject1,
             zobject2 like zvarv-zobject2,
             zseqnumb like zvarv-zseqnumb,
             zobjval  like zvarv-zobjval,
           end of t_zvarv.
    *data : i_zvarv  type  t_zvarv occurs 0 with header line.
          Error messages and total records
    types : begin of t_error_log,
              message(200) type c,
            end of t_error_log.
    data : i_error_log type t_error_log occurs 0 with header line.
         Field catalog
    data : t_fieldcat_tab type slis_t_fieldcat_alv with header line.
    Variables
    data : "v_aufsd like i_zvarv-zobjval,   "Central order block for cust
           v_knb1 type t_knb1,             "Customer master company code
           v_kna1 type t_kna1,             "Customer master
           v_knvp type t_knvp,             "Customer masterpartenerfunctions
           v_output type t_output,         "Output data
           v_error_log type t_error_log,   "Error data
           v_sequence(5) type n,           "Total records
           v_line type i,                  "Message
           v_count type i,                 "Counter for KNA1 records
           v_count1 type i,                "Counter for KNVP records
           v_result(100) type c,           "Totals for KNA1
           v_result1(100) type c,          "Totals for KNVP
           v_vkorg like knvp-vkorg.        "Message for Validation
    Constants
    data : c_program(30) type c value 'ZSDI0215', " Program Name
           c_parvw_rg    like  knvp-parvw value 'RG', "Partner type
           c_aufsd(2)    type c value 'CD'.    "Central order block for Cust
                       Selection-screen
    selection-screen begin of block b1 with frame title text-001.
    parameters       : p_vkorg like knvp-vkorg obligatory. "Sales Org
    select-options   : s_akont for knb1-akont obligatory default
                           '0001050100'.      "Reconciliation Account
    selection-screen end of block b1.
    selection-screen begin of block b2 with frame title text-002.
    parameters       : p_alv as checkbox,
                       p_df as checkbox.
    selection-screen end of block b2.
    selection-screen begin of block b3 with frame title text-003.
    parameters : p_lfile like  filetextci-fileintern
                   default 'Z_IO01989_CUSTOMER_MASTER_DATA', " Logical file
                 p_pfile like  rfpdo-rfbifile.               " Physical File
    selection-screen end of block b3.
         At selection-screen
    at selection-screen on p_vkorg.
    Validation of Sales Organization
      select single vkorg
        into v_vkorg
        from tvko
        where vkorg = p_vkorg.
      if v_vkorg is initial.
         message e045 with text-030.
      endif.
         Start-of-selection
    start-of-selection.
    Fetch data
      perform get_data.
    Processing the data
      perform process_data.
        End-of-Selection
    end-of-selection.
      if p_alv eq 'X'.
    Field catalog
        perform f_prepare_fieldcat.
    Disply  alv report
        perform f_display_report.
    Disply error log
        perform f_error_log.
    elseif p_df eq 'x'.
    Disply logical file & physical file
        perform f_logical_file.
        perform f_physical_file.
      else.
    Display the list
        perform f_list_display.
    Disply logical file & physical file
       perform f_logical_file.
       perform f_physical_file.
      endif.
         Form  get_data
         Fetch data and store in internal tables
    form get_data .
    Get zvarv data.
      perform get_zvarv.
    Get knb1 data
      perform get_knb1.
    Get kna1 data
      perform get_kna1.
    Get knvp data
      perform get_knvp.
    endform.                   " get_data
         form  get_zvarv
         zvarv data
    form get_zvarv .
    Fetch data from zvarv.
    select zobject1 zobject2 zseqnumb zobjval
       from zvarv
       into table i_zvarv
      where zobject1 eq c_program.
    sort i_zvarv by zobject2.
    endform.                    " get_zvarv
         form  get_knb1
         Get KNB1 data
    form get_knb1 .
    Fetch data from knb1.
      select kunnr akont
        from knb1
        into table i_knb1
       where akont in s_akont.
      describe table i_knb1 lines v_line.
    endform.                                                    " get_knb1
          Form  get_kna1
          Get KNB1 data
    form get_kna1 .
    Fetch data from kna1.
      select kunnr name1 stras ort01 stcd1 pstlz
        from kna1
        into table i_kna1
        for all entries in i_knb1
       where kunnr = i_knb1-kunnr and
       aufsd ne 'cd'."v_aufsd.
    endform.                                                    " get_kna1
          Form  get_knvp
          Get KNVP data
    form get_knvp .
    Fetch data from knvp
      select kunnr parvw kunn2 vkorg
        from knvp
        into table i_knvp
        for all entries in i_knb1
       where kunnr = i_knb1-kunnr
       and vkorg = p_vkorg
       and parvw = c_parvw_rg.
    endform.                    " get_knvp
          Form  process_data
          Processing output data
    form process_data .
    Get AUFSD value from ZVARV
      perform zvarv_read.
    loop at i_knb1.
        read table i_kna1 with key kunnr = i_knb1-kunnr.
        if sy-subrc ne 0.
         concatenate: 'in kna1 no record found for Customer number'
                       i_knb1-kunnr
                       into v_result separated by space.
          move v_result to v_error_log-message.
          append v_error_log to i_error_log.
          v_count = v_count + 1.
        else.
        move :  i_kna1-name1 to i_output-custname,
                i_kna1-stras to i_output-custaddress,
                i_kna1-ort01 to i_output-custcity,
                i_kna1-stcd1 to i_output-taxid,
                i_kna1-pstlz to i_output-postalcode.
    append i_output
    endif.
       loop at i_knvp where kunnr eq knb1-kunnr.
        read table i_knvp  with key kunnr = i_knb1-kunnr.
        if sy-subrc <> 0.
          concatenate : 'in knvp no record found for customer number'
                         v_knb1-kunnr
                         into v_result1 separated by space.
          move v_result1 to v_error_log-message.
          append v_error_log to i_error_log.
          v_count1 = v_count1 + 1.
         else.
      Move the knvp data to output
         move : i_knvp-kunnr to i_output-soldtocust,
                i_knvp-kunn2 to i_output-payer.
    append i_output
    endif.
         endloop.
        v_sequence = v_sequence + 1.
    Move non table related data to output
        move : 'C'          to i_output-recordtype,
                v_sequence  to i_output-sequence,
               '1'          to i_output-branch,
               'ABC'        to i_output-delivery.
    append i_output.
    endif.
    endloop.
    when i execute this one same data is displaying two times
    for example total records is two
    first record displaying two times and second one is displaying two times
    please tell me how to do
    regards
    harshavi

    Hi ,
    first check all APPEND stmts ?. In any report u have to maintain one BASE internal table .
    If u are working on KUNNR level , So maintain one final Internal table with all KUNNRS then Process all the data for final output.
    regards
    prabhu

  • Urgent help needed; Database shutdown issues.

    Urgent help needed; Database shutdown issues.
    Hi all,
    I am trying to shutdown my SAP database and am facing the issues below, can someone please suggest how I can go about resolving this issue and restart the database?
    SQL> shutdown immediate
    ORA-24324: service handle not initialized
    ORA-24323: value not allowed
    ORA-01089: immediate shutdown in progress - no operations are permitted
    SQL> shutdown abort
    ORA-01031: insufficient privileges
    Thanks and regards,
    Iqbal

    Hi,
    check SAP Note 700548 - FAQ: Oracle authorizations
    also check Note 834917 - Oracle Database 10g: New database role SAPCONN
    regards,
    kaushal

  • URGENT HELP NEEDED ... Tomcat Realm and JRE1.4 plug-in problem

    I have tried the Security Realm of Tomcat. Since I do not have
    an LDAP server, I decided to use the Tomcat-users.xml file in
    Tomcat\conf directory.
    I added the following lines of code in the web.xml file.
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Entire Application</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <!-- NOTE: This role is not present in the default users file -->
    <role-name>webviewer</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Tomcat Manager Application</realm-name>
    </login-config>
    The <role-name> "webviewer" is added into "Tomcat-Users.xml" as the following:
    <tomcat-users>
    <user name="test" password="password" roles="webviewer" />
    </tomcat-users>
    So, now when we type the url: http://localhost:8080/adbpdbre/default.htm, TOMCAT shows a dialog box asking for UserName: and Password:Now, only when we give the username and password, it shows the page. This is exactly what we want.
    But the problem now is, this default.htm page, has 5 links to 5 applets. The first time that I click on one of these links, the JRE plug of 1.4 shows a dialog again asking for the username and password. Till I dont provide the username and password the system doesnt go ahead and applet doesnt load. I do not want the JRE to ask me for the username/passwords again..How to avoid this ?
    Can you give me some more information on this. Ultimately in the production usage, we will be using LDAP and not Tomcat's memory realm.
    URGENT HELP NEEDED ... I need to get back to my client on this.
    Help would be v. much appreciated.

    In the config file, you 're essentially saying that you want Tomcat to prompt for usr/passw on every request (url-pattern = /*) made by a 'webviewer', and that's exactly what Tomcat is doing.
    Consider using specific url-patterns & roles for resources to be protected. If for now, all you need is to protect the first page, use a more specific url-pattern.
    Just an advice : if you'll be using LDAP in production, do not waste time with Tomcat's Security Realm and the BASIC authentication type, since the two have not much in common. Start reading doc on LDAP, and code a prototype, or even better, a vertical slice of the app (i.e a proof of concept).

  • URGENT HELP NEEDED - iPhone 3Gs no longer detected or charged by MacBook

    My iPhone 3Gs (3.1) has been running fine, until several hours ago today, when I plugged it to my MacBook, the iPhone is no longer detected - it doesn't show up in iTunes, nor it is charged. I tried opening iPhoto, and it wasn't there too. Not with Image Capture too. I tried charging it using the out-of-box wall charger using the same out-of-box USB cable I use for MacBook, and it can be charged without any problem. Then I put it into Recovery mode, and there iTunes can see it. I don't want to restore it before I figure out exactly what went wrong, as I don't want the restore process somehow gets stuck in the middle that the connection is lost again.
    I've tried reinstalled iTunes, including completely removal of Apple Mobile Device Support, as instructed by Apple. But still no luck.
    I've tried switching to another USB port of my MacBook. No luck.
    My iTunes is the latest 9.0.1, and my Mac OSX is 10.6.1. My iPhone is on 3.1, upgraded from 3.0.
    I've read from web that it seems I'm not the only one out there having this problem. But none of them seem having any real working solution.
    Urgent help needed & appreciated. Millions of thanks in advance.
    Gary

    1. I used both cables - theirs & mine ... and on several macs
    2. yes, same cable for wall & mac
    3. as said, i did completely remove & install itunes (incl. apple mobile device support), as instructed on the apple webpage
    anyway, did a restore just now. it seems okay now. but the problem is i have no idea what cause this, and i can't replicate the problem. so i don't know when it will happen again ... maybe a bug with os 3.1 ... others on web said os 3.1 is quite buggy ...

  • Urgent help needed, can I restore N900 Backup file...

    i owned a N900 (now sold out)
    before selling i took backup of contacts from backup restore option in application section
    now i bought a N8 but i m not able to restore my contacts
    1. is there any way to restore them in N8?
    2. if not, can i convert them in TEXT or any readable format
    urgent help needed
    thanks in advance

    The backup procedures built into the phone are only designed for restoring to the same phone (ie: in case or data corruption, software update or repair etc.), they can't usually be used to restore to a phone with a different operating system.
    You should have backed up with Ovi Suite before selling the N900, that would have been able to restore to the N8.

  • Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Thanks for prompt reply, yes we have tried that but have now closed down the browser we where the photos were.
    We haven't sent up time machine, do you know whether there is any roll-back function on a Mac?
    Thanks

  • Urgent help needed with un-removable junk mail that froze Mail!!

    Urgent help needed with un-removable junk mail that froze Mail?
    I had 7 junk mails come in this morning, 5 went straight to junk and 2 more I junked.
    When I clicked on the Junk folder to empty it, it froze Mail and I can't click on anything, I had to force quit Mail and re-open it. When it re-opens the Junk folder is selected and it is froze, I can't do anything.
    I repaired permissions, it did nothing.
    I re-booted my computer, on opening Mail the In folder was selected, when I selected Junk, again, it locks up Mail and I can't select them to delete them?
    Anyone know how I can delete these Junk mails from my Junk folder without having to open Mail to do it as it would appear this will be the only solution to the problem.

    Hi Nigel
    If you hold the Shift key when opening the mail app, it will start up without any folders selected & no emails showing. Hopefully this will enable you to start Mail ok.
    Then from the Mail menus - choose Mailbox-Erase Junk Mail . The problem mail should now be in the trash. If there's nothing you want to retain from the Trash, you should now choose Mailbox- Erase Deleted Messages....
    If you need to double-check the Trash for anything you might want to retain, then view the Trash folder first, before using Erase Junk Mail & move anything you wish to keep to another folder.
    The shift key starts Mail in a sort of Safe mode.

  • IPhone 3G 8GB Crashes when syncing with iTunes. URGENT HELP NEEDED.

    I have latest iTunes and OS on my iPhone 3G...
    Every time i plug my iPhone in it begins to sync and then iTunes will freeze and not respond..
    I have tried re installing iTunes.. I can't reset my iPhone as i can't create a backup..
    URGENT HELP NEEDED PLEASE!

    I don't have an iphone, but if it's anything like my click-wheel ipod, a reset doesn't delete anything.
    It just resets the ipod's operating system, kind of like a PC restart. Did you try this Sleep/Wake button thing mentioned here?
    http://support.apple.com/kb/HT1737
    Maybe it's a podcast of voice memo causing the problem like it did for this person
    http://discussions.apple.com/message.jspa?messageID=10907809#10907809
    That's all I got. You might have better luck on an iPhone forum. Everyone there would probably have one. Like I said, I don't.

  • IPhone 4 reset itself, photos lost -URGENT HELP NEEDED

    Hi there,
    Urgent help needed!!
    Tonight I was taking extremely important photos throughout an event on my iPhone 4, however, my iPhone 4 ran out of battery once I was near a charger I plugged it in and for some reason my iPhone had reset itself. Back up icloud options were from yesterday, but the photos that I was taking at the event are needed urgently. Is there any way possible I can recover the photos that were taken?
    Thanks in advance!!!!

    Slymm71 wrote:
    just had similar problem got email from find my phone saying initiating full phone wipe this cannot be stopped ***? i own the phone from new and registerred in m name but wiped whilst i was using it !!!
    See your other post... 
    https://discussions.apple.com/message/18876037#18876037

  • Computer restarts when ipod is connected urgent help needed

    alright this is weird, I've had my ipod for ages and suddenly I go to plug it in and the computer slows down really really really slow and eventually just turns it self off, restarts and then sits in a black screen. if I leave the ipod plugged into the computer and restart it again it just goes straight back to the black screen, but both my ipod and computer work fine when there not connected. i have the latest version of itunes which seemed to help the first time i tried it actually started to update the ipod but then guess what the computer has another heart attack. urgent help needed please!!!

    if I leave the ipod plugged into the computer and restart it again it just goes straight back to the black screen
    Given this, I'd put it down to a flaky power supply in the computer. Might want to try using another computer or replacing the PSU.

  • User Exit for Material Group...Urgent help needed

    Does anybody have an idea of which user exit can be used to capture the changes made to material group in MM02(Material)..... Urgent help needed...

    See  the below user exit and this will trigger under MM01,MM02 and MM17 Transaction
    Enhancement name : MGA00001
    Function module :EXIT_SAPLMGMU_001
    Include : ZXMG0U02
    Reward Points if it is helpful.
    Thanks
    Seshu

  • Data uload to ODS ending up with an error. URGENT HELP NEEDED!!!!!!

    Hi
    My Sceniro is Full load from ODS1 to 5 other ODS. Iam uploading the data to other 5 ODS by selecting 1 ODS at a time.
    Problem i am facing is upload is ending up with error mesg. Error Mesg are
    <b>Error 8 when starting the extraction program - R3019
    Error in Source System - RSM340
    Req xxx in ODS2 must have QM ststus green before it is activated - RSM1110</b>
    I have seen the the OSS notes for given error no, but they are not applicable to me. what could be the other possible solution.
    In detail tab of the monitor i see red light at Extraction step and Subseq. processing.
    Its quite urgent bcoz this error is occuring in Production system.
    Plzzzz urgent help needed.
    Thanks
    Rohini
    Message was edited by: Rohini Garg

    rohini,
    go to RSA1->Modeling->Source Systems and right-click on your BW system, and click on 'Replicate Datasources'.
    also, go to the ODS that's causing the problem (via RSA1->InfoProvider and go to your ODS), right click and click on 'Generate Export Datasource'.
    one more thing, make sure that all your record/s in the source ODS is active. if you're not sure manage its contents and click on 'Activate'. if there are any entries in the the next screen that comes up, you need to activate it first, then try everything again.
    let me know what happens. also try to look for error messages in ST22 and SM21 that may be related to this and post whatever possible error you see there here.
    ryan.

  • Problem uninstalling MaxMSPRuntime on mac - urgent help needed

    Hello there,
    I've been using Cycle 74's MaxMSP Runtime version 5.1 for a while but recently had to witch to an earlier version to make some hardware function along side the Max runtime environment. The problem is that where i would usually just drag and drop Max 5.1 into the trash to uninstall it, for some reason, after i have done this and try to install the older version of Max, OSX wont let me install Max 4.0.8 as it says an updated version is currently installed. I have scoured my hard drive for the remanence of Max 5.1. and deleted everything i've found. Is there a way of overriding macosx and getting it to replace Max5.1 with an older version?
    Urgent help needed as i am playing a show this weekend and currently am not able to get my equipment to function.
    A shiny nickel for the one who saves my ***.
    Thanks
    Henry

    Hi- Try this...
    If you can, reinstall or use time machine to recover your recently deleted MaxMSP Runtime 5.1.
    Then, download AppZapper. It is a utility that helps you cleanly delete programs off your mac. It is free for the first 5 uses.
    http://appzapper.com/
    Then, install AppZapper, and then go ahead and drag the MaxMSP Runtime 5.1 into it, and it should hopefully get rid of the pesky program

Maybe you are looking for