Need help executing the following part of code

declare
mpostcode varchar2(10);
begin
mpostcode := 'AA11AA';
insert into url_tab
values
('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode=AA11AA'));
end;
right now i have added postcode directly But i will like to add memory variable..
like say.. But this results in error
declare
mpostcode varchar2(10);
begin
mpostcode := 'AA11AA';
insert into url_tab
values
('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode||'));
end;
This results in quote string not properly terminated..
Kindly help and guide..
Edited by: susf on Sep 24, 2012 10:03 PM
Edited by: susf on Sep 24, 2012 10:30 PM

('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode||));
Modify the above to
('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode));
Edited by: susf on Sep 24, 2012 10:39 PM
Other example
declare
mpostcode varchar2(10);
begin
mpostcode := 'AA11AA';
insert into url_tab(url_name,url)
values
('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode);
end;
You are short of a Paranthesis for Insert Values.
Modify it to
('this is test url',sys.UriFactory.getUri('http://pcls1.craftyclicks.co.uk/xml/rapidaddress?postcode='||mpostcode));

Similar Messages

  • Need help finding the Motherboard parts number on Ideacentre B520

    Hi guys,
    I'm currently repairing an ideacentre B520 for a customer and need to have the MB parts # to have the parts ordered. 
    i've found a white sticker with somes number on it but I don't know which one is the MB parts number.
    Here the number:
    27*939530*126
    1a*2
    4*mfg: 1*2 (in bold)
    PL*00:u0* (in bold)
    46*9ae9*l01
    and the last one on another sticker.
    MB            11s1*013462z*0mP17*043  A*<
    (I've put somes * instead of caracters on purspose.
    Thanks

    Hi,
    The Motherboard part number starts with 11......
    If you download the Hardware Maintenance Manual from the Lenovo Support site, all the part numbers are there, as well as removal instructions.
    Good luck!
    CB2011

  • Need help with the following condition code

    Hi All,
    I am creating CreditMemo based on the open amount and I have option to create either up to 4 credit memo's or open amount is zero. When I create the CM initially then cmponum1 has to be updated in the table, for second CM cmponum2 has to be updated.
    The created CM number comes out from the function as 'Salesdocument'.
    The following code I wrote is working fine for CM1, if I have the CM2 then it is updating CMPONUM2 but update command is making CMPONUM1 as zero, so for CM3 as CM1 was updated as zero it is going to CMPONUM1 instead of CMPONUM3.
    Can some one please help me with this code.
    Thanks,
    Veni.
          DATA: zcmponum1  type zsdcoop-cmponum,
                zcmponum2  type zsdcoop-cmponum,
                zcmponum3  type zsdcoop-cmponum,
                zcmponum4  type zsdcoop-cmponum.
          If zsdcoop-cmponum1 is initial.
            zcmponum1 = salesdocument.
          elseif zsdcoop-cmponum2 is initial.
            zcmponum2 = salesdocument.
          elseif zsdcoop-cmponum3 is initial.
            zcmponum3 = salesdocument.
          elseif zsdcoop-cmponum4 is initial.
            zcmponum4 = salesdocument.
          endif.
          Update zsdcoop
          set
          cmponum1  = zcmponum1
          cmponum2  = zcmponum2
          cmponum3  = zcmponum3
          cmponum4  = zcmponum4
          where kunnr = zsdcoop-kunnr and pfnum = zsdcoop-pfnum.

    Hi All,
    This code solved my req.
          If zsdcoop-cmponum is initial.
            zcmponum = salesdocument.
            Update zsdcoop
            set cmponum  = zcmponum
            where kunnr = zsdcoop-kunnr and pfnum = zsdcoop-pfnum.
          elseif zsdcoop-cmponum2 is initial.
            zcmponum2 = salesdocument.
            Update zsdcoop
            set cmponum2  = zcmponum2
            where kunnr = zsdcoop-kunnr and pfnum = zsdcoop-pfnum.
          elseif zsdcoop-cmponum3 is initial.
            zcmponum3 = salesdocument.
            Update zsdcoop
            set cmponum3  = zcmponum3
            where kunnr = zsdcoop-kunnr and pfnum = zsdcoop-pfnum.
          elseif zsdcoop-cmponum4 is initial.
            zcmponum4 = salesdocument.
            Update zsdcoop
            set cmponum4  = zcmponum4
            where kunnr = zsdcoop-kunnr and pfnum = zsdcoop-pfnum.
          endif.
    Thanks,
    Veni.

  • Need help with the following code (Want an input popup with numeric pad)

    Hello,
    I put the following code in an event :
    import javax.swing.JOptionPane;
    value = javax.swing.JOptionPane.showInputDialog("Price", "");
    try {
    Double newPrice = new Double(value);
    line.setPriceTax(newPrice);
    } catch (NumberFormatException e) {
    JOptionPane.showMessageDialog(null, "Not valid number: " + value, "Error", JOptionPane.PLAIN_MESSAGE);
    But this only gives an input popup screen and then i have to use a keyboard instead of my touchscreen to give the input,
    i would rather like it to be a popup input screen with a numeric pad attached.
    Is this possible, and how??
    Thanks in advance.
    Jeroen

    hii,
    set321go wrote
    make your own. Create a custom OptionPane and add --->
    // global def.
    private final JLabel amountLabel = new JLabel(" Input Trades Amount : ");
    private JFormattedTextField amountTextField;
    private double amount = 0.00;
    private NumberFormat amountFormat;
    // in panel class add --->
    amountFormat = NumberFormat.getNumberInstance();
    amountFormat.setMinimumFractionDigits(2);
    amountFormat.setMaximumFractionDigits(2);
    amountFormat.setRoundingMode(RoundingMode.HALF_EVEN);
    amountLabel.setFont(new Font("Serif", Font.BOLD, 16));
    amountLabel.setForeground(KopikSalesTest.textColor);
    amounTextField = new JFormattedTextField(amountFormat);
    amountTextField.setValue(0.00);
    amountTextField.setFont(new Font("Serif", Font.BOLD, 20));
    amountTextField.setForeground(Color.someColor);
    amountTextField.setBackground(Color.someColor);
    amountTextField.addFocusListener(new FocusListener() {
                public void focusGained(FocusEvent e) {
                    amountTextField.requestFocus();
                    amountTextField.setText(amountTextField.getText());
                    amountTextField.selectAll();
                public void focusLost(FocusEvent e) {
                    //on exit
    somePanel.add(amountLabel);
    somePanel.add(amountTextField); ... kopik

  • I Need help with the following error:

    Hi, I am getting the following error:
    <b>BPE_ADAPTER">SYSTEM_FAILURE_INTERNAL</b>
    I have looked at some of the other threads that deal with this but since I am new to XI I am not sure where to look. I have tried to activate in SXI_CACHE and I get a code of 99 with the following error. I did not get this error in the QAS environment, only when it was moved to Prod. We have cleared and reset all of the caches and am still getting this error when I try to activate in SXI_CACHE:
    <b>E     'STATUSCODE' is not a component of data object 'PAYLOAD'</b>
    Can someone point me in the right direction to fix this? We just moved it to prod and need to get it fixed asap.
    Thanks in advance for all of the help.
    Mike Curtis

    Hi Michael,
    Before SP16:
    the problem should be solved with the help of note 890760. You might find note
    816430 interesting as well, but the first one should help you solve the problem.
    After:
    If those are already in your system, have a look at note 996631. This could be
    the solution.
    Regards and good luck with XI.
    Jaime

  • Need help in the following query

    Hi ,
    I have the following query to pull out data for a particular timeperiod( campaign)
    select
    da.acct_nr,smas.mrkt_id,smas.fld_sls_cmpgn_perd_id,smas.acct_key,smas.upln_acct_key,smas.awrd_sls_amt,smas.fld_net_sls_amt
    ,smas.stf_ind,da1.acct_nr,
    smas.fld_sls_cmpgn_perd_id,smas.acct_key,smas.upln_acct_key,smas.awrd_sls_amt,smas.fld_net_sls_amt
    ,smas.stf_ind,da1.acct_nr,prev.*
    From cdw.sum_mrkt_acct_sls smas
    join codi.dim_acct da
    on (smas.mrkt_id = da.mrkt_id and smas.acct_key = da.acct_key)
    join codi.dim_acct da1
    on (smas.mrkt_id = da1.mrkt_id and smas.UPLN_acct_key = da1.ACCT_KEY)
    where smas.acct_key in
    select dwnln_acct_key from codi.dim_ldrshp_genlgy
    where mrkt_id = 66 and fld_sls_cmpgn_perd_id = 20100304
    and root_upln_acct_key = (select acct_key from codi.dim_acct where acct_nr = '0032622' and mrkt_id = 66)
    and
    smas.mrkt_id = 66
    and smas.fld_sls_cmpgn_perd_id = 20100304
    and smas.sls_org_key <> -100
    order by 1
    So this query will pull out data for campaign 20100304
    No i want to modify the query to pull out data for 3 such campaigns.
    for a smas.acct_key
    so data will
    smas.acct_key all the data for 1st campaign , all the data for 2nd campaign. all the data for 3rd campaign
    Could you please help in modifying this query.
    Thanks

    How about this ??
    select da.acct_nr,
           smas.mrkt_id,
           smas.fld_sls_cmpgn_perd_id,
           smas.acct_key,
           smas.upln_acct_key,
           smas.awrd_sls_amt,
           smas.fld_net_sls_amt,
           smas.stf_ind,
           da1.acct_nr,
           smas.fld_sls_cmpgn_perd_id,
           smas.acct_key,
           smas.upln_acct_key,
           smas.awrd_sls_amt,
           smas.fld_net_sls_amt,
           smas.stf_ind,
           da1.acct_nr,
           prev.*
      From cdw.sum_mrkt_acct_sls smas
      join codi.dim_acct da on (smas.mrkt_id = da.mrkt_id and
                               smas.acct_key = da.acct_key)
      join codi.dim_acct da1 on (smas.mrkt_id = da1.mrkt_id and
                                smas.UPLN_acct_key = da1.ACCT_KEY)
    where smas.acct_key in (select dwnln_acct_key
                               from codi.dim_ldrshp_genlgy
                              where mrkt_id = 66
                                and fld_sls_cmpgn_perd_id in( 20100304,20100305,20100306)
                                and root_upln_acct_key =
                                    (select acct_key
                                       from codi.dim_acct
                                      where acct_nr = '0032622'
                                        and mrkt_id = 66))
       and smas.mrkt_id = 66
       and smas.fld_sls_cmpgn_perd_id in( 20100304,20100305,20100306)
       and smas.sls_org_key - 100
    order by 1

  • I need help in the filereader part 2

    my loop doesn't stop...i cant fix it..please help me
    public static void main(String[] args) throws FileNotFoundException{
         int howMany=0;
              int[] numbers;
              Scanner inFile = new Scanner(new FileReader("sum.txt"))/*.useDelimiter("\\s*,\\s*")*/;
         while(inFile.hasNextInt()){
                   howMany++;
         System.out.println(""+howMany);
         inFile.close();
    the textfile is
    7 3 8 8 1 0 2 7 4 4 4 5 2 6 5
    i need help badly

    i got it...sorry misunderstood what you said...my problem now is that...when i use the delimiter and try to read the file again...it prints 0....the text file is
    7
    3,8
    8,1,0
    2,7,4,4
    4,5,2,6,5
    i dont know what happened this time...it cant even read the first integer

  • Need help with the following query

    I have the following data
    INVOICE_ID PAID_AMT PYMNT_GROSS_AMT DISCOUNT
    10151 1375 1375 55
    10151DC -44.81 -44.81 0
    20017 25 25 7
    Ok the data I want to grab the discount field is paid_amt = pymnt_gross_amt and discount <> 0. If however there is another invoice_id out there (same invoice ID except with a DC appended to it like 10151DC) then you want to select the differece between the discount field without the DC and the Invoice ID with the DC the paid_amt field.
    So the results would be.
    Invoice_ID Discount
    10151 10.19
    20017 7
    Thanks for all your help!

    Why scan same table twice when it can be achived using single scan :
    Hope this helps :
    with inv_data as
    (select '10151' invoice_id,
    1375 paid_amt,
              1375 pymnt_gross_amt,
              55 discount from dual
    union all
    select '10151DC' invoice_id,
    -44.81 paid_amt,
              -44.81 pymnt_gross_amt,
              0 discount from dual
    union all
    select '20017' invoice_id,
    25 paid_amt,
              25 pymnt_gross_amt,
              7 discount from dual)
    select replace(invoice_id,'DC') invoice_id,
    sum(case when invoice_id like '%DC' then pymnt_gross_amt
         else discount end) discount
    from inv_data
    group by replace(invoice_id,'DC')
    INVOICE DISCOUNT
    10151 10.19
    20017 7
    2 rows selected.

  • I would need help with the following please: I need to save some of my email on a disk. I was going to Print, then Save PDF but then I am stuck. Help please. Thanks. Elisabeth

    I would need help with saving some eamil messages to a disk to unclutter my email. How can I do this please?
    Thanks.
    Elisabeth

    Open the email and then from the File menu select Save As Rich Text Format. That'll save it to open in TextEdit. If you want a pdf then open the email and do command-p (Print) and then from the PDF drop down box lower left corner select Save as PDF.

  • Need help with the following.

    Hi everybody..,
    can anyone plz check the following code and tell that how to end the exception after "raise form_trigger_failure and end if;"
    thanks in advance.
    DECLARE
    v_amount number(15,2);
    v_old_amount number(15,2);
    f_number varchar2(10);
    BEGIN
    select amount into v_old_amount
    from pur_req
    where line_number = :line_number and
    f_number = :f_number;
    EXCEPTION
    WHEN no_data_found then
    select allocated_amount into v_amount
    from line_description
    where line_number = :line_number;
    IF :amount <= v_amount then
    update line_description
    set allocated_amount = allocated_amount - :amount;
    commit;
    else
    message('The Remaining budget is '||V_AMOUNT||' So, the transaction cant be completed');
    message(' ');
    raise form_trigger_failure;
    end if;
    -------------------------here
    if :amount < v_old_amount then
    update line_description
    set allocated_amount = allocated_amount + (v_old_amount - :amount)
    where line_number = :line_number and
    f_number = :f_number;
    else
    :amount > v_old_amount then
    update line_description
    set allocated_amount = allocated_amount - (:amount - v_old_amount)
    where line_number = :line_number
    and f_number = :f_number;
    end if;
    END;

    around line 36 IF and END IF are missing:
    DECLARE
        v_amount       NUMBER (15, 2);
        v_old_amount   NUMBER (15, 2);
        f_number       VARCHAR2 (10);
    BEGIN
        SELECT amount
          INTO v_old_amount
          FROM pur_req
         WHERE line_number = :line_number AND f_number = :f_number;
    EXCEPTION
        WHEN NO_DATA_FOUND
        THEN
            SELECT allocated_amount
              INTO v_amount
              FROM line_description
             WHERE line_number = :line_number;
            IF :amount <= v_amount
            THEN
                UPDATE line_description
                   SET allocated_amount = allocated_amount - :amount;
                COMMIT;
            ELSE
                MESSAGE (
                       'The Remaining budget is '
                    || v_amount
                    || ' So, the transaction cant be completed');
                MESSAGE (' ');
                RAISE form_trigger_failure;
            END IF;
            IF :amount < v_old_amount
            THEN
                UPDATE line_description
                   SET allocated_amount =
                           allocated_amount + (v_old_amount - :amount)
                 WHERE line_number = :line_number AND f_number = :f_number;
            ELSE
                -- IF missing:
                IF :amount > v_old_amount
                THEN
                    UPDATE line_description
                       SET allocated_amount =
                               allocated_amount - (:amount - v_old_amount)
                     WHERE line_number = :line_number AND f_number = :f_number;
                -- END IF missing:
                END IF;
            END IF;
    END;btw what if this
    SELECT allocated_amount
              INTO v_amount
              FROM line_description
             WHERE line_number = :line_number;also raises a no_data_found exception? you should close the first exception block and open another:
       SELECT amount
          INTO v_old_amount
          FROM pur_req
         WHERE line_number = :line_number AND f_number = :f_number;
    EXCEPTION
        WHEN NO_DATA_FOUND
        THEN
            v_old_amount := NULL;
    END;
    BEGIN
        IF v_old_amount IS NULL THEN
            SELECT allocated_amount
              INTO v_amount
              FROM line_description
    EXCEPTION
        WHEN NO_DATA_FOUND THEN
    END;Edited by: jowal on 20.04.2011 14:32

  • Need help with the following scenario

    Hi guys,
    I have to implement a solution which requires me to duplicated all the rows from a table to another in reverse order. For eg. I have table1 containing the following rows:
    200, 350, 700, 90
    All these numbers are sorted according to their ROW_ID_BLOCK_NUMBER. When these rows are replicated over to another table, say table2, it should be inserted in the following order:
    90, 700, 350, 200
    I do not have another column column that stores the running identity number for each row and I don't intend to implement that right now. I was wondering if that can be implemented using the DBMS_ROWID package and if so, how? Any help is greatly appreciated here. Thanks in advance.

    In 10g, assuming you've built a table with row dependencies enabled
    SCOTT @ jcave102 Local> create table a (
      2  col1 number
      3  )
      4  rowdependencies;
    Table created.
    Elapsed: 00:00:00.04the ORA_ROWSCN pseudocolumn will tell you the SCN (system change number) of the transaction that inserted the rows
    SCOTT @ jcave102 Local> insert into a values( 1 );
    1 row created.
    Elapsed: 00:00:00.07
    SCOTT @ jcave102 Local> insert into a values( 2 );
    1 row created.
    Elapsed: 00:00:00.01
    SCOTT @ jcave102 Local> commit;
    Commit complete.
    Elapsed: 00:00:00.00
    SCOTT @ jcave102 Local> insert into a values( 3 );
    1 row created.
    Elapsed: 00:00:00.04
    SCOTT @ jcave102 Local> commit;
    Commit complete.
    Elapsed: 00:00:00.01
    SCOTT @ jcave102 Local> select ora_rowscn, col1 from a;
    ORA_ROWSCN       COL1
       6270940          1
       6270940          2
       6270944          3
    Elapsed: 00:00:00.09Sorting on that, assuming you insert the rows in the right logical order, should work (the documentation only guarantees that the SCN of the row is greater than or equal to the SCN when a row was modified, so it's not guaranteed, but I don't know of a mechanism that would cause the ORA_ROWSCN to change without DML affecting the row in this example so it's relatively safe, at least with your current Oracle version). If ROWDEPENDENCIES is not set, the default is that the SCN is tracked at the block rather than the row level.
    Justin

  • Need help with the following error message...

    I just got a Shuffle for Christmas and was trying to download iTunes when I got the following message. FYI - I have a PC and the operating system is Windows XP:
    iTunesSetup[1].exe is not a valid Win32 application
    Anyone received this message before? I've looked around the troubleshooting section but am at a loss as to what to do from here...
    Thx

    I do have SR but hoping i can get quicker answer hereYou may always escalate the SR if you are not getting response timely. Anyways, give the reference of this thread in the SR and ask service engineer to file a bug.
    I will email you the wire messageI saw the wire message you mailed across. There are some junk characters in the starting of the payload and that's why parsing is failing. Most probably it is a BOM (Byte Order Mark). Ask your TP to send messages in UTF-8 encoding without BOM or any other junk character in the starting of the message. You may open the wire message payload you mailed across in notepad or textpad and you will able to see those junk characters in the starting of the payload.
    Regards,
    Anuj

  • Hello, need help finding the right part number etc...HP Pavillion G7 series 1316dx

    Hello everyone, 
    Last resort was everyone on here I tried looking for the part on my own and hope to not waste anyone's time.
    I am looking for the correct part number for a LCD Inverter.  My laptop screen keeps going black on me.  I have shined a light on it and you can still see the screen so it is not the LCD.
    Laptop model: 
    Hp Pavillion G7 Series 1316dx 17" screen. 
    Thank you. 
    This question was solved.
    View Solution.

    HPpavillionguy.
    From your manual you do not have an LCD with CCFL inverter for the backlight.
    http://h10032.www1.hp.com/ctg/Manual/c03538328.pdf
    Page 23  Chapter 3.
    You have an LCD backlit with LED's no inverter.
    Your part number is.
    641395-001
    http://www.ebay.com/itm/HP-641395-001-584037-001-6​41629-001-NEW-17-3-WXGA-LED-LCD-Screen-Glossy-/171​...
    I do not think we have any more now. "We sold around 35 in 2 weeks."
    We were selling used ones for around $45.
    And we do not have any more listed on Ebay.
    I can check with them in the AM.
    REO
    HP Expert Tester "Now testing HP Pavilion 15t i3-4030U Win8.1, 6GB RAM and 750GB HDD"
    Loaner Program”HP Split 13 x2 13r010dx i3-4012Y Win8.1, 4GB RAM and 500GB Hybrid HDD”
    Microsoft Registered Refurbisher
    Registered Microsoft Partner
    Apple Certified Macintosh Technician Certification in progress.

  • Need help with the following console messages...

    Hello,
    I wanted to know what these messages mean in the Console app. I've had two of these system errors in a row and I would like to know that they mean. They seem to be related to the GPU, and manifest by showing a color spinwheel followed by a complete system crash.
    What do you think?
    1/13/12 12:06:33.246 AM sandboxd: ([108]) DumpGPURestart(108) deny file-write-create /Library/Application Support/SubmitDiagInfo
    1/13/12 12:06:33.288 AM sandboxd: ([108]) DumpGPURestart(108) deny ipc-posix-shm apple.shm.notification_center
    1/13/12 12:06:33.289 AM sandboxd: ([108]) DumpGPURestart(108) deny ipc-posix-shm apple.shm.notification_center
    1/13/12 12:06:33.290 AM sandboxd: ([108]) DumpGPURestart(108) deny ipc-posix-shm apple.shm.notification_center
    1/13/12 12:06:33.291 AM sandboxd: ([108]) DumpGPURestart(108) deny ipc-posix-shm apple.shm.notification_center
    1/13/12 12:06:33.304 AM sandboxd: ([108]) DumpGPURestart(108) deny ipc-posix-shm apple.shm.notification_center
    1/13/12 12:06:33.322 AM sandboxd: ([108]) DumpGPURestart(108) deny ipc-posix-shm apple.shm.notification_center
    1/13/12 12:06:33.323 AM sandboxd: ([108]) DumpGPURestart(108) deny network-outbound /private/var/run/mDNSResponder
    1/13/12 12:06:33.324 AM sandboxd: ([108]) DumpGPURestart(108) deny file-read-data /private/etc/hosts
    1/13/12 12:06:33.325 AM sandboxd: ([108]) DumpGPURestart(108) deny file-read-data /private/etc/hosts
    1/13/12 12:06:33.343 AM sandboxd: ([108]) DumpGPURestart(108) deny ipc-posix-shm apple.shm.notification_center
    1/13/12 12:06:33.345 AM sandboxd: ([108]) DumpGPURestart(108) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 8:34:16.596 PM sandboxd: ([128]) DumpGPURestart(128) deny file-write-create /Library/Application Support/SubmitDiagInfo
    1/15/12 8:34:16.638 PM sandboxd: ([128]) DumpGPURestart(128) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 8:34:16.645 PM sandboxd: ([128]) DumpGPURestart(128) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 8:34:16.647 PM sandboxd: ([128]) DumpGPURestart(128) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 8:34:16.648 PM sandboxd: ([128]) DumpGPURestart(128) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 8:34:16.649 PM sandboxd: ([128]) DumpGPURestart(128) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 8:34:16.665 PM sandboxd: ([128]) DumpGPURestart(128) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 8:34:16.667 PM sandboxd: ([128]) DumpGPURestart(128) deny network-outbound /private/var/run/mDNSResponder
    1/15/12 8:34:16.667 PM sandboxd: ([128]) DumpGPURestart(128) deny file-read-data /private/etc/hosts
    1/15/12 8:34:16.668 PM sandboxd: ([128]) DumpGPURestart(128) deny file-read-data /private/etc/hosts
    1/15/12 8:34:16.685 PM sandboxd: ([128]) DumpGPURestart(128) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 8:34:16.686 PM sandboxd: ([128]) DumpGPURestart(128) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 9:09:26.511 PM sandboxd: ([333]) DumpGPURestart(333) deny file-write-create /Library/Application Support/SubmitDiagInfo
    1/15/12 9:09:26.534 PM sandboxd: ([333]) DumpGPURestart(333) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 9:09:26.536 PM sandboxd: ([333]) DumpGPURestart(333) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 9:09:26.537 PM sandboxd: ([333]) DumpGPURestart(333) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 9:09:26.539 PM sandboxd: ([333]) DumpGPURestart(333) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 9:09:26.541 PM sandboxd: ([333]) DumpGPURestart(333) deny ipc-posix-shm apple.shm.notification_center
    1/15/12 9:11:30.625 PM com.apple.stackshot: Running fs_usage, spindump and top
    I know that my MacBook Pro is the one that has the 330m GPU that has given some problems under Mac OS X Lion. Would like to know if this can be related to the OSX Lion graphics issues in the 2010 MacBook Pros.

    Bump. Any suggestions or ideas? I really need them.

  • Need help with the following kernel panic message

    Interval Since Last Panic Report:  343442 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    20AE5901-94AA-497D-A08A-83DE6176E55A
    Mon May 16 15:17:40 2011
    panic(cpu 1 caller 0xffffff80002d1208): Kernel trap at 0xffffff80002c3762, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0xffffff80c95ab404, CR3: 0x00000000514f3000, CR4: 0x0000000000040660
    RAX: 0xffffff800085ae38, RBX: 0x0000000000000000, RCX: 0x0000000000000004, RDX: 0x0000000000000004
    RSP: 0xffffff80b2042948, RBP: 0xffffff80b20429a0, RSI: 0xffffff80c95ab404, RDI: 0xffffff80a9a2fd20
    R8:  0x0000000000001800, R9:  0xffffff80a9a2fd20, R10: 0x00000000159ab001, R11: 0xffffff7f80e88fe2
    R12: 0xffffff80a9a2fd20, R13: 0xffffff80c95ab404, R14: 0x0000000000001800, R15: 0x0000000000000020
    RFL: 0x0000000000010202, RIP: 0xffffff80002c3762, CS:  0x0000000000000008, SS:  0x0000000000000010
    Error code: 0x0000000000000000
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80b20425e0 : 0xffffff8000204d15
    0xffffff80b20426e0 : 0xffffff80002d1208
    0xffffff80b2042830 : 0xffffff80002e3f4a
    0xffffff80b2042840 : 0xffffff80002c3762
    0xffffff80b20429a0 : 0xffffff7f80ea59e7
    0xffffff80b2042a70 : 0xffffff7f80ea52ef
    0xffffff80b2042ac0 : 0xffffff7f80e79966
    0xffffff80b2042ba0 : 0xffffff80005523e8
    0xffffff80b2042be0 : 0xffffff8000553029
    0xffffff80b2042c60 : 0xffffff80005537d6
    0xffffff80b2042db0 : 0xffffff80002ba1c4
    0xffffff80b2043e50 : 0xffffff8000205536
    0xffffff80b2043e80 : 0xffffff80002029eb
    0xffffff80b2043ef0 : 0xffffff8000274176
    0xffffff80b2043f60 : 0xffffff80002c3095
    0xffffff80b2043fa0 : 0xffffff80002e4894
          Kernel Extensions in backtrace (with dependencies):
             com.apple.driver.AppleIntelHDGraphics(6.3.4)@0xffffff7f80e61000->0xffffff7f80f3 6fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.3)@0xffffff7f8081d000
                dependency: com.apple.iokit.IONDRVSupport(2.2)@0xffffff7f8087b000
                dependency: com.apple.iokit.IOGraphicsFamily(2.2)@0xffffff7f80853000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    10J4138
    Kernel version:
    Darwin Kernel Version 10.7.4: Mon Apr 18 21:24:17 PDT 2011; root:xnu-1504.14.12~3/RELEASE_X86_64
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 48514690935839
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI    4.2.0 (addr 0xffffff7f810e4000, size 0x65536) - last unloaded 95251705762
    loaded kexts:
    com.pgp.kext.PGPnke    1.1.0
    com.vmware.kext.vmnet    3.1.2
    com.vmware.kext.vmioplug    3.1.2
    com.vmware.kext.vmci    3.1.2
    com.vmware.kext.vmx86    3.1.2
    com.pgp.iokit.PGPwdeDriver    1.2.0d1
    com.rim.driver.BlackBerryUSBDriverInt    0.0.64
    com.apple.filesystems.afpfs    9.7 - last loaded 34795666277000
    com.apple.nke.asp_tcp    5.0
    com.apple.driver.AppleBluetoothMultitouch    54
    com.apple.driver.AppleHWSensor    1.9.3d0
    com.apple.driver.IOBluetoothBNEPDriver    2.4.5f1
    com.apple.filesystems.autofs    2.1.0
    com.apple.driver.AGPM    100.12.31
    com.apple.driver.AppleMikeyHIDDriver    1.2.0
    com.apple.driver.AppleHDA    2.0.5f13
    com.apple.driver.AppleMikeyDriver    2.0.5f13
    com.apple.driver.AppleUpstreamUserClient    3.5.7
    com.apple.driver.AppleMCCSControl    1.0.20
    com.apple.driver.AudioAUUC    1.57
    com.apple.driver.AppleIntelHDGraphics    6.3.4
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.0a1
    com.apple.driver.AppleLPC    1.5.1
    com.apple.driver.AppleBacklight    170.0.46
    com.apple.kext.AppleSMCLMU    1.5.2d10
    com.apple.driver.AppleIntelSNBGraphicsFB    6.3.4
    com.apple.driver.AppleUSBTCButtons    201.2
    com.apple.driver.AppleUSBTCKeyboard    201.2
    com.apple.driver.AppleIRController    303.8
    com.apple.iokit.SCSITaskUserClient    2.6.8
    com.apple.BootCache    31
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.iokit.IOAHCIBlockStorage    1.6.4
    com.apple.driver.AppleSDXC    1.0.2
    com.apple.iokit.AppleBCM5701Ethernet    3.0.5b8
    com.apple.driver.AppleFWOHCI    4.7.3
    com.apple.driver.AirPort.Brcm4331    432.11.3
    com.apple.driver.AppleUSBHub    4.2.0
    com.apple.driver.AppleEFINVRAM    1.4.0
    com.apple.driver.AppleSmartBatteryManager    160.0.0
    com.apple.driver.AppleAHCIPort    2.1.7
    com.apple.driver.AppleACPIButtons    1.3.6
    com.apple.driver.AppleUSBEHCI    4.2.0
    com.apple.driver.AppleRTC    1.3.1
    com.apple.driver.AppleHPET    1.5
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.3.6
    com.apple.driver.AppleAPIC    1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient    142.6.0
    com.apple.security.sandbox    1
    com.apple.security.quarantine    0
    com.apple.nke.applicationfirewall    2.1.11
    com.apple.driver.AppleIntelCPUPowerManagement    142.6.0
    com.apple.driver.IOBluetoothHIDDriver    2.4.5f1
    com.apple.driver.AppleMultitouchDriver    207.11
    com.apple.driver.AppleProfileReadCounterAction    17
    com.apple.driver.DspFuncLib    2.0.5f13
    com.apple.driver.AppleProfileTimestampAction    10
    com.apple.driver.AppleProfileThreadInfoAction    14
    com.apple.driver.AppleProfileRegisterStateAction    10
    com.apple.driver.AppleProfileKEventAction    10
    com.apple.driver.AppleProfileCallstackAction    20
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP    2.0.3
    com.apple.iokit.IOSurface    74.2
    com.apple.iokit.IOBluetoothSerialManager    2.4.5f1
    com.apple.iokit.IOSerialFamily    10.0.3
    com.apple.iokit.IOAudioFamily    1.8.3fc2
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleHDAController    2.0.5f13
    com.apple.iokit.IOHDAFamily    2.0.5f13
    com.apple.iokit.AppleProfileFamily    41
    com.apple.driver.IOPlatformPluginFamily    4.7.0a1
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleBacklightExpert    1.0.1
    com.apple.iokit.IONDRVSupport    2.2
    com.apple.driver.AppleSMC    3.1.0d5
    com.apple.driver.AppleThunderboltEDMSink    1.0.5
    com.apple.driver.AppleThunderboltEDMSource    1.0.5
    com.apple.iokit.IOGraphicsFamily    2.2
    com.apple.driver.BroadcomUSBBluetoothHCIController    2.4.5f1
    com.apple.driver.AppleUSBBluetoothHCIController    2.4.5f1
    com.apple.iokit.IOBluetoothFamily    2.4.5f1
    com.apple.driver.AppleThunderboltDPOutAdapter    1.2.0
    com.apple.driver.AppleThunderboltDPInAdapter    1.2.0
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.2.0
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.1.5
    com.apple.driver.AppleUSBMultitouch    207.5
    com.apple.iokit.IOUSBHIDDriver    4.2.0
    com.apple.driver.XsanFilter    402.1
    com.apple.driver.AppleUSBMergeNub    4.2.2
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    2.6.8
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.6
    com.apple.iokit.IOCDStorageFamily    1.6.1
    com.apple.iokit.IOAHCISerialATAPI    1.2.6
    com.apple.driver.AppleThunderboltNHI    1.2.3
    com.apple.iokit.IOThunderboltFamily    1.3.5
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IO80211Family    320.1
    com.apple.iokit.IONetworkingFamily    1.10
    com.apple.iokit.IOUSBUserClient    4.2.0
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.driver.AppleEFIRuntime    1.4.0
    com.apple.iokit.IOHIDFamily    1.6.6
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    6
    com.apple.iokit.IOUSBMassStorageClass    2.6.6
    com.apple.driver.AppleUSBComposite    3.9.0
    com.apple.iokit.IOSCSIBlockCommandsDevice    2.6.8
    com.apple.iokit.IOSCSIArchitectureModelFamily    2.6.8
    com.apple.iokit.IOUSBFamily    4.2.2
    com.apple.driver.DiskImages    289
    com.apple.iokit.IOStorageFamily    1.6.3
    com.apple.driver.AppleACPIPlatform    1.3.6
    com.apple.iokit.IOPCIFamily    2.6.3
    com.apple.iokit.IOACPIFamily    1.3.0
    Model: MacBookPro8,1, BootROM MBP81.0047.B0E, 2 processors, Intel Core i7, 2.7 GHz, 8 GB, SMC 1.68f96
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.3)
    Bluetooth: Version 2.4.5f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 698,64 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 4
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

    I've had a kenerl panic report with the same characteristics as yours
    Interval Since Last Panic Report:  12390 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    D4ED497D-32FE-415C-A4AF-2E5D1832321A
    Wed Jun 29 22:42:18 2011
    panic(cpu 4 caller 0xffffff80002d1208): Kernel trap at 0xffffff800021764b, type 13=general protection, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000005c92000, CR3: 0x000000007afea000, CR4: 0x0000000000040660
    RAX: 0xffffff800d20d628, RBX: 0x000000000000000e, RCX: 0x0000000005c92000, RDX: 0xffffff809300ba08
    RSP: 0xffffff809300b970, RBP: 0xffffff809300ba50, RSI: 0xffff008017546ab8, RDI: 0xffffff809300bb78
    R8:  0xffffff809300bc20, R9:  0xffffff809300bc00, R10: 0x0000000000000054, R11: 0x0000000000000000
    R12: 0x0000000000000003, R13: 0xffffff800d20d5d0, R14: 0x0000000005c92000, R15: 0x0000000000000000
    RFL: 0x0000000000010287, RIP: 0xffffff800021764b, CS:  0x0000000000000008, SS:  0x0000000000000010
    Error code: 0x0000000000000000
    Backtrace (CPU 4), Frame : Return Address
    0xffffff809300b610 : 0xffffff8000204d15
    0xffffff809300b710 : 0xffffff80002d1208
    0xffffff809300b860 : 0xffffff80002e3f4a
    0xffffff809300b870 : 0xffffff800021764b
    0xffffff809300ba50 : 0xffffff8000213f1d
    0xffffff809300bc60 : 0xffffff80002d0f1e
    0xffffff809300bdb0 : 0xffffff80002e3f4a
    0xffffff809300bdc0 : 0xffffff80002c8589
    0xffffff809300bf60 : 0xffffff800026f1dd
    0xffffff809300bf80 : 0xffffff80002742d1
    0xffffff809300bfa0 : 0xffffff80002c8527
    BSD process name corresponding to current thread: SC2
    Mac OS version:
    10K540
    Kernel version:
    Darwin Kernel Version 10.8.0: Tue Jun  7 16:32:41 PDT 2011; root:xnu-1504.15.3~1/RELEASE_X86_64
    System model name: MacBookPro8,2 (Mac-94245A3940C91C80)
    System uptime in nanoseconds: 902385741897
    unloaded kexts:
    com.apple.driver.AppleUSBUHCI    4.2.0 (addr 0xffffff7f80963000, size 0x65536) - last unloaded 165246783503
    loaded kexts:
    com.apple.filesystems.autofs    2.1.0 - last loaded 38484435586
    com.apple.driver.AGPM    100.12.31
    com.apple.driver.AppleHWSensor    1.9.3d0
    com.apple.driver.AudioAUUC    1.57
    com.apple.driver.AppleUpstreamUserClient    3.5.7
    com.apple.driver.AppleMikeyHIDDriver    1.2.0
    com.apple.driver.AppleMCCSControl    1.0.20
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AppleMikeyDriver    2.0.5f13
    com.apple.kext.ATIFramebuffer    6.3.6
    com.apple.driver.AppleIntelHDGraphics    6.3.6
    com.apple.driver.AppleHDA    2.0.5f13
    com.apple.driver.AudioIPCDriver    1.1.6
    com.apple.ATIRadeonX3000    6.3.6
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.iokit.AppleBCM5701Ethernet    3.0.5b8
    com.apple.driver.AppleGraphicsControl    2.10.6
    com.apple.driver.AirPort.Brcm4331    433.11.5
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.0a1
    com.apple.driver.AppleLPC    1.5.1
    com.apple.kext.AppleSMCLMU    1.5.2d10
    com.apple.driver.AppleIntelSNBGraphicsFB    6.3.6
    com.apple.driver.AppleUSBTCButtons    201.6
    com.apple.driver.AppleUSBTCKeyboard    201.6
    com.apple.driver.AppleIRController    303.8
    com.apple.iokit.SCSITaskUserClient    2.6.8
    com.apple.iokit.IOAHCIBlockStorage    1.6.4
    com.apple.driver.AppleUSBHub    4.2.4
    com.apple.driver.AppleSDXC    1.0.3
    com.apple.BootCache    31.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.driver.AppleUSBEHCI    4.2.4
    com.apple.driver.AppleEFINVRAM    1.4.0
    com.apple.driver.AppleSmartBatteryManager    160.0.0
    com.apple.driver.AppleFWOHCI    4.7.3
    com.apple.driver.AppleAHCIPort    2.1.7
    com.apple.driver.AppleRTC    1.3.1
    com.apple.driver.AppleACPIButtons    1.3.6
    com.apple.driver.AppleHPET    1.5
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.3.6
    com.apple.driver.AppleAPIC    1.4
    com.apple.driver.AppleIntelCPUPowerManagementClient    142.6.0
    com.apple.security.sandbox    1
    com.apple.security.quarantine    0
    com.apple.nke.applicationfirewall    2.1.12
    com.apple.driver.AppleIntelCPUPowerManagement    142.6.0
    com.apple.driver.AppleProfileReadCounterAction    17
    com.apple.driver.AppleProfileTimestampAction    10
    com.apple.driver.AppleProfileThreadInfoAction    14
    com.apple.driver.AppleProfileRegisterStateAction    10
    com.apple.driver.AppleProfileKEventAction    10
    com.apple.driver.AppleProfileCallstackAction    20
    com.apple.iokit.IOSurface    74.2
    com.apple.iokit.IOBluetoothSerialManager    2.4.5f3
    com.apple.iokit.IOSerialFamily    10.0.3
    com.apple.driver.DspFuncLib    2.0.5f13
    com.apple.iokit.IOAudioFamily    1.8.3fc2
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOFireWireIP    2.0.3
    com.apple.iokit.AppleProfileFamily    41
    com.apple.driver.AppleHDAController    2.0.5f13
    com.apple.iokit.IOHDAFamily    2.0.5f13
    com.apple.iokit.IO80211Family    320.1
    com.apple.iokit.IONetworkingFamily    1.10
    com.apple.driver.IOPlatformPluginFamily    4.7.0a1
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.AppleBacklightExpert    1.0.1
    com.apple.iokit.IONDRVSupport    2.2
    com.apple.driver.AppleSMC    3.1.0d5
    com.apple.kext.ATI6000Controller    6.3.6
    com.apple.kext.ATISupport    6.3.6
    com.apple.iokit.IOGraphicsFamily    2.2
    com.apple.driver.AppleThunderboltDPOutAdapter    1.3.2
    com.apple.driver.AppleThunderboltDPInAdapter    1.3.2
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.3.2
    com.apple.driver.AppleThunderboltPCIDownAdapter    1.1.6
    com.apple.driver.BroadcomUSBBluetoothHCIController    2.4.5f3
    com.apple.driver.AppleUSBBluetoothHCIController    2.4.5f3
    com.apple.iokit.IOBluetoothFamily    2.4.5f3
    com.apple.driver.AppleUSBMultitouch    207.7
    com.apple.iokit.IOUSBHIDDriver    4.2.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    2.6.8
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.6
    com.apple.iokit.IOCDStorageFamily    1.6.1
    com.apple.driver.AppleUSBMergeNub    4.2.4
    com.apple.driver.AppleUSBComposite    3.9.0
    com.apple.driver.XsanFilter    402.1
    com.apple.iokit.IOAHCISerialATAPI    1.2.6
    com.apple.iokit.IOSCSIArchitectureModelFamily    2.6.8
    com.apple.driver.AppleThunderboltNHI    1.2.6
    com.apple.iokit.IOThunderboltFamily    1.4.9
    com.apple.iokit.IOUSBUserClient    4.2.4
    com.apple.iokit.IOFireWireFamily    4.2.6
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.iokit.IOUSBFamily    4.2.4
    com.apple.driver.AppleEFIRuntime    1.4.0
    com.apple.iokit.IOHIDFamily    1.6.6
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.TMSafetyNet    6
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.driver.DiskImages    289.1
    com.apple.iokit.IOStorageFamily    1.6.3
    com.apple.driver.AppleACPIPlatform    1.3.6
    com.apple.iokit.IOPCIFamily    2.6.5
    com.apple.iokit.IOACPIFamily    1.3.0
    Model: MacBookPro8,2, BootROM MBP81.0047.B0E, 4 processors, Intel Core i7, 2.2 GHz, 4 GB, SMC 1.69f1
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK7559GSXF, 698.64 GB
    Serial ATA Device: MATSHITADVD-R   UJ-898
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0246, 0xfa120000 / 4
    USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3
    It looks like it is the USB in both our cases

Maybe you are looking for

  • Ipod Classic Connecting- Blue Screen of Death!!

    I downloaded iTunes 8.0 when it came out and ever since I downloaded it, I get the blue screen of death when I connect my ipod in. I am running on vista if that helps, any ideas on what to do?

  • Saving a PDF in WD

    Hello, users shall have the possibility to make comments in a pdf which is displayed in a WD application. But when the user save the pdf it will be saved as a copy local on client site. Is there a possibility that the original pdf can be changed? Oth

  • Bridge Scripting Capabilities (CS3 Javascript)

    Hi -- We have many users at our company who need to edit metadata in images (primarily jpegs, but some tifs). These users do not have access to Photoshop but do have access to Bridge. I have written a script in Bridge that opens a dialog window for t

  • Non-apple devices doesn't set up internet conenction

    I created a new wlan with the Airport express. All devices can connect with the wlan, but the non-apple devices (galaxy s2 and ps3) doesn't have internet. On the MBP, where i configurated the wlan, internet is running. how to fix this issue?

  • Editable & Dynamic ALV

    Hi, I have the situation where I want to create an editable ALV whose column fields will be known during run time. So, here I'm using Dynamic Internal table concept. Let me give a picture how my present program works, Inside the fieldcatalog, ifc I h