Print spool in a report

I have a spool number and i want to print from a report. How can I do it?

No it will just return the contents of spool in an internal table..
For printing use
GET_PRINT_PARAMETERS
CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING
      destination    = 'LOCL'
      copies         = 1
      list_name      = 'list1234'
      list_text      = 'Delivery consolidation rep for ASN'
      immediately    = 'X'
      release        = ' '
      new_list_id    = 'X'
      expiration     = 2
      line_size      = 79
      line_count     = 65
      layout         = 'X_PAPER'
      sap_cover_page = ' '
      receiver       = 'SAP*'
      department     = 'System'
      sap_object     = 'RS'
      ar_object      = 'TEST'
      archive_id     = 'XX'
      archive_info   = 'III'
      archive_text   = 'Description'
      archive_mode   = '1'
      no_dialog      = 'X'
    IMPORTING
      out_parameters = params.
Thanks.

Similar Messages

  • Send print spool to different system

    Dear Expert,
    Due to user authorization constrain, I would like to generate a report from another system, and the report will be saved in another system.
    Say,
    System A execute RFC to system B to generate a report, ie. the report is executed in system B,
    but the print spool of the report is in system A.
    Is this possible ?
    Edited by: Kokwei Wong on May 16, 2008 8:20 AM

    Hi Kokwei,
    Try using FM RFC_ABAP_INSTALL_AND_RUN.
    Check the sample code in url,
    http://books.google.co.in/books?id=6YU5-HqV5vIC&pg=PA347&lpg=PA347&dq=RFC_ABAP_INSTALL_AND_RUN+example&source=web&ots=8OjkobQjZF&sig=soHvxtD90vPmjqjL58dXwi9FXqI&hl=en#PPT380,M1
    Hope this helps
    Thanks
    Lakshman

  • How to monitor Print Spool folder in Business Objects XI R2 - Crystal report

    Hi Guru's
    We recently had a issue where disc space was full in BO server and it was down. The reason was there was one job in print spool folder which was eating up whole space in C drive.
    We had to stop the print spool service and delete the jobs and restart it back.
    In order to prevent this from happening what can be done??.
    One way that my client suggested is to write a script where in it will send us the size of print spool folder every hour so we can find the report which is causing this. I have no idea how this can be done.
    This happened once and I dont have an answer when my manager asks will it happen again. Is there a way where we can monitor this or stop this from happening.
    My current environment is
    BOXI R2 , crystal report XI is the reporting tool.
    Thanks.

    Normally you should run your CR reports in the INfoView. You can start a report either by double clicking on it or by selecting View in the context menu. Still in order to fetch data you have to press the Refresh button in the CR viewer window (in the InfoView).
    In the CMC I assume that you are using the Run now option in the context menu. Please note that this will just schedule your report immediatelly. hen the report is scheduled a new instance is created hich is available in the History of the report. In order to see a report in the CMC select again View in the context menu and you can again fetch data by pressing the Refresh button.
    Regards,
    Stratos

  • Printing ZPL (Zebra) data to printer spooler without character conversion

    Hi all,
    We are printing shipping labels from UPS, with a process where we recive the ZPL label code directly from UPS, and we just need to pass the data to the printer to get the labels. We have already implemented this with Fedex and some custom labels, and it works perfectly. The problem with the UPS label data is that it contains non-printable characters (in the MaxiCode data field). When passed to the SAP printer spooler (see code example below), the data gets corrupted because SAP interprets these non-printable characters as printer control codes.
    I have verified this by saving the ZPL data to a local file, before printing it through the SAP spooler. I then print this raw data and compare the output with the labels printed from the spooler. The MaxiCode (the big 2D barcode) is different in these labels. UPS has also tested the labels, and rejected them because of incorrect data in the barcode.
    For printing, we are using printers defined as type "PLAIN", but I also tried using the "LZEB2" device type with the same result. The error we see in the spooler entry is this:
    Print ctrl S_0D_ is not defined for this printer. Page 1, line 2, col. 2201
    Print output may not be as intended
    The printer ctrl code differs, depending om the label. I have examined the spooler data in "raw" mode, and there is always an ASCII character 28 (hex 1C) in front of the characters that SAP think are control codes, and this is why I think these non-printable characters are the reason for the problems.
    This is the function module I use to print the ZPL data (and as stated above, this works fine for Fedex and custom labels). The ZPL data is converted to binary format before passed to the function module, but I also tried to send the data in text format with another FM, but the result is the same. I have experimented with the "codepage" parameter, and this one gives the least amount of errors, and some labels actually get through without errors. But still at least 50% of the labels gets corrupted, with log entries like above.
    CALL FUNCTION 'RSPO_SR_WRITE_BINARY'
          EXPORTING
            handle           = lv_spool_handle
            data             = lv_label_line_bin
            length           = lv_len
            codepage         = '2010'
          EXCEPTIONS
            handle_not_valid = 1
            operation_failed = 2
            OTHERS           = 3.
    Does anyone know if there is a way to send data to the spooler without character conversion or interpretation of printer control codes? Or is there any other smart way to get around this problem?
    /Leif

    I do a more direct output to the spooler, to avoid any issues with the WRITE statement and SAP's report output processing. At the same time, I insert line breaks so that the output is easy to debug in the spooler if needed. Also included is the code to to detect the escape code (ASCII #28) and to insert a control code ZZUPS in its place (you can skip this for Fedex). Here's a simplified example, but please note this is for a Unicode system, some minor changes is required in a non-Unicode system.
    CONSTANTS: lc_spcode TYPE c LENGTH 5 VALUE 'ZZUPS',
               lc_xlen TYPE i VALUE 5.
       DATA: lv_print_params TYPE pri_params,
             lv_spool_handle TYPE sy-tabix,
             lv_name TYPE tsp01-rq0name,
             lv_spool_id TYPE rspoid,
             lv_crlf(2) TYPE c,
             lv_lf TYPE c,
             lstr_label_data TYPE zship_label_data_s,
             lv_label_line TYPE char512,
             lv_label_line_bin TYPE x LENGTH 1024,
             lv_len TYPE i,
             ltab_label_data_255 TYPE TABLE OF char512,
             ltab_label_data TYPE TABLE OF x,
             lv_c1 TYPE i,
             lv_c2 TYPE i,
             lv_cnt1 TYPE i,
             lv_cnt2 TYPE i,
             lv_x(2) TYPE x.
       FIELD-SYMBOLS: <n> TYPE x.
       lv_crlf = cl_abap_char_utilities=>cr_lf.
       lv_lf = lv_crlf+1(1).
       lv_name = 'ZPLLBL'.
    CALL FUNCTION 'RSPO_SR_OPEN'
         EXPORTING
           dest                   = i_dest
           name                   = lv_name
           prio                   = '5'
           immediate_print        = 'X'
           titleline              = i_title
           receiver               = sy-uname
    *      lifetime               = '0'
           doctype                = ''
         IMPORTING
           handle                 = lv_spool_handle
           spoolid                = lv_spool_id
         EXCEPTIONS
           device_missing         = 1
           name_twice             = 2
           no_such_device         = 3
           operation_failed       = 4
           OTHERS                 = 5.
       IF sy-subrc <> 0.
         RAISE spool_open_failed.
       ENDIF.
    LOOP AT i_label_data INTO lstr_label_data.
         CLEAR ltab_label_data_255.
         SPLIT lstr_label_data-label_data AT lv_lf INTO TABLE ltab_label_data_255.
         LOOP AT ltab_label_data_255 INTO lv_label_line.
           IF lv_label_line NE ''.
             lv_len = STRLEN( lv_label_line ).
    *       Convert character to hex type
             lv_c1 = 0.
             lv_c2 = 0.
             DO lv_len TIMES.
               ASSIGN lv_label_line+lv_c1(1) TO <n> CASTING.
               MOVE <n> TO lv_x.
               IF lv_x = 28.
                 lv_cnt1 = 0.
                 lv_label_line_bin+lv_c2(1) = lv_x.
                 lv_c2 = lv_c2 + 1.
                 DO lc_xlen TIMES.
                   ASSIGN lc_spcode+lv_cnt1(1) TO <n> CASTING.
                   MOVE <n> TO lv_x.
                   lv_cnt2 = lv_c2 + lv_cnt1.
                   lv_label_line_bin+lv_c2(2) = lv_x.
                   lv_c2 = lv_c2 + 2.
                   lv_cnt1 = lv_cnt1 + 1.
                   lv_len = lv_len + 1.
                 ENDDO.
               ELSE.
                 lv_label_line_bin+lv_c2(2) = lv_x.
                 lv_c2 = lv_c2 + 2.
               ENDIF.
               lv_c1 = lv_c1 + 1.
             ENDDO.
    *       Print binary data to spool
             lv_len = lv_len * 2. "Unicode is 2 bytes per character
             CALL FUNCTION 'RSPO_SR_WRITE_BINARY'
               EXPORTING
                 handle                 = lv_spool_handle
                 data                   = lv_label_line_bin
                 LENGTH                 = lv_len
               EXCEPTIONS
                 handle_not_valid       = 1
                 operation_failed       = 2
                 OTHERS                 = 3.
             IF sy-subrc <> 0.
               RAISE spool_write_failed.
             ENDIF.
           ENDIF.
         ENDLOOP.
       ENDLOOP.
       CALL FUNCTION 'RSPO_SR_CLOSE'
         EXPORTING
           handle = lv_spool_handle.
       IF sy-subrc <> 0.
         RAISE spool_close_failed.
       ENDIF.

  • Acrobat 8.1.7 -- Error 1920.Service Print Spooler?

    I have a valid key on an installed version of Adobe Acrobat 8.1.7. (AA8 Standard installed on a XP system) 
    It fails to create a PDF document and the Error 1920 apprears before it shuts down.
    When, per representative suggestion, I attempt to uninstall it and then re-install with the valid key, it then reports:
    Error 1920.Service Print Spooler (Spooler) failed to start.  Verify that you have sufficient priviledges to start system services. 
    I verified that I have a valid key on My Adobe using my email address, etc. 
    But I see no way out of this 'dead end'.  
    After attempting to remove or repair the installation in add/remove programs, I get the support info: 
    Adobe Acrobat 8.1.7 - CPSID_50029
    But when I go there I see nothing that tells me how to fix the problem.
    How do I unstall and re-install this so I can continue to use my AA8 on my XP system? 

    David:
    I found that helpful input, yes.
    The tech I spoke with told me to use a cleaner program to force erasure so
    I could reinstall it.
    He failed to tell me that you better be sure you have your original disk,
    because you can't download AA8 via a web.
    The best solution is to upgrade, which I would be more likely consider if
    some consideration were given for all the headaches of trying to get AA8
    back up and running.
    The principal being "If you can't make what I already have work, why should
    I pay for your update?"
    I will continue to look for the disc and let you know how that goes....
    Dave

  • PRINT SPOOL TO NETWORK PRINTER

    Hello All,
      I am working on scheduling Mass Activity Jobs using CPS. I am currently trying to use CPS to run the SAP_ABAPRUN definition. I have a requirement to print the output of the spool to a local printer. I have imported the output devices and provided the print parameters with the necessary values to print locally. The report runs fine and produces the spool in SP01 but i get the following error in CPS and no output on the printer.
    Can someone please advise where is can find help with this error.
    BAPI exception while calling BAPI_XBP_JOB_READ_SINGLE_SPOOL: E XM 064 No authorization to execute the operation [, , , ]
    at com.redwood.scheduler.connector.sap.rfc.jco2.connection.impl.ClientConnectionImpl.checkBapiReturnCode(ClientConnectionImpl.java:799)
    at com.redwood.scheduler.connector.sap.rfc.jco2.connection.impl.ClientConnectionImpl.call(ClientConnectionImpl.java:602)
    at com.redwood.scheduler.connector.sap.rfc.connection.AbstractRfcConnection$4.doPerform

    Hi,
    The important part of the message is:
    BAPI exception while calling BAPI_XBP_JOB_READ_SINGLE_SPOOL: E XM 064 No authorization to execute the operation , , ,
    This means the RFC user used to connect to the SAP system does not have all the required privileges.
    The documentation contains all the required privileges for the RFC user in the section on how to prepare an SAP system for use with SAP CPS.
    Regards,
    Anton Goselink

  • Spool Request Display Report

    Hello,
    Pleasure to be part of this community and ask the first question.
    I have created a report and probably, that report is going to be scheduled to run weekly.
    I want to understand how I can create a job and spool request display report for this program. I have found some information from this forum about SM36/SM37 T-Code and spool request display. However, I think I am not able to get the whole scenario of how it is going to work.
    If someone can give me an idea, that would be great. Practical examples will be appreciated.
    Regards,
    Udit

    I am assuming you will be scheduling this job manually and not programmatically.. The process is as follows..
    Goto SM36
    Enter a Job Name
    click on START Condition butto and click Date and Time button
    you will see a button PERIODIC VALUES appeared below.
    Click and select WEEKLY as you have indicated, SAVE it.
    Enter date and time so that it starts on that time and is scheduled everywk at that time
    You can enter NO START AFTER in case you want to restrict this.
    Then Click STEP
    You can enter program name variant and also select Printer specification
    And that should do the trick..
    Hope this helps

  • Error 372, Print Spooler Operation Failed

    I have 2 remote offices logging in to a Server 2012 R2 via RDS, i'm using the Easy print redirect for printing. I've this setup for about a year, 2 days ago users started reporting they could not print from RDS. I restarted the Print Spooler Service and
    resolved, then next day the first part of the day was fine then users again started to report unable to print. Now the only thing that resolves the issue is a reboot o the server. The event log reports Event ID: 372 and OpCode: Spooler Operation Failed. Anyone
    have any clues??
    Grant Hamilton

    Enable the Operational Print Service events and locate the corresponding 824 event for the failing print job.    If you have the April rollup from Windows Update installed on the machine, you can enable the job name in the event
    log.
    http://support.microsoft.com/kb/2919355/en-us
    Article with Group Policy name to set
    http://support.microsoft.com/kb/2938013/en-us
    There was a May update that came out two days ago. 
    http://support.microsoft.com/kb/2955164/en-us
    If you have this there was a couple changes relevant to RDS configurations.
    Alan Morris Windows Printing Team

  • Print spooler error 0x800706b9

    I have a Microsoft Windows 8.1 and an HP Desktop 2512.  My computer no longer recognizes my printer. I keep receiveing a print spooler error 0x800706b9  I have tried the net start spooler command but that has been unsuccessful. What next? Please help!

    Hey , Welcome to the HP Support Forums!
    I understand that you are no longer able to print from your Windows 8.1 computer to your HP Deskjet 2512 All-in-One Printer as your computer is reporting a 'Print Spooler Error: 0x800706b9'. I would like to assist you today with resolving this Print Spooler error. Now, just so you are aware, the Print Spooler is a feature of your Operating System. It is built into your Windows computer. Essentially, it is the print system built into your computer. Printers rely on the Print Spooler to be functioning in order to print. The Spooler is not specific to HP. Therefore, I will be able to offer you some standard computer troubleshooting steps. However, should the issue persist you may need to speak with Microsoft Support or the manufacturer of your computer to resolve this Operating System issue. With that being said, can I please have you follow the steps below to resolve this issue.  Step 1: Check Print Spooler: Open your Start screen by selecting the Windows button on the bottom left hand side of your computer screen or by selecting the Windows key on the bottom left of your keyboard, to the right of the Ctrl buttonIn the Start screen type RunClick on Run to launch the Run dialogue boxIn the Run box type services.msc and select OKWhen the Services window opens scroll down until you see Print SpoolerClick on Print Spooler once just to highlight itIf you see Start in the top left hand corner than that indicates that  your Print Spooler is in fact Stopped (not good). But we will leave this for now.If you see Stop or Restart in the top left hand corner than this indicates that your Print Spooler is actually Started. Please click on Stop to temporarily Stop the service.Minimize this window as we will  need to come back here Step 2: Check Spooler Folder: Reopen your Start screenType Computer. Click on Computer (or This PC) when it populates as a resultIn the Computer window select your C DriveClick on WindowsClick System32Click SpoolClick PRINTERS. You may get a permissions warning, just Continue past this.The PRINTERS folder should be empty. If there is any files in here they are corrupted print jobs. Right click on anything in this folder and 'delete' the files.Close the PRINTERS folder Step 3: Start Spooler and Check Dependencies:  1. Reopen the Services window we previously minimized 2. Click on Print Spooler again to highlight it 3. Click on Start in the top left corner 4. If you get an error message please take note of it 5. If the Print Spooler starts successfully you will see 'Stop and Restart' as your options in the top left 6. Next, double left click on Print Spooler. A Print Spooler Properties window will now open. Click on the Log On tab at the top. Can you please make sure this is set to Local System Account and make sure the box is checked to 'Allow Service to Interact with Desktop'. 7. Next, click on the 'Dependencies' tab. Please check what Dependencies are listed. I will need to know this should the issue persist once you complete the steps I'm providing in this post.   8. Click Apply and OK for any changes you may have made under the Log On tab. Close the Services window.  Once the Print Spooler Service has started successfully you should be able to access your HP Deskjet under the Devices and Printers folder on your Windows 8.1 computer. You should also be able to print. Can I please have you test printing at this point to confirm that the Print Spooler error has been resolved. Please respond to this post with the result of your troubleshooting. I look forward to hearing from you. Best of luck!

  • Difference in printer spooling between 2 similar macs

    I'm trying to figure out why there is a difference in how my 2 Macs spool a print file.
    Sending the same large (276mb) Photoshop file to the same printer (Epson 11880) connected directly (no print server)on same hardwired network using Bonjour, using the same driver version (3.89) and same PPD version (1.0) using the exact same settings within the driver, the file gets handled differently within the spool application.
    Here are the two computers, their specs and what happens.
    *Comp 1*
    Power Mac G5 \ Dual 2.0 \ 6 GB Ram \ OS X 10.4.11
    File takes approx 30 mins to leave photoshop. Once printer spooler opens it "processors" entire file (approx 10mins), then "spools" to printer and the printer starts to print.
    *Comp 2*
    Power Mac G5 \ Dual 1.8 \ 4 GB Ram \ OS X 10.4.11
    File take approx 20 mins to leave photoshop. Once printer spooler opens it begins to print pretty much right away and I assume is "processing" while "spooling"
    So, the slower computer prints the file faster :/
    How can I adjust the spooling on the Dual 2.0
    Thanks for any help or suggestions.

    I have read so many conflicting answers to how necessary it is to "de-frag" these drives, what's your take on this ?
    It's reported that OSX defrags itself over time, but only on files over a certain size, (20 MB?).
    With as much free space as you have, it's not all that important to defrag. That being said, I'm a tinkering freak, and whenever I defrag, I see improved performance, but a lot of it has to do with my slower drives & Macs, SATA shows less improvement by defraging. If you get less than 20% free space Degragging will have more effect, but for a short time of course.
    We still haven't found your problem, so I'd get Applejack...
    http://www.versiontracker.com/dyn/moreinfo/macosx/19596
    After installing, reboot holding down CMD+s, then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 5 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 5 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files!

  • Where is the printer spool file on my Mac ?

    I have a Mac Pro with 10.5.2 - and I print with 3 large Epson printers.
    I had a print that started to print (Photoshop CS3)- and I saw that it was not what I wanted. I canceled the print in the Epson icon (on the dock) - and I shut down the printer and reset it.
    But, when I turned the printer back on, the print started again.
    Where is the file that holds prints - the printer que or printer spool file - on the Mac?
    I have looked everywhere, and I cannot find such a folder anywhere. Anyone know where it is??
    I used the CUPS tool
    http://127.0.0.1:631/printers
    to finally get rid of it, but I still would like to know where that file is kept.
    Dick

    Unfortunately, even though when Apple announced Handoff and Continuity and said Bluetooth 4.X was required, not all Macs with Bluetooth 4+ are compatible with Handoff. If the checkbox in System Preferences -> General isn't there, your Mac isn't compatible with Handoff. You can confirm that by going to "About This Mac" under the Apple Menu and then selecting "System Report." Then select Bluetooth in the upper left and see if your Mac is Handoff compatible. I'm typing this reply on a 2011 MacBook Air with Bluetooth 4.3.1 and running Yosemite but it's not compatible with Handoff.
    You still will be able to make and receive phone calls on your Mac as long as your iPhone is within Bluetooth range. You can set that up in the FaceTime preferences. That's part of Continuity.
    I have seen some instructions + software on the Web to enable continuity on Macs with Bluetooth 4+ that otherwise aren't compatible with Handoff. You'll have to do a web search if that's something you're interested in learning about.
    Wish I had better news.

  • Printer spooler error when attempting to install Acrobat Pro (also Reader)

    I tried to install the trial version of Acrobat Pro today.  Installation would not complete due to an inability to stop the print spooler.
    After this failure to install, I was no longer able to access my printer via the previously installed Acrobat Reader.  I uninstalled Reader and attempted to reinstall it, only to discover the same print spooler problem.  Neither program will now install.
    I am running the latest version of Windows 8.  Can anybody help?

    Back with more information.
    After rebooting I successfully installed Acrobat Reader XI and established that it could contact the printer.
    I then tried to install the trial version of Acrobat Pro XI.  The procedure was slightly different this time, as this time it went via Adobe Creative Cloud, but the installation failed.
    The error report follows:
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example, ERROR:
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 3 error(s)
    ----------- Payload: Acrobat Professional 11.0.0.0 {23D3F585-AE29-4670-8E3E-64A0EFB29240} -----------
    ERROR: Error 2753.The File 'Aiod.dll' is not marked for installation.
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 2753.The File 'Aiod.dll' is not marked for installation.
    ERROR: Third party payload installer AcroPro.msi failed with exit code: 1603

  • Printer Spooler Error ???

    I have a C5250 I've been using the past few years, today I tried to print something (fails with all programs) and I got the error message "Operation could not be completed.  The printer spooler service is not running".  When I look at my printers from the control panel I see none..?  I tried to reload my driver and it says a later version of that driver is already installed.  What's the problem, and the fix? Thanks for any help you can provide

    Back with more information.
    After rebooting I successfully installed Acrobat Reader XI and established that it could contact the printer.
    I then tried to install the trial version of Acrobat Pro XI.  The procedure was slightly different this time, as this time it went via Adobe Creative Cloud, but the installation failed.
    The error report follows:
    Exit Code: 7
    Please see specific errors below for troubleshooting. For example, ERROR:
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 3 error(s)
    ----------- Payload: Acrobat Professional 11.0.0.0 {23D3F585-AE29-4670-8E3E-64A0EFB29240} -----------
    ERROR: Error 2753.The File 'Aiod.dll' is not marked for installation.
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 2753.The File 'Aiod.dll' is not marked for installation.
    ERROR: Third party payload installer AcroPro.msi failed with exit code: 1603

  • Problem window print spooler wont start/stay running

    Issue : Win8.1 print spooler wont start  or stops.    [ I have correctly/successfully installed Brother_2140 laser printer ]
    I have been furnished and must install a Diabetes handheld  meter driver for Onetouch Ultramini w/USB software & USB driver software v2(.3.3).  The Onetouch meter's USB cable and software install require that a print spooler be operational.  The Win8.1 print spooler will not start or stay running.  The win8.1 print spooler has many problems or issues according to the Microsoft web postings.
    After my issue has been resolved, please have your Lawyers contact Lifescan corporate Lawyers that the glucose meter's software & functionality Should NOT be dependent upon either Micrsoft or Laser printer vendors products.
    I am a diabetic who must report my blood sugar meter readings ASAP.   I am stuck inside during winter snow & ice. 
    I heed HP support of my Laptop w/embedded/bundled product  including  Micrsoft's  Win8  (Tech Support).
    As life gets more complicated, why does the liklihood that everthing complicated  work perfectly decrease.
    Regards,
    Ken Woods
    [edited personal information by Moderator]

    Good day sir,
    Sorry to hear about the issues experienced with the printer and certainly hope that things do get better.
    Do you have an HP printer or Brother printer?
    If Brother, unfortunately we are unable to assist with those in these forums.
    The Brother support forums are located here: http://www.brother-usa.com/askus/default.aspx?PGID=1#.VLbyySvF8nV
    Otherwise if you do have an HP printer, what is the model number so we can assist further?
    Best Regards

  • Print spooler service in windows 7

    i have windows 7 pro on laptop connected on  domain.print spooler keeps stopping all the time even if i manuaaly start it. it seems that rpc service too is stopping. here is some info from the event log i collected:
    Faulting application name: spoolsv.exe, version: 6.1.7600.16385, time stamp: 0x4a5bced7
    Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000
    Exception code: 0xc0000005
    Fault offset: 0x00000000
    Faulting process id: 0x12f0
    Faulting application start time: 0x01cb403ac3076db3
    Faulting application path: C:\windows\System32\spoolsv.exe
    Faulting module path: unknown
    Report Id: 10cc5def-ac2e-11df-b26e-705ab68ad603
    can anyone help about this before the need to format the system comes

    A detailed description of the Data Execution Prevention (DEP) feature in Windows XP Service Pack 2, Windows XP Tablet PC Edition 2005, and Windows
    Server 2003
    http://support.microsoft.com/kb/875352/en-us
    if the issue still persist, you can refer to the following steps to troubleshoot this issue.
    First, let’s make sure that the Print Spooler service is only dependent on the RPC service and HTTP.
    To do this, follow these steps:
    1.Click Start , type regedit in the Search box, and then press ENTER.
    2.Right-click Computer, click Export, Save a backup file on your desktop.
    NOTE: If an unexpected issue be encountered after modifying registry, please double click the backup file to restore registry.
    a. Locate and then click the following registry key:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Spooler
    b. In the details pane, if the DependOnService value shows values of RPCSS, HTTP and other key, right-click DependOnService, and then click Modify. 
    c. In the Value data box, delete other key, and then click OK. 
    3. Exit Registry Editor. 
    NOTE: If the HTTP cannot be found, it is normal, please continue to take following suggestions.
    Then, let’s take the following suggestions to troubleshoot this issue.
    Before trying the following Steps, please disconnected the Printer from the computer.
    Step 1:
    ===============================
    Click "Start", type "regedit" in Research Bare and press "Enter". Browse to the following registry key by clicking the PLUS (+) sign:
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Print\Printers
    Click the PLUS (+) sign to expand Printers key. All current printers installed on your computer are listed there. Please right click each subkey
    in it on the left pane and click "Delete".
    Step 2:
    ===============================
    Browse to the following registry key: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Print\Environments\Windows NTx86\Drivers\Version-3
    If its 64 bit edition need to Check Windows NTx64 folder and follow the Below step.
    Click the PLUS (+) sign to expand "Version-3". All printer drivers which have been installed on your computer will be listed there. Please right
    click each subkey in it on the left pane and click "Delete".
    Step 3:
    ===============================
    Locate and then expand the following registry key
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors
    View the list of subkeys. There should only be the following subkeys for the default print monitors:
    BJ Language Monitor
    Local Port
    PJL Language Monitor
    Standard TCP/IP Port
    USB Monitor
    If there are any subkeys other than the subkeys that are listed above has to be deleted. To do this, right-click each subkey that is not on the
    list, and then click Delete. Click Yes when you are prompted to confirm the deletion.
    Step 4:
    ===============================
    Restart your computer and start pressing the F8 key on your keyboard.
    Go to safe mode.
    Open "My Computer" and browse to the folder: 
    Go to the Following folder
    (i) C:\Windows\System32\spool\prtprocs\w32x86
    (ii) C:\Windows\System32\Spool\Printers
    (iii) C:\Windows\System32\Spool\Drivers\w32x86
    If its 64 bit edition Need to check the x64 folder in all the location above mention.
    And then delete all the files and the folders in the following 3 folders.
    Check Whether the Spooler services is Working Properly.
    Step 5:
    ===============================
    Try to Install the Printer Drivers and Application.

Maybe you are looking for