Need to print same outputs at different printers

Is there any way we could have the output directed to a different printer. A sales order confirmation output needs to print at printer ABC for user Sam, and printer xyz for user Jude. What configuration change would allow printing of outputs at user specific printer.
Any suggestions

if it is printing immediately , yes it is possible. In the user profile( T Code SU01) have default printer assigned , which ever you want to print for specific user and click on output immediately. when  the order is saved then it will print to the printer maintained in the user profile.
If batch program , then itwill be difficult
Regards
Sai

Similar Messages

  • Print same output to all printers

    i am using :
    import java.awt.*;
    import javax.swing.*;
    import java.awt.print.*;
    import java.awt.image.BufferedImage;
    import java.awt.geom.Rectangle2D;
    public class PrintUtilities extends Thread{
    public static final double MM_TO_PAPER_UNITS = 1/25.4*72;
    public static double widthA4 = 210*MM_TO_PAPER_UNITS;
    public static double heightA4 = 297*MM_TO_PAPER_UNITS;
    public static double leftMargin = 4.0*MM_TO_PAPER_UNITS;
    public static double topMargin = 4.0*MM_TO_PAPER_UNITS;
    public void run()
    //setDaemon(true); // this thread will not keep the app alive
    print();
    private Component[] componentsToBePrinted;
    public static void printComponent(Component c) {
    new PrintUtilities(c).print();
    public static void printComponents(Component[] c){
         new PrintUtilities(c).print();
    public PrintUtilities(Component componentToBePrinted) {
    this(new Component[]{componentToBePrinted});
    public PrintUtilities(Component[] components){
         this.componentsToBePrinted = components;
    public void print() {
         PrinterJob job = PrinterJob.getPrinterJob();
         PageFormat pf = job.defaultPage();
         pf.setOrientation(PageFormat.PORTRAIT);
              Paper paper = pf.getPaper();
              paper.setSize(widthA4, heightA4);
              paper.setImageableArea(leftMargin,topMargin,widthA4-2*leftMargin,heightA4-2*topMargin);
              pf.setPaper(paper);
              job.setCopies(1);
         //     job.setCopies(PrinterJob.getPrinterJob().getCopies());
         Book bk = new Book();
         for(int i=0;i<componentsToBePrinted.length;i++){
              System.out.println("APPENDING THE FOLLOWING DOC NUMBER: "+i);
    //          disableDoubleBuffering(componentsToBePrinted);
              bk.append((Printable)componentsToBePrinted[i],pf);
                   //enableDoubleBuffering(componentsToBePrinted[i]);
         job.setPageable(bk);
         //TODO pass an appropriate/specific name for the print job
         job.setJobName("Mobile Report Print Forms");
         if (job.printDialog()) {
         try {
         job.print();
         } catch (PrinterException e) {
         System.out.println(e);
    /** The speed and quality of printing suffers dramatically if
    * any of the containers have double buffering turned on.
    * So this turns if off globally.
    * @see enableDoubleBuffering
    public static void disableDoubleBuffering(Component c) {
    RepaintManager currentManager = RepaintManager.currentManager(c);
    currentManager.setDoubleBufferingEnabled(false);
    /** Re-enables double buffering globally. */
    public static void enableDoubleBuffering(Component c) {
    RepaintManager currentManager = RepaintManager.currentManager(c);
    currentManager.setDoubleBufferingEnabled(true);
    i am getting different output on different printers as well. I have classes defined as Printeable that draw forms, each form has 75 questions and they are all done using graphics2D some printer prints all the pages perfectly some other with different margin and on a laser printer i get only one box.
    If it helps someone, for testing, i printed to file (.prn) and read the ouput through Red Titan it's free
    it showed me one box out of 76
    just the first one ????
    possible solution that would help for margin
    http://java.sun.com/developer/JDCTechTips/2004/tt0611.html
    i used book and send printeable class and appended them into the book class
    i am dying to solve this problem and wondering if there is better way for testing and how to make all pages
    compatible for all printers. I want my program to send all forms to printer same format same size
    is there any suggestion?? what am i doing wrong?
    by the way
    bk.append((Printable)componentsToBePrinted[i],pf);
    componentsToBePrinted[] is an array of classes that implements Printeable and they all draw the forms correctly and sends to the printer. It is working mostly but i needed to work on alll printers no exceptions
    I appreciate any help and i will issue all my duke starts im new to posting in the forum but i will give all my points for this tip
    PLEASE HELP

    I want my program to send all forms to printer same format same size is there any suggestion??Produce a PDF... effectively delegating printing there-of to someone else. Problem solvered.
    Your PDF options are (AFAIK) FOP or itext.
    Cheers. Keith.

  • Need to print an output on two printers simultaneously

    Hi All,
    We have a requirement to print a spool on 2 printers simultaneously. Can this be done??
    Please respond.
    Regards,
    Sharadendu

    Proposal:
    get the print parameters by fm GET_PRINT_PARAMETERS
    it will fill a structure type PRI_PARAMS
    change PRI_PARAMS-PDEST to printer1 and send output to spool:
    new-page print on parameters PRI_PARAMS no dialog.
    change PRI_PARAMS-PDEST to printer2 and send output to spool again

  • Printing same document to different printers results in differint number of pages

    Hello - when I print a form, created in a custom application, to an HP 1160, it prints on 4 pages.  When I use the same computer and application to print the form to an HP 1320, it prints on 3 pages.  The form was designed to print on 3 pages, and when I compare the 4 page printout to the 3 page printout, the font size on the 3 page  printout is slightly smaller.  Is there anything I can do, short of replacing my 1160 printers with 1320s?
    Thank You

    First of all, you can't use Adobe Reader to add, delete or duplicate pages in a PDF file (unless you use a template object), so you're either using Adobe Acrobat, or some other application entirely.
    The size of PDF files is not linear, ie if you have 1-page file and it's 1 MB, then duplicating it will results in a 2-page file of 2 MB, or a 10-page file of 10 MB. Many items in a PDF document only need to be saved once (such as font information, image information in some cases, etc.), so the change in size when adding additional pages is sometimes very small. At other times it can be very big, though. You can have a 100-page file that is 1 MB and then add a single page to it, with a new font perhaps, and the size will jump to 5 MB, just because that font is very large...

  • Print the report to different Printers

    Hi,
    We are using Oracle EBS 11.5.10.2.
    We've defined a check printing report , which prints the output to a printer directly.
    We've mentioned this printer in the Concurrent Program definition.
    Its printing the output to a pre printed stationary.
    Now we need to print output to different printers based on the responsibility.
    Can anyone tell me the best way to achieve it.
    Regards,
    Abi

    Currently the report is working like that. In the he Concurrent program definition We've option to set only one printerRemove the printer name from the Concurrent Program Definition Window
    Currently the report is working like that. In the he Concurrent program definition We've option to set only one printer. We need the check printing report to be printed to different printers based on the Set of Books or user. In this case, the following should be helpful:
    - Click on View > Requests
    - Click on "Submit New Request"
    - Enter the Concurrent Program Name
    - Select the Printer from the Printer LOV (under Upon Completion block)

  • Printing same smartform with different set of records continuously.

    Hi SDNer,
    Suppose a table contain Studet info like the following one:
    ID   Name    Sub1       Sub2     Sub3
    1    xxx        sb11       sb12     sb13
    2    yyy        sb21       sb22     sb23
    3    zzz        sb31       sb32     sb33
    Think that the smartform contain only a single page(Suppose smartform of student result).In the Selection screen User can put the range of ID.When User put 1-3 the smartform print 3 pages---1st for the student with id 1,2nd for student with id 2 and 3rd for student with id 3.when user put the input 1-2 the smartform print 2 pages.I need your help to accomplish such a scenario.
    Thanks in advance.
    Regards,
    Sarbajit.

    Hi,
    As per user's selection criteria you need fetch data in your driver program and need to store it in an internal table. The same internal table you need to pass to smartform. to handle your requirement of displaying one student record per page you need to use COMMAND node (with some condition). Using this you can force your smartform for page-break.
    I hope this will help you to start and explore further.
    Regards,
    Sambaran Ray

  • Export to PDF and print same swatch colour - different variation of colour on printouts

    I have multiple documents - they are all set up the same way.
    I have 2 or 3 swatches in each of them -namely Rubine Red is giving me an issue - this is the same swatch in every document!
    ===============
    The Swatch
    ===========
    Colour Settings
    Here are my Colour Settings - the exact same in every document - I have also used the "Convert Profiles" and made sure all are the exact same.
    =================
    Export to PDF
    When I export to PDF - the export looks great - and the coloured frames all look the exact same - and they give the exact same colour read outs in any profile I look at in the Preflight Manager
    The CMYK Reading is 4/99/20/0 in all boxes
    ====================
    The printed result
    ==================
    Same colour settings
    Same swatch and same swatch values
    Same PDF export options
    Same swatch values on output
    Only 1 file prints the correct colour throughout
    ====================
    PDF export settings
    Test File
    Can anyone help me with this?
    The printer I am using is a XeroxColorQube using PS driver.
    Windows 7
    Adobe InDesign CS5.5
    Fully updated

    I've also exported the document to IDML - and I've unzipped that folder. I've read the information for the colour - there's only 1 reference to Rubine Red and that's giving the same percentages as the InDesign file.
    I don't know where the 2nd shade of pink is coming from.
    But I suspect that it's from the print driver itself.
    Also - just occured to me, I lost my PDF settings a while ago, InDesign crashed and the PDF defaults were missing - I dowloaded a copy of a set from someone on these forums through a google search.
    But I no longer have PDF x4 export option - where can I retrieve these.
    How can I restore the original PDF settings for InDesign?

  • Print same report  with different watermark

    i want to print the one report with different watermark
    means suppose we generate the report and print the 10 copy of the same report but want 4 copy with one watermark and 6 with different watermark.
    i have the number of watermark copy in the table .
    pls give me the solution
    regards
    anurag

    Thank you for your helpful response.  What I am really asking is this -- when there is a CR2008 report based on db1, table1, and you want to use the SAME report with an identical table in a DIFFERENT database (db2, table1), can I easily use the same report?  Or, do I have to generate another version of the report?
    Thank you again.
    David

  • Need to print in bold and different fonts

    Hi all,
    I want the output of an ABAP classical report(ex. monthly Sales Report) to be printed in bold letters and font size to be increased.
    Thanks in advance

    Hi lasers, If you are printing direct from the scanned image try the following. Select print - select options - Printer Properties - Advanced - There will be an option to print in greyscale in this menu. I hope this helps. Please let me know if I can help with anything else. Many Thanks,Francheska   

  • Pdf printing not same in different printers

    Hi,
    We have a pdf file which different departments would be printing on different printer but on a pre-perforated sheet. But while testing we noticed that the pdf is not being printed same in all the printers. Can we force this somehow? Thanks for your suggestions.
    Thanks.

    Have you looked at the page scaling in the print dialog?

  • Print forms on different printers

    I am trying to print multiple forms on different printers. I have one dat file, one ^job. I'm trying to put different printers using the -z command after the different ^forms. I have tried this and both forms print on the first printer I reference. Nothing prints on the second printer. My dat file looks like below:
    Dat File:
    ^job RLink2
    ^form A0000.mdf -z\\SERVERNAME\PRINTERNAME
    ^global test
    Test Information
    ^form A0002.mdf -z\\SERVERNAME\PRINTERNAME
    ^global test
    123 Test
    Please help!

    Could you do this in two separate job steps? So, in your job, you define two merge tasks, one of which uses the -z provided on the job line and the other which uses @OtherJobTokens.
    So, your data file would start with something like:
    ^job RLink2 -z\\SERVERNAME\PRINTERNAME \\SERVERNAME\OTHERPRINTER
    The job has two merge steps, one with the option -z""@OutFile."" -and the other with -z""@OtherJobTokens.""
    Now, that's only going to work if the data are the same for both documents that you're printing. If that's not the case, then I'm interested in why you're doing it this way. That is, why create a single transaction to produce two different documents with different data on different printers?

  • Is it possible to print one document to two printers?

    I need to print one document to two printers at the same time.
    Can I accomplish this with printer pools in OSX Server?  I've found several 3rd party vendors for Windows, but nothing for the Mac.
    Any help would be great!
    Thanks!
    Josh

    Thanks Alec!
    Is there a way to get the print pool to print to both printers at the same time?  With the pool it just switches the jobs between the two right?
    I actually need to click Print once, and have it print on both printers.
    Thanks for your help!

  • Two printers need to be setup for same output type

    Dear Experts
    How do we create condition records for two different printers in VV61 with same output type and packing material type?
    Thanks in advance for your answers.
    Regards
    Bala

    3)
    The configuration helps to redetermine the printer.
    F1 help for the field:
    "Description of print profile
    By specifying a print profile, the printers for output processing are redetermined. You can, for example, assign the printers of a specific packing station to a print profile.
    Using the parameter "PPT", you can individually define the print profile in the user parameters."
    Please note that you also have to maintain the profile for each user.
    2)
    You have to make yourself familiar with SAP's condition technique.
    http://wiki.scn.sap.com/wiki/display/ERPLO/output+determination+using+condition+technique
    (You will need a condition table in which one key field is the plant and assign it to the output type through an access sequence)

  • Can PO output in different printer at the same time ?

    Hi,Expert
    Can PO output in different printer(one is local ,another is printed in SH office) at the same time when created ? and how to config the output type ?
    please kindly advise . .

    It is not possible to print on two printers at a time.

  • Print 2 different forms to 2 different printers 1 ABAP program

    Is it possible to print 2 different forms to 2 different printers from one program?
    Example: a Shipping invoice and a Shipping Label (mailing sticky label)
    Could they be a combination for form types? SAP Script and SMARTFORMS, SAP Script and PDF, SMARTFORMS and PDF
    I have a need to print a Shipping Invoice and Label from a single program. I need to beable to print multiple copies of the label at the same time for multiple shipping packages. i.e. 1 of 4, 2 of 4 etc.
    The users want to select print a single invoice and the neccessary labels from a single transaction request.
    Ken

    Hi,
    Could you please see the program RLVSDR40.
    Thanks,
    Abhijit

Maybe you are looking for

  • Program will run with errors, but not at all in a .jar file

    First off, here is my program right now: import java.io.*; import java.util.*; import javax.swing.JOptionPane; public class prune     public static void main(String args[])         String steamid="",time="";         BufferedReader infile = null;     

  • Is S.M.A.R.T status supported on iMac g5?

    I note that when I open the Disk Utility, it shows that the drive is not S.M.A.R.T supported? Should it be?

  • ORA-4031 [512024] [large pool] [unknown object] [large pool] [PX msg pool]

    Hello Friends, I am frequently getting error in alert.log file. ORA-4031 [512024] [large pool] [unknown object] [large pool] [PX msg pool] Database version: 11gR2 OS : Solaris 10 SGA Size 4gb SGA Target 4112mb I am unable to identify the cause for ab

  • Repeated object sending problem

    why when you serialize the same reference multiple times after an internal state change does it not update in the sent copy? meaning , if i have a Tree object with a height parameter , and i send it with height=50 and then i update the same objects (

  • Date of master db

    This is related to an earlier post of mine: http://social.msdn.microsoft.com/Forums/sqlserver/en-US/2763c8f2-493f-45bf-b141-75af3e7fdfdd/restore-master?forum=sqlsecurity#154c40bf-95c5-4f2b-9840-1d31a93ecfec We're seeing some odd results when we resto