How to read device report for HP Deskjet 1510

Hi HP,
I can see from the software provided with this printer there is this option to print the device reports.
Please assist on how to read this report because it consist of unknown coding and stuff. 
I would appreciate if your side can help me on this coz I assume that we can track our usage through this report.
If this is not the purpose, perhaps you may suggest any other way to get an understandable usage reports? 
Regards,
Nadiya
This question was solved.
View Solution.

Hello Nadiya,
Welcome to the forums
I understand you are looking for a usage report. The printer will print a test page and you can see the page count on that page, along with the printer information, such as your serial number, etc. If there is anything else you may mean by "usage" please let me know and I will do my best to help.
Click this link: Fixing Ink Streaks, Faded Prints, and Other Common Print Quality Problems
In the guide, look under "Solution six: Print and evaluate a test page and troubleshoot defects" and print a test page.
Take care,
R a i n b o w 7000I work on behalf of HP
Click the “Kudos Thumbs Up" at the bottom of this post to say
“Thanks” for helping!
Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

Similar Messages

  • How to Created custom report for Ship not Billed (SD/FI)?

    Hi all,
    I am anticipating  to write some abap reports..Here is one of them..
    Anyone can help  me with writing a Report , how to do 'Custom Report for shipped not Billed(SD/FI)' ..But since I am new to Abap , if you wish to reply, please use a little more detail and simple explanation, step by step so I can understand what is the idea, how it can be acheived...what kind of report should be used , techniques, tables etc...:)
    Appreciate your help!
    Regards,
    Boby

    Hi Boby,
    You need to create custom transaction to achive these results.
    you will have selection-screen ,it would be :
    Date : Here date would be mandatory  - Ranges Option
    Customer  - Optional field - Ranges
    Order #  Sales Order (Optional) Ranges
    Invoice #  - Invoice # (Optional) Ranges
    You will get the data based on ur selection-screen criteria ...
    First you will have customer order details from diffrent table
    VBAK,
    VBAP,
    LIKP
    LIPS
    VBRK,
    VBRP
    KNA1,
    VBFA Tables ( See the my sample program )
    Output would be :
    Customer #   Custome Name    Order #   Delivery #   Invoice #   Netpr, Netquantity ,
    Check the condition  whether invoice table has VBRK-RFBSK  = ''.
    See the my sample program : This is sales report by monthly..
    REPORT ZFDSALES_REPORT no standard page heading
                           message-id zwave.
    Data Declaration Part
    TYPE-POOLS
    type-pools : slis.
    Tables
    tables : VBAK,
             VBAP.
    Internal table for VBAK Table
    data : begin of i_vbak occurs 0,
           vbeln like vbak-vbeln,
           bstnk like vbak-bstnk,
           vdatu like vbak-vdatu,
           end of i_vbak.
    Internal table for VBAP and MATNR
    data : begin of i_vbap occurs 0,
           vbeln like vbap-vbeln,
           matnr like vbap-matnr,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr like vbap-netpr,
           maktx like makt-maktx,
           end of i_vbap.
    Internal tables
    data : begin of i_sales occurs 0,
           vdatu like vbak-vdatu,
           bstnk like vbak-bstnk,
           matnr like vbap-matnr,
           maktx like makt-maktx,
           kdmat like vbap-kdmat,
           kwmeng like vbap-kwmeng,
           netpr  like vbap-netpr,
           end of i_sales.
    Variable for ALV
    data : v_repid like sy-repid,
           gt_fieldcat    type slis_t_fieldcat_alv.
    Selection-screen
    selection-screen : begin of block blk with frame title text-001.
    select-options : s_vbeln for vbak-vbeln,
                     s_erdat for vbak-erdat,
                     s_ernam for vbak-ernam,
                     s_vdatu for vbak-vdatu obligatory,
                     s_BSTNK for vbak-BSTNK,
                     s_KUNNR for vbak-kunnr,
                     s_matnr for vbap-matnr,
                     s_KDMAT for vbap-KDMAT.
    selection-screen : end of block blk.
    Initilization
    initialization.
      v_repid = sy-repid.
    S T A R T  -  O F  -  S E L E C T I O N ****************
    start-of-selection.
    Get the data from VBAK and VBAP Tables
      perform get_vbak_vbap.
    E N D  -  O F  -  S E L E C T I O N *****************
    end-of-selection.
    Display the data
      perform dispolay_data.
    *&      Form  get_vbak_vbap
          Get the data from VBAK and VBAP Table
    FORM get_vbak_vbap.
    Get the data from VBAK Table
      select vbeln bstnk vdatu from vbak into table i_vbak
                         where vbeln in s_vbeln
                         and   bstnk in s_bstnk
                         and   vdatu in s_vdatu
                         and   kunnr in s_kunnr
                         and   erdat in s_erdat
                         and   ernam in s_ernam.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
    Get the data from VBAP Table
      select avbeln amatnr akdmat akwmeng a~netpr
             b~maktx into table i_vbap
             from vbap as a inner join makt as b on bmatnr = amatnr
             for all entries in i_vbak
             where a~vbeln in s_vbeln
             and   a~kdmat in s_kdmat
             and   a~abgru = space
             and   a~matnr in s_matnr
             and   a~matnr ne '000000000000009999'
             and   a~matnr ne '000000000000004444'
             and   a~matnr ne '000000000000008888'
             and   a~matnr ne '000000000000001111'
             and   a~werks = '1000'
             and   b~spras = 'E'
             and   a~vbeln = i_vbak-vbeln.
      if sy-subrc ne 0.
        message e000(zwave) with 'No data found for given selection'.
      endif.
      sort i_vbak by vbeln.
      sort i_vbap by vbeln matnr.
      loop at i_vbap.
        read table i_vbak with key vbeln = i_vbap-vbeln
                                binary search.
        if sy-subrc eq 0.
          i_sales-bstnk = i_vbak-bstnk.
          i_sales-vdatu = i_vbak-vdatu.
          i_sales-matnr = i_vbap-matnr.
          i_sales-kdmat = i_vbap-kdmat.
          i_sales-maktx = i_vbap-maktx.
          i_sales-netpr = i_vbap-netpr.
          i_sales-kwmeng = i_vbap-kwmeng.
          append i_sales.
        else.
          continue.
        endif.
        clear : i_sales,
                i_vbap,
                i_vbak.
      endloop.
      sort i_sales by vdatu bstnk matnr.
      refresh : i_vbap,
                i_vbak.
    ENDFORM.                    " get_vbak_vbap
    *&      Form  dispolay_data
          Display the data
    FORM dispolay_data.
    Fill the Fiedlcat
      PERFORM fieldcat_init  using gt_fieldcat[].
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
      I_INTERFACE_CHECK                 = ' '
      I_BYPASSING_BUFFER                =
      I_BUFFER_ACTIVE                   = ' '
          I_CALLBACK_PROGRAM                = v_repid
      I_CALLBACK_PF_STATUS_SET          = ' '
      I_CALLBACK_USER_COMMAND           = ' '
      I_CALLBACK_TOP_OF_PAGE            = ' '
      I_CALLBACK_HTML_TOP_OF_PAGE       = ' '
      I_CALLBACK_HTML_END_OF_LIST       = ' '
      I_STRUCTURE_NAME                  =
      I_BACKGROUND_ID                   = ' '
      I_GRID_TITLE                      =
      I_GRID_SETTINGS                   =
      IS_LAYOUT                         =
          IT_FIELDCAT                       = gt_fieldcat[]
      IT_EXCLUDING                      =
      IT_SPECIAL_GROUPS                 =
      IT_SORT                           =
      IT_FILTER                         =
      IS_SEL_HIDE                       =
      I_DEFAULT                         = 'X'
      I_SAVE                            = ' '
      IS_VARIANT                        =
      IT_EVENTS                         =
      IT_EVENT_EXIT                     =
      IS_PRINT                          =
      IS_REPREP_ID                      =
      I_SCREEN_START_COLUMN             = 0
      I_SCREEN_START_LINE               = 0
      I_SCREEN_END_COLUMN               = 0
      I_SCREEN_END_LINE                 = 0
      IT_ALV_GRAPHICS                   =
      IT_ADD_FIELDCAT                   =
      IT_HYPERLINK                      =
      I_HTML_HEIGHT_TOP                 =
      I_HTML_HEIGHT_END                 =
      IT_EXCEPT_QINFO                   =
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER           =
      ES_EXIT_CAUSED_BY_USER            =
        TABLES
          T_OUTTAB                          = i_sales
    EXCEPTIONS
      PROGRAM_ERROR                     = 1
      OTHERS                            = 2
    ENDFORM.                    " dispolay_data
    *&      Form  fieldcat_init
          text
         -->P_GT_FIELDCAT[]  text
    FORM fieldcat_init USING  e01_lt_fieldcat type slis_t_fieldcat_alv.
      DATA: LS_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    Delivery Date
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'VDATU'.
      LS_FIELDCAT-OUTPUTLEN    = 12.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Delivery Date'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Purchase Order #Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'BSTNK'.
      LS_FIELDCAT-OUTPUTLEN    = 25.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Purchase Order #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-REF_FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-REF_TABNAME    = 'MARA'.
      LS_FIELDCAT-FIELDNAME    = 'MATNR'.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material #'.
      ls_fieldcat-seltext_M = 'Material #'.
      ls_fieldcat-seltext_S = 'Material #'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Material Description
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'MAKTX'.
      LS_FIELDCAT-OUTPUTLEN    = 40.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Material Description'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Customer Material #
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KDMAT'.
      LS_FIELDCAT-OUTPUTLEN    = 35.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Customer material no.'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Quantity
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'KWMENG'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Quantity'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    Net Price
      CLEAR LS_FIELDCAT.
      LS_FIELDCAT-FIELDNAME    = 'NETPR'.
      LS_FIELDCAT-OUTPUTLEN    = 15.
      LS_FIELDCAT-TABNAME    = 'I_SALES'.
      ls_fieldcat-seltext_L = 'Net Price'.
      APPEND LS_FIELDCAT TO E01_LT_FIELDCAT.
    ENDFORM.                    " fieldcat_init
    Reward Points if it is helpful
    Thanks
    Seshu

  • How to develop a report for display unused materials

    how to develop a report for display unused materials? where can i find them?

    Hi Phani,
    I didnt get what u acually mean by unsued material. These are some sample materail types which u can find in table 'Mara'  field 'Mtart'.
    ABF  Waste                   
    AEM  Samples                 
    BLG  BLG Empties  External   
    BLGA BLGAEmpties  Fixed assets
    CH00 CH Contract Handling    
    COMP Prod. alloc., purchased 
    CONT KANBAN Container        
    COUP Coupons                 
    DIEN Service                 
    DOCU documentary batch       
    ERSA Spare parts             
    FERT Finished product(fert)  
    FGTR Drinks                  
    FHMI Prod. resources/tools   
    FOOD Foods (excl. perishables)
    FRIP Perishables             
    GR01 material type 01        
    GR02 material type 02        
    HALB Semi-finished product   
    HAWA Trading goods           
    HERS Manufacturer parts      
    HIBE Operating supplies      
    IBAU Maintenance assembly    
    INTR Intra material          
    KMAT Configurable material   
    LEER Empties                 
    LEIH Returnable packaging    
    LGUT Empties (retail)        
    MODE Apparel (seasonal)      
    NLAG Non-stock material      
    NOF1 Nonfoods                
    PIPE Pipeline material       
    PLAN Trading goods (planned) 
    etc.
    ex:
    select * from mara where mtart = 'ABF'.
    Regards,
    Kiran B

  • How we can get report for system shutdown for perticular year.

    Dear Friend,
    How we can get report for system shutdown for perticular year.
    i.e. i want to know at what time and what date system has been shutdown for ther of 2006.
    Thanks,
    Sachin

    Dear Sir,
    Thanks,
    But from system log file SM21 i have got only the time not date on which it has been shutdown and restart.
    And another thing is that 15 dats before Log file data is atomatically deleted, so cant get it back.
    Can you provide me is any another solution? i.e by heating perticular T code report come>
    Sachin

  • How to  Export/Import "report for the query" to another company

    Hello,
    I do this:
    1.create query in SQL analizer
    2.copy paste into SBO query generator and save
    3.create report for the query
    Then, How to Export/Import "report for the query" to another company ?
    Thanks for your HELP.

    Look for SAP Note number 600813
    That's the note Adele means, I guess.
    <b>Edit (@13:18)</b>
    The direct link:
    https://websmp101.sap-ag.de/~sapidb/012006153200000183292003E.ITF
    ---- Replace *SOURCE* with the source database name.
    ---- Replace *DEST* with the destination database name.
    insert into [*DEST*].[dbo].[RDOC]
    select [*SOURCE*].[dbo].[RDOC].*
    from
    [*SOURCE*].[dbo].[RDOC],[*DEST*].[dbo].[cinf],[*SOURCE*].[dbo].[cinf]
    where [*DEST*].[dbo].[cinf].[lawsset]=[*SOURCE*].[dbo].[cinf].[lawsset]and [*DEST*].[dbo].[cinf].[version]=[*SOURCE*].[dbo].[cinf].[version] and [*SOURCE*].[dbo].[RDOC].[Doccode]NOT IN (SELECT Doccode from [*DEST*].[dbo].[RDOC])
    insert into [*DEST*].[dbo].[RITM]
    select [*SOURCE*].[dbo].[RITM].*
    from [*SOURCE*].[dbo].[RITM],[*DEST*].[dbo].[cinf],[*SOURCE*].[dbo].[cinf] where [*SOURCE*].[dbo].[RITM].[Doccode] NOT IN (select Doccode from [*DEST*].[dbo].[RITM])AND [*SOURCE*].[dbo].[RITM].[Doccode]IN (SELECT Doccode from [*DEST*].[dbo].[RDOC])
    Hope it helps...
    Grtz, Rowdy

  • How to take a report for the assigned transaction and activity in a role

    Hi Colleagues,
    I want to take a report for the assigned transaction with activity for all roles, which are assigned to the users,
    Transaction list for a role i can able to take it from SUIM but not able to take the ACTVT for the role.
    Please suggest how to take this information.
    BR,
    Jai

    Hi Jaikumar from the post :
    I think you have reached the state of finding the USER to ROLE relationship
    Take the output to an excel,
    COPY just the roles column exactly in order do not rearrange , use AGR_1251 like other experts have mentioned
    insert the roles copied from you buffer and execute, the output will have multiple entries for each role take the output to an EXCEL again , make it unique and match the outputs between both the EXCELS.
    It will be a little tricky to do this, but I think you are proficient in MS EXCEL.
    This is one of the ways to do , there are many other ways to do it.

  • How to find the report for the SAP query (Query exists in table AQLQCAT)

    Hello Experts,
    I need to find the tables used in the SAP Query but i don't have access to transaction SQ01,SQ02 and SQ03 to check the same.
    Therefore i checked table AQLQCAT and got the SAP Queries in the system. Then searched for the reports that would have been generated for the same passing  AQusergroupquery name*  in transaction SE38.
    But unfortunately the program does not exists for the given paramenter.
    Could you please let me know how to get the report name for the SAP Query.
    Secondly please suggest any other way of checking the tables used in the SAP Query.
    Also the table name from where i can download the SAP Queries.
    Thanks in advance.
    Regards,
    Rahul Sinha

    I suggest you a simple method.
    Execute the query. When the selection screen is showed,  go to menu and click to SYSTEM->STATUS.
    Check the program name and double click it to access the program code.
    Search for tables or functions into the source code in order to understand where data are taken.
    If you do not find anything , go to the program atttribute and check for logic database, sometimes they are used....
    Best regards.

  • How to interprete db_stats report for -m option

    Hi
    please help me to interprete the db_stats report (for -m option).
    What is the total number of pages created by DB? (It is "Current page count" or "The number of page allocations").
    what is " Total number of times hash chains searched for a page" , "Total number of hash chain entries checked for page" and " Requested pages found in the cache" ( we see really huge numbers there when XML file size is increased)
    Thanks,
    Santhosh

    Hi Santhosh,
    Here are some explanations on the memory pool (cache) statistics:
    - “The number of page allocations” (st_alloc)
         This accounts for the total number of page allocations made by BDB. We allocate pages in the memory pool when we create, open and rename a file in the memory pool, when we get a page from a database file, when we resize the memory pool, when we create and extend the free page list, etc. This value is grow-only.
    - “Current total page count” (st_pages)
         This represents the number of pages found in the cache (both clean, with non-updated content, and dirty, with updated content). So, this equals the sum of the “Current clean page count” (st_page_clean) and the “Current dirty page count” (st_page_dirty).
    - “Requested pages found in the cache” (st_cache_hit)
         This represents the total number of requests for database pages that were satisfied with pages existing in the memory pool. The percent value represents the cache hit rate, that is, how many requested pages were found in the cache, and it’s calculated using the formula “st_cache_hit / (st_cache_hit + st_cache_miss)”.
    - “Requested pages not found in the cache” (st_cache_miss)
         This is the total number of requested pages that were not served directly from cache and had to be read from disk. You can determine a miss rate value, using the following formula: “st_cache_miss / (st_cache_miss + st_cache_hit)”; or, you may substract the hit rate from 100%. A higher hit rate means a hotter cache; details on how to appropriately size the cache is here:
    http://www.oracle.com/technology/documentation/berkeley-db/db/ref/am_conf/cachesize.html
    - “Number of hash buckets used for page location” (st_hash_buckets)
         We organize and manage the cache buffer space using hash buckets; each hash bucket has a hash chain associated where its entries (hash chain entries) refer to buffers in the memory pool space. Thus, this value represents the number of hash buckets we’re using for administering pages in the memory pool.
    - “Total number of times hash chains searched for a page” (st_hash_searches)
         This value accounts for the total number of times we’ve inspected the hash chains when searching for a page in the cache (memory pool).
    - “Total number of hash chain entries checked for a page” (st_hash_examined)
         This value represents the total number of entries in cache’s hash bucket chains we’ve examined when looking for a page.
    When the container’s/database’s size increases, the number of pages that comprise the file will increase as well. The statistics you’ve mentioned are grow-only, so their values increase during the lifetime of the application.
    Let me know if this information is helpful and if you need further clarification.
    Regards,
    Andrei

  • How to read statspack report

    I want to learn how can i read the statspack report and find out where is problem. Is any one have the helpfull doc about the reading statspack report please send me.
    Thanks

    Sear at google, fro statspack, you will find bulk of good links for the same.
    Also, search at http://asktom.oracle.com.
    If you have metalink access, it has couple of good notes on how to evaluate statspack.report.
    There are couple of sites where you can upload your statspack report and it can give you the analysis. (www.oraperf.com is one of the site).
    Jaffar

  • How to schedule one report for multiple company code?

    How you can schedule reports in BW 3.5? Suppose I need to schedule one report for multiple company code, how can you do that and notify the users? I do not want to send multiple emails to the same user if the report runs for 20 times (for 20 different companies).
    points are given for ASAP replies.
    Thanks in advance
    Peter

    Dear Peter,
    Try to restrict the Company Code with  those 20 values and schedule.
    Regards,
    Ramkumar.

  • How to read Crystal Reports Parameters

    I am  using vs 2010 ,Crystal Reports, VB.Net ,  ASP.Net 4.0 and Telerik control RADCOMBOBOX.
    I what to be able to read a reports parameter values and populate the RADCOMBOBOX with the values of the
    Crystal Report Parameters.
    How do I read; get access to those report parameters.  The parameters for the report may be one to mutiple parameters.
    Thanks  in advance... I'm under the gun

    Hi,
    The parameter fields on the report can be accessed  using the In Proc RAS .NET SDK.
    Take a look at the Crystal Reprots for Visual Studio 2010 [RAS .NET SDK Developer Guide |http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_dg_en.zip] and the [API Reference Guide|http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/xi4_rassdk_net_api_en.zip]
    Sample applications are available [here|http://www.sdn.sap.com/irj/boc/samples?rid=/webcontent/uuid/b02c1cac-ad86-2b10-88ae-cb36551bab06].
    Hope it helps,
    Bhushan.

  • Could any one teel me how to see coverage report for core1_mini regression

    Hi every one:
    I would like to see coverage report for core1_mini regression with vcs. I used the follow command:
    sims -sim_type=vcs -vcs_build -vcs_use_cm -vcs_cm_args="line+cond+fsm+tgl" -group=core1_mini.
    After simulation, 4 files have been generated:
    cm_data.line,cm_data.cond,cm_data.fsm,cm_data.tgl.
    (under /coverage/verilog)
    Are these four file for all tests(mini regression 68 tests totally)?
    Is it true? shall I moify somewhere in sims,1.262 ,for example vcs_cm_merge? I feel a little confussed.
    Thanks in advance!

    If Remote wipe is activated it can't be undone. And Once the Wipe is done, the device can nö longer be tracked.
    Sorry.

  • How to create a report for open sales orde documents which are not invoiced

    Hi Experts this is urgent,
    +pls give the Logic for document flow+
    My requirement is create a report for sales orders which are not invoiced  using the following table.
    VBAK : sales order header
    VBAP : sales order item
    VBFA : sales document flow
    VBUK for processing status
    KOMV for duties value and sales order value
    LIKP : delivery not header
    LIPS :delivery note item
    For information : In the header level the processing Status is indicated in the table VBUK field LFSTK for one sales order number. A,B , C are the possible entries.
    Case A : When a sales order is invoiced we can display information on the header status :
    Overall status : Completed  and display a invoice number in the document flow. When the items of the sales orders are invoiced the process status is the following :  Overall status       Completed            
    Delivery status      Fully delivered      
    Case B : An open sales order not delivered and not invoiced will have overall status : Open on the header and item level and will not have subsequent documents.
    Case C :
    When the items for the sales order are delivered but not invoiced the status will be u201Cfully deliveredu201D
    And the subsequent documents will be delivery notes and good issue if the delivery note is issued.
    With regards
    ravi
    Edited by: ravik ravik on Jun 25, 2008 3:29 PM

    Hello Ravi,
    U neednot develop any report..
    there is std report with txn V.02
    or copy this and make necessary changes.
    Reward, if helpful.
    Rgds,
    Raghu.

  • Macbook keeps crashing..how to read crash report?

    I am trying to figure out why my macbook keeps crashing. I took it into the apple store, they ran all kinds of diagnostic tests on it, and said everything looks fine. However, it keeps crashing. I've noticed that it crashes when:
    1) I open chrome, play a hulu video in chrome (or most flash video players)
    2) Often times when I drag a folder into itunes
    3) Open sonos music player and drag through songs (not all the time, but many times after it's been used a lot)
    It doesn't happen consistently with all of these instances, but with chrome it happens the most.  I'm not sure how to read these crash reports.. can someone help? It looks like a driver issue, but not sure.
    Interval Since Last Panic Report:  422441 sec
    Panics Since Last Report:          11
    Anonymous UUID:                    A88211BE-4F1E-4DE4-8812-A21E9C7EDACD
    Sat Aug 25 12:26:37 2012
    panic(cpu 0 caller 0xffffff7f80984947): NVRM[0/1:0:0]: Read Error 0x00000100: CFG 0xffffffff 0xffffffff 0xffffffff, BAR0 0xd2000000 0xffffff8113d3e000 0x0a5480a2, D0, P3/4
    Backtrace (CPU 0), Frame : Return Address
    0xffffff812f292e70 : 0xffffff8000220792
    0xffffff812f292ef0 : 0xffffff7f80984947
    0xffffff812f292f80 : 0xffffff7f80a74aa4
    0xffffff812f292fd0 : 0xffffff7f80a74b64
    0xffffff812f293030 : 0xffffff7f80d21749
    0xffffff812f293170 : 0xffffff7f80a93bed
    0xffffff812f2931a0 : 0xffffff7f8098e2c2
    0xffffff812f293250 : 0xffffff7f80989bc4
    0xffffff812f293440 : 0xffffff7f8098ae97
    0xffffff812f293500 : 0xffffff7f817fa336
    0xffffff812f293610 : 0xffffff7f817fa863
    0xffffff812f293630 : 0xffffff7f817c0498
    0xffffff812f293640 : 0xffffff7f817f9e67
    0xffffff812f293650 : 0xffffff7f817bfaca
    0xffffff812f293660 : 0xffffff7f817fa842
    0xffffff812f293680 : 0xffffff7f817c4220
    0xffffff812f2936c0 : 0xffffff7f817c102f
    0xffffff812f2936f0 : 0xffffff7f81829c3e
    0xffffff812f293770 : 0xffffff7f8181444b
    0xffffff812f2937d0 : 0xffffff7f81814846
    0xffffff812f293820 : 0xffffff7f81814abb
    0xffffff812f2938b0 : 0xffffff7f8181580f
    0xffffff812f2938e0 : 0xffffff7f817cd0b0
    0xffffff812f293aa0 : 0xffffff7f81815f68
    0xffffff812f293b60 : 0xffffff7f817ca119
    0xffffff812f293bc0 : 0xffffff800065501e
    0xffffff812f293be0 : 0xffffff80006558fa
    0xffffff812f293c40 : 0xffffff800065609b
    0xffffff812f293d80 : 0xffffff80002a3f08
    0xffffff812f293e80 : 0xffffff8000223096
    0xffffff812f293eb0 : 0xffffff80002148a9
    0xffffff812f293f10 : 0xffffff800021bbd8
    0xffffff812f293f70 : 0xffffff80002aef20
    0xffffff812f293fb0 : 0xffffff80002daa33
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(7.1.8)[560E1257-BF5E-3B0B-95F0-15033A0D1B97]@0xffffff7f809 24000->0xffffff7f80bfdfff
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)[06C77CAA-586C-3AA7-94B7-A544F470025E]@0xffff ff7f8087f000
                dependency: com.apple.iokit.IONDRVSupport(2.3.2)[D05CFB53-FB72-3613-8162-2D188DB04738]@0xff ffff7f80912000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[2D2A4A31-EB4F-3730-BE3A-76C061685FC5]@0 xffffff7f808da000
             com.apple.nvidia.nv50hal(7.1.8)[7596DB8C-AE9D-3C87-B11A-0ED8F940CAF8]@0xffffff7 f80bfe000->0xffffff7f80f1ffff
                dependency: com.apple.NVDAResman(7.1.8)[560E1257-BF5E-3B0B-95F0-15033A0D1B97]@0xffffff7f809 24000
             com.apple.GeForce(7.1.8)[00925AF3-22EE-3858-8BD3-06AE57DFCC86]@0xffffff7f817bf0 00->0xffffff7f8187efff
                dependency: com.apple.NVDAResman(7.1.8)[560E1257-BF5E-3B0B-95F0-15033A0D1B97]@0xffffff7f809 24000
                dependency: com.apple.iokit.IONDRVSupport(2.3.2)[D05CFB53-FB72-3613-8162-2D188DB04738]@0xff ffff7f80912000
                dependency: com.apple.iokit.IOPCIFamily(2.6.8)[06C77CAA-586C-3AA7-94B7-A544F470025E]@0xffff ff7f8087f000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.2)[2D2A4A31-EB4F-3730-BE3A-76C061685FC5]@0 xffffff7f808da000
    BSD process name corresponding to current thread: WindowServer
    Mac OS version:
    11E53
    Kernel version:
    Darwin Kernel Version 11.4.0: Mon Apr  9 19:32:15 PDT 2012; root:xnu-1699.26.8~1/RELEASE_X86_64
    Kernel UUID: A8ED611D-FB0F-3729-8392-E7A32C5E7D74
    System model name: MacBookPro6,2 (Mac-F22586C8)
    System uptime in nanoseconds: 40384214051686
    last loaded kext at 15686064888167: com.apple.driver.AppleUSBCDC    4.1.17 (addr 0xffffff7f807cd000, size 16384)
    last unloaded kext at 15788181238822: com.apple.driver.AppleUSBCDC    4.1.17 (addr 0xffffff7f807cd000, size 12288)
    loaded kexts:
    com.vmware.kext.vmnet    3.0.0
    com.vmware.kext.vmioplug    3.0.0
    com.vmware.kext.vmci    3.0.0
    com.vmware.kext.vmx86    3.0.0
    com.rogueamoeba.hermes    4.1.0
    com.Cycling74.driver.Soundflower    1.6.2
    com.jft.driver.PdaNetDrv    1.0.64
    com.rogueamoeba.HermesAudio    4.1.0
    com.apple.filesystems.smbfs    1.7.2
    com.apple.driver.AppleIntelProfile    85.2
    com.apple.driver.AppleHWSensor    1.9.5d0
    com.apple.filesystems.autofs    3.0
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AppleHDA    2.2.0f3
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleMCCSControl    1.0.26
    com.apple.driver.AppleMikeyDriver    2.2.0f3
    com.apple.driver.AudioAUUC    1.59
    com.apple.driver.AGPM    100.12.42
    com.apple.driver.AppleIntelHDGraphics    7.1.8
    com.apple.driver.AppleIntelHDGraphicsFB    7.1.8
    com.apple.driver.SMCMotionSensor    3.0.2d6
    com.apple.driver.AppleSMCPDRC    5.0.0d0
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager    4.0.5f11
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.2
    com.apple.driver.ACPI_SMC_PlatformPlugin    5.0.0d0
    com.apple.driver.AppleMuxControl    3.0.16
    com.apple.GeForce    7.1.8
    com.apple.driver.AppleLPC    1.5.8
    com.apple.driver.AppleUSBTCButtons    225.2
    com.apple.driver.BroadcomUSBBluetoothHCIController    4.0.5f11
    com.apple.driver.AppleUSBTCKeyboard    225.2
    com.apple.driver.AppleIRController    312
    com.apple.driver.AppleUSBCardReader    3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    33
    com.apple.iokit.SCSITaskUserClient    3.2.0
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCISerialATAPI    2.0.3
    com.apple.iokit.IOAHCIBlockStorage    2.0.3
    com.apple.iokit.AppleBCM5701Ethernet    3.1.2b2
    com.apple.driver.AppleUSBHub    4.5.0
    com.apple.driver.AppleFWOHCI    4.8.9
    com.apple.driver.AirPort.Brcm4331    530.4.20
    com.apple.driver.AppleEFINVRAM    1.5.0
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleAHCIPort    2.3.0
    com.apple.driver.AppleUSBEHCI    4.5.8
    com.apple.driver.AppleACPIButtons    1.5
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.6
    com.apple.driver.AppleSMBIOS    1.8
    com.apple.driver.AppleACPIEC    1.5
    com.apple.driver.AppleAPIC    1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient    193.0.0
    com.apple.nke.applicationfirewall    3.2.30
    com.apple.security.quarantine    1.3
    com.apple.driver.AppleIntelCPUPowerManagement    193.0.0
    com.apple.driver.AppleProfileTimestampAction    85.2
    com.apple.driver.AppleProfileThreadInfoAction    85.2
    com.apple.driver.AppleProfileRegisterStateAction    85.2
    com.apple.driver.AppleProfileReadCounterAction    85.2
    com.apple.driver.AppleProfileKEventAction    85.2
    com.apple.driver.AppleProfileCallstackAction    85.2
    com.apple.iokit.AppleProfileFamily    85.2
    com.apple.kext.triggers    1.0
    com.apple.driver.DspFuncLib    2.2.0f3
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.iokit.IOSurface    80.0.2
    com.apple.iokit.IOFireWireIP    2.2.4
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.driver.AppleHDAController    2.2.0f3
    com.apple.iokit.IOHDAFamily    2.2.0f3
    com.apple.iokit.IOAudioFamily    1.8.6fc17
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.ApplePolicyControl    3.0.16
    com.apple.driver.AppleSMC    3.1.3d8
    com.apple.driver.IOPlatformPluginLegacy    5.0.0d0
    com.apple.driver.AppleGraphicsControl    3.0.16
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.IOPlatformPluginFamily    5.1.0d17
    com.apple.driver.AppleBacklightExpert    1.0.3
    com.apple.nvidia.nv50hal    7.1.8
    com.apple.NVDAResman    7.1.8
    com.apple.iokit.IONDRVSupport    2.3.2
    com.apple.iokit.IOGraphicsFamily    2.3.2
    com.apple.driver.AppleUSBBluetoothHCIController    4.0.5f11
    com.apple.iokit.IOBluetoothFamily    4.0.5f11
    com.apple.driver.AppleUSBMultitouch    227.1
    com.apple.iokit.IOUSBHIDDriver    4.4.5
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.2.0
    com.apple.iokit.IOUSBMassStorageClass    3.0.1
    com.apple.driver.AppleUSBMergeNub    4.5.3
    com.apple.driver.AppleUSBComposite    4.5.8
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.2.0
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.7
    com.apple.iokit.IOCDStorageFamily    1.7
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.2.0
    com.apple.iokit.IOEthernetAVBController    1.0.1b1
    com.apple.iokit.IOUSBUserClient    4.5.8
    com.apple.iokit.IOFireWireFamily    4.4.5
    com.apple.iokit.IO80211Family    420.3
    com.apple.iokit.IONetworkingFamily    2.1
    com.apple.iokit.IOAHCIFamily    2.0.8
    com.apple.iokit.IOUSBFamily    4.5.8
    com.apple.driver.AppleEFIRuntime    1.5.0
    com.apple.iokit.IOHIDFamily    1.7.1
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    177.5
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    331.6
    com.apple.iokit.IOStorageFamily    1.7.1
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.5
    com.apple.iokit.IOPCIFamily    2.6.8
    com.apple.iokit.IOACPIFamily    1.4

    "I took it into the apple store, they ran all kinds of diagnostic tests on it, and said everything looks fine."
    It's because they're just a bunch of amateurs.
    All they can do is wear a cool tee-shirt and read you is what it written on the label (in case you don't know how to read, it helps).
    I have the same problem since I installed Maverick (supposedly the BEST ever) : My computer has never crashed so much since then !
    It crashes about every 50 minutes when I (try to) work, almost everytime the computer recovers from sleep, when I launch iTunes (their own software !!!), ...
    I remember those cool guys making fun of the competition ; they're now at the exact same point ! Good job guys !!!

  • How to get Crystal Reports for Visual studio Download

    I'm confused!  All the links seem to take me to this page SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
    It has lots of fixes and updates but I can't seem to find the actual Crystal reports for Visual Studio 2010 download.  What am I missing?  Am I just blind?
    EDIT - I reread the page "All support packs are full builds of Crystal Reports for Visual Studio 2010/2012, thus it is not necessary to update incrementally"  Does this mean  the update download includes everything I need to integrate CR with my Visual Studio 2010?  If so, is it save to install the update over a previously installed version?  I have one machine that has both CR for VS 2005 and CR for VS 2010.
    thanks for any advise

    Does this mean  the update download includes everything I need to integrate CR with my Visual Studio 2010?
    Yes.
    Follow the below procedure to integrate CR for VS 2010 with VS 2010.
    from the link http://scn.sap.com/docs/DOC-7824 download 'Support Pack 10 Install executable' (first row first column).
    Make sure you have VS 2010 installed. Now install the above downloaded exe on top of VS 2010.
    That is it, above steps should integrate CR with VS 2010.
    Even if you have a previous version of CR for VS 2010 installed, iw ould not make a difference as it is not a incremental build but a full build.
    I hope this clears the confusion.
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

Maybe you are looking for

  • Can anyone help me with this one?

    Process: PulpMotion [529] Path: /Applications/PulpMotion.app/Contents/MacOS/PulpMotion Identifier: com.aquafadas.PulpMotion Version: 1.5.1 (v3009) Code Type: X86 (Native) Parent Process: launchd [100] Date/Time: 2008-04-10 15:50:27.076 -0500 OS Versi

  • TS1474 i tried to add music files from portable drive and the files are not found

    now the drive is corrupt and unreadable what do I do?

  • HT1338 preview does not work with mountain lion

    I updated my mid 2011 mac mini to mountian lion and i find Preview and all of MS Office 2011 for MAC fails to work I can cut and paset the logs, but lets astart with assessing whagt does not work with Mountain Lion.

  • Filesystem space filling up

    Hello, I am running a batch job of database select queries and I see the filesystem is filling up quickly although this script is not generating any files in the diretcory it is running. What else could be filling up? I am not able to trace.

  • CRM Sales Order to SAP ECC troubleshooting

    Hi, I'm trying to replicate SAP CRM Sales order to SAP ECC, I have matched (transaction and document type, item categories). But when I create sales order in CRM, the following error occurs in the Web UI: Transmission log SALES_HEADER_IN has been pro