Printer issue - could not print multiple copies

Hello Gurus,
Good day!
We not able to print multiple copies (2 or more) in SAP level but we were able to print multiples copies using non SAP applications (i.e word, excel).
I already checked in UNIX level and I dont see any stuck spools.
Can you please help me on how can I resolve this issue.
Appreciate your help.
Thanks!

Hi,
In order to get multiple copies of prints from SAP you need to make following configuration.
go to SPAD
select the printer, from which you need to get multiple copies of prints.
Double click on it,
Now you will see the details of the printer with tabs like
Device Attributes , Access method ,  output attributes ,  Tray Info. 
now select output attributes
there you will see Copy Counter with drop down selection. in that select
PASS COPIES AS SEPARATE OUTPUT REQUEST(IN SAP SYSTEM)
Please let us knwo if you have any other issues,
Regards,
Ravi

Similar Messages

  • Dell C1765 printer will not make multiple copies in Yosemite

    I have installed Yosemite on my mac mini.  My Dell C1765 color laser printer will not make multiple  copies in Yosemite.  It will do so in Windows.  Any suggestions?

    PS: I forgot to add that my computer is using Windows 7

  • ReportSDKPrinterException: Printer name could not be set

    I am working on testing a web application with BOE XI V 3.1.  I have the database and RAS machines setup.  I have been working on changing my app to printing through the RAS.  I have print preview and export working, but am running into issues printing to a printer.
    On the RAS which is on a virtual machine, I have a printer setup as a local printer to a tcpip port so the VM can access a printer on our network.  But when I call the clientDoc.getPrintOutputController().printReport(printOptions); I get the error message ReportSDKPrinterException: Printer name could not be set.
    I have also on the side been testing using a small jsp modified from a working print preview.
    Here is the jsp:
    <%@ page contentType="text/html; charset=utf-8" %>
    <%@
       page import="com.crystaldecisions.sdk.occa.report.application.*,
      com.crystaldecisions.sdk.occa.report.data.*,
      com.crystaldecisions.sdk.occa.report.document.*,
      com.crystaldecisions.sdk.occa.report.lib.*,
      com.crystaldecisions.report.web.viewer.*"
    %>
    <html>
    <head>
    <title>Print Report</title>
    </head>
    <body>
    <%@ include file="AlwaysRequiredSteps_UnmanagedRAS.jsp"%>
    <%
      // Populate parameters
      clientDoc.getDataDefController().getParameterFieldController().setCurrentValue("", "TAB_ID", "Configuration");
      clientDoc.getDataDefController().getParameterFieldController().setCurrentValue("", "LOGO_LOCATION", "d:\\reports\\images\\highjump.gif");
      PrintReportOptions printOptions = new PrintReportOptions();
      printOptions.setPrinterName("Dell");
      clientDoc.getPrintOutputController().printReport(printOptions);
      clientDoc.close();
    %>
    </body>
    </html>
    The code from AlwaysRequiredSteps_UnmanagedRAS.jsp is:
    <%
    // This file contains the required steps to open an unmanaged report from a file path accessible to the RAS Server.
    // Modify this path to the location of the report on your system.
    String path = "rassdk://C:\\reports\\ReportList.rpt";
    // Create a new Report Application Session.
    ReportAppSession ra = new ReportAppSession();
    // Create a RAS service.
    ra.createService("com.crystaldecisions.sdk.occa.report.application.ReportClientDocument");
    // Set the RAS server to be used for the service.
    ra.setReportAppServer("10.192.183.196:1566");
    // Initialize RAS.
    ra.initialize();
    // Create the ReportClientDocument object.
    ReportClientDocument clientDoc = new ReportClientDocument();
    // Set the RAS server to be used.
    clientDoc.setReportAppServer(ra.getReportAppServer());
    // Open the report, and set the open type to Read Only.
    clientDoc.open(path, OpenReportOptions._openAsReadOnly);
    %>
    The result I get from running this is:
    HTTP Status 500 - An exception occurred processing JSP page /PrintReport.jsp at line 28
    type Exception report
    message An exception occurred processing JSP page /PrintReport.jsp at line 28
    description The server encountered an internal error that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: An exception occurred processing JSP page /PrintReport.jsp at line 28
    25:   PrintReportOptions printOptions = new PrintReportOptions();
    26:   printOptions.setPrinterName("DELL");
    27:  
    28:   clientDoc.getPrintOutputController().printReport(printOptions);
    29:
    30:   clientDoc.close();
    31: %>
    Stacktrace:
      org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:568)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:455)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    root cause
    javax.servlet.ServletException: com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException: Printer name could not be set: DELL---- Error code:-2147215357 Error code name:internal
      org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:916)
      org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:845)
      org.apache.jsp.PrintReport_jsp._jspService(PrintReport_jsp.java:133)
      org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    root cause
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException: Printer name could not be set: DELL---- Error code:-2147215357 Error code name:internal
      com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterException.throwReportSDKPrinterException(Unknown Source)
      com.crystaldecisions.sdk.occa.report.application.PrintOutputController.printReport(Unknown Source)
      org.apache.jsp.PrintReport_jsp._jspService(PrintReport_jsp.java:120)
      org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    root cause
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKPrinterNotFoundException: Printer name could not be set: DELL---- Error code:-2147215365 Error code name:printerNotFoundError
      com.businessobjects.crystalreports.printer.bean.a.try(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.ReportPrinter.setPrinterName(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.ReportPrinter.print(Unknown Source)
      sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      java.lang.reflect.Method.invoke(Method.java:597)
      com.crystaldecisions.sdk.occa.report.application.PrintOutputController.printReport(Unknown Source)
      org.apache.jsp.PrintReport_jsp._jspService(PrintReport_jsp.java:120)
      org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    root cause
    java.awt.print.PrinterException: No printer named "DELL" could be found.
      com.businessobjects.crystalreports.viewer.core.f$a.a(Unknown Source)
      com.businessobjects.crystalreports.viewer.core.f.a(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.a.try(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.ReportPrinter.setPrinterName(Unknown Source)
      com.businessobjects.crystalreports.printer.bean.ReportPrinter.print(Unknown Source)
      sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
      sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
      sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      java.lang.reflect.Method.invoke(Method.java:597)
      com.crystaldecisions.sdk.occa.report.application.PrintOutputController.printReport(Unknown Source)
      org.apache.jsp.PrintReport_jsp._jspService(PrintReport_jsp.java:120)
      org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
      org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:432)
      org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:390)
      org.apache.jasper.servlet.JspServlet.service(JspServlet.java:334)
      javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    note The full stack trace of the root cause is available in the Apache Tomcat/7.0.53 logs.
    Apache Tomcat/7.0.53
    I would really appreciate any help in figuring out how to print to the RAS.
    Thanks in advance.

    Hi Jason,
    Could you please let us know the complete Business Objects version with Service Pack and Fix Pack?
    Actually the issue you are facing was identified as a bug and was fixed in Business Objects Enterprise XI 3.1 FixPack 2.2.
    Please go through the SAP Note: 1417374 - Error "Printer name could not be set" when printing using the RAS SDK.
    Hope this helps.
    Regards,
    Rajarsh

  • Printer setting could not be saved operation could not be completed error

    printer setting could not be saved operation could not be completed error 0*000006cc

    Hello printer setting could not be saved,
    When you do receive this error message?
    Have you made any changes before this issue?
    Please take the following steps for troubleshooting:
    1. Update the printer driver from the manufacturer website.
    2. Run the printer troubleshooter.
    http://windows.microsoft.com/en-us/windows7/open-the-printer-troubleshooter
    3. Temporarily block the firewall and check if this issue still exist.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Printed page could not be ended

    Hi all
    A client just had this issue
    She just created a AR invoice and it gave me a message u2026u2026. Printed page could not be ended.
    She went back to see if it was added and now there are 2 invoice nou2019s are 502780 and 502781?
    and its exactly the same..the customer, items, total,s etc.
    It seems very strange.
    I didn't see anything on the forums thats exactly like that
    Any help will be appreciated.
    Thanks
    Jerusha

    Hi guys,
    I am helping Jerusha at this client, maybe I can give some extra info which may help.
    The add-on in question does not affect the sales invoice in any way, so I doubt it is that.
    It is set to automatic printing for A/R Invoices in the Print Preferences, could it be something to do with that?
    Thanks
    Best Regards

  • The printed page could not be ended

    One of our customers are running 8.8 PL06. When a user try to print multiple checks at once, they get The printed page could not be ended. If they print one at a time it works fine. I looked into forum and help but no luck. Is it a bug on this patch? If so, i can advise customer to upgrade to 8.81. Please advise.

    How,
    It could be due to bug. However, first make sure the page setting is correct.
    Thanks,
    Gordon

  • I could not print a receipt from an e mail.  The only part that would print was the heading.  How do I print a receipt from e mail?

    I could not print a receipt from an e mail.  Only the header of the e mail would print.  How can I print the entire receipt?

    Try Mail/File/Export as PDF, open it in Preview, and see if you can print it from there.

  • I keep getting message in cs3 "could not print (filename) due to program error!" why?

    I keep getting message in cs3 "could not print (filename) due to program error!" why?

    Not a clue, since you provide no information whatsoever.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Could not print "image name" because there is not enough memory (RAM).

    I cannot print anything from Photoshop CS5. I always get the message:
    Could not print “image name” because there is not enough memory (RAM).
    I'm using Mac OS 10.6.8, with 8 GB RAM. I have tried setting memory usage to 100% of RAM (7379 MB for me). The "Ideal Range" is 4058-5313 MB. I cannot print anything, not even a 20 kB  file because I always get that error message.
    I've tried unistalling & reinstalling, just to see if that did anything. It didn't help.
    Does anyione have any ideas for what the problem is?
    Thanks,
    Dan
    (I don't have a problem printing from any other programs, like Gimp, but I want to print from Photoshop because of they way it allows you to adjust what part of the image you print when you are cropping the image during printing.)

    shanahan3030 wrote:
    …have tried setting memory usage to 100% of RAM (7379 MB for me…
    That is never a good idea.  You're starving the OS of RAM.  Try pulling it back to 70% or less.
    Also, clarify how much disk space you have left on your boot drive and on your scratch drive.

  • Photoshop CS5.1: The message box reads: Could not print "________.jpg" because of a disk error. Fix?

    Photoshop CS5.1: The message box reads: Could not print “________.jpg” because of a disk error. Fix?

    How To Get Help Quickly!
    Is the printer driver up-to-date?
    Could your disk actually be faulty?
    Boilerplate-text:
    Are Photoshop and OS fully updated?
    As with all unexplainable Photoshop-problems you might try trashing the prefs (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences you’ve changed) by pressing command-alt-shift on starting the program or starting from a new user-account.
    System Maintenance (repairing permissions, purging PRAM, running cron-scripts, cleaning caches, etc.) might also be beneficial, Onyx has been recommended for such tasks.
    http://www.apple.com/downloads/macosx/system_disk_utilities/onyx.html
    Weeding out bad fonts never seems to be a bad idea, either. (Validate your fonts in Font Book and remove the bad ones.)
    If 3rd party plug-ins are installed try disabling them to verify if one of those may be responsible for the problem.

  • Problem with printing - could not print because not enough RAM CS5

    I am using Photoshop CS5 on a new iMac running OSX 10.9.4.  Each time I try to print from Photoshop I get a message saying 'Could not print because there is not enough RAM'. There is plenty of RAM, and the message appears even if I try to print an image a mere 100KB!  With my previous iMac I could print without any problems. Any ideas how to put this right? Thanks

    Do you know exactly how much RAM Photoshop needs for printing? Just an idea: the RAM assigned to Photoshop is limited in the preferences. In case this setting has been changed to a small value, you might not realise it when working with images, but when doing extra stuff. Then, what about cache folders and probably limited space for cache folder? I don't know OS X. Maybe you try a different cache folder location.

  • ORA-20001: The printing engine could not be reached because either the URL

    Hi all,
    created a report and tried to have a pdf report
    using this link
    http://www.oracle.com/technology/obe/apex/apex31nf/apex31rpt.htm
    when i did a sample with apex.oracle.com
    it is working fine.
    but in my site
    when i click the print button i am getting an error
    <div id="report_4897903101326173_catch"></div><pre>report error:
    ORA-20001: The printing engine could not be reached because either the URL specified is incorrect or a proxy URL needs to be specified.</pre>
    Using : Oracle-Application-Server-10g/9.0.4.0.0 .
    Oracle-HTTP-Server.
    I am working on Remote server. How to find whether the printserver is configured or not?
    Is there any query to check it out?
    can any one please help? I really need to get this work.
    bye
    Srikavi

    hi guys . i have the same problem and i dont know how to fix it . I use APEX on my PC and i just install BI Publisher 10.1.3.2.1 and made the settings in APEX as follows:
    Print Server : Advanced (requires BI Publ...)
    Print Server Protocol: HTTP
    Print Server Host Address: http://192.168.1.2/ ---> IS THIS MY HOST ? when i start the BI Publisher Server the address is" http://192.168.1.2:9704/xmlpserver"
    Print Server Port :9704
    Print Server Script: /xmlpserver/convert
    Now when i click PRINT and choose to open or save it on my pc inside the document ( word/html ) it gives me error "ORA-20001: The printing engine could not be reached because either...".if its PDF i can open it becouse of some problem.Sorry for my english i hope you uderstand what im trying to say.thx in advance

  • Is there any way to re-print a gift certificate? I bought one but could not print it immediately and there isn't any redemption code on my receipt.

    Is there any way to re-print a gift certificate? I bought one but could not print it immediately and there isn't any redemption code on my receipt.

    Try here >  iTunes Gift Options
    To search for printing help on that page, on Windows press Control + F
    On Mac Command + F

  • MX922 could not print color even after clean/deep clean many times

    My MX922 did print about 600 color pages and could not print very clear. Then I did a few time of clean/deep clean from maintenance. The test pattern is ok for PGBK. However, there is no color (or a little color once a while). All the colors ink could be detected. Is there anything that I could do now? Or the color printhead is bad? If this is the case, could you I chang that?
    Thanks,
    TJ

    Hi tjs,
    Since the cleanings did not improve the print quailty, please perform an automatic and manual print head alignment to see if this will help.  To do this, please follow the steps located at the link below:
    Print Head Alignment
    If you still experience difficulty after performing the alignments, the printer may require servicing; please call or email us at one of the methods on the Contact Us page to obtain your servicing options.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • My hp printer 7520 is not printing the black ink.

    hp 7520: I have an empty photo black in but I have not printed photos. I have replaced the other black (with a pentagon) but the printer still seems to be using the empty photo black(bow tie icon) -  (and i have no black being printed). I have no spare black bow tie ink,and i don't need it anyway. Help

    Hi @southmimms 
    The black cartridges have their own purpose, the photo black is for printing photos and the Black is for text. The second black cartridge is not there to back up the first one when it becomes deplete. When a cartridge is depleted it needs to be replaced.
    Source
    Since you replaced the black cartridge, and the printer is still not printing black ink, one of the first things that comes to mind is the cartridge vent. Please use the steps below to check and clear the vent area;
    Examine the vent area on each cartridge, above the HP logo on the top of the cartridge.
    If the vent is clogged, use a straight pin to gently remove excess adhesive from the vent.
    1 - Clogged vent
    2 - With a straight pin, gently remove excess adhesive from the vent
    3 - Unclogged vent
    If the issue persists, please use the following document to troubleshoot the quality issue you are experiencing. Fixing Ink Streaks, Faded Prints, and Other Common Print Quality Problems.
    Finally, if you complete all of the steps in the document above and the issue continues, my own personal recommendation, not one of HPs, is to use the solution offered in the following video.  I only suggest doing this if he printer and printhead are out of warranty.  Hot Water Printhead Flush - HP Ink Series Printers with removable Printhead.
    I have recommended this solution to others and have seen success, but I can not guarantee this will resolve the issue, it is an end of the line kind of effort. I hope it helps.
    I hope one of my recommendations resolves the issue.
    Note: Although you do not use the photo black it is important to replace empty cartridges to protect the printhead from becoming damaged.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

Maybe you are looking for

  • Can Album art be removed once it has been assigned?

    There is much art for many albums that I wish to replace, however I only seem to be able to assign a second set of art for a given song or album that is only displayed when i click the arrows above the art in the bottom left corner of Itunes. I was w

  • OO ALV Cell Merge Problem when editable fields

    Hi there! I'm using OO ALV ( CL_GUI_ALV_GRID ) and experiencing a strange problem. I'm interested in the cells merging functionality of ALV, when i sort data for a specific field. It works fine but only if i do not set any field as editable ( lvc_s_f

  • Group Policies won't apply then un-configure themselves

    I'm having problem with Group Policies at ONE school (I have 59 other schools that are not having this problem). Running ZDM7sp1_SR4 on Netware 6.5 sp7 and e-dir 8.8- "Student Group Policy" files are sitting on sys\public\gpolicy\student\ I edit the

  • Update to PS and Bridge failed, corrupt download

    Mac OSX Yosemite. Stuck in a loop trying to succeed with update of PS and Bridge. 204 msg with downloaded file corrupted. Assume there is a download file in a cache somewhere that I can simply zap and the download will happen again. Anyone know where

  • How to mass set deletion flag for the production order

    Hi Expert,   do you know which transcation code or program is used to mass set the deletion flag for production order? thank you in advance!