Print One Report to many printers !!! URGENT

Hi..
I want to tell me how can I print a report from Forms to 3 printers?One report but 3 different
printers.PLS give me full details.
Note : 1 printer local and others on network.
thanks Alot

Hi,
please read about teh Reports distribution lists (bursting output) and how to use them.
Thi this a feature in Reports 6i that allows a Reports output to be sent to many destinations the same time.
Frank

Similar Messages

  • 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!

  • 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)

  • Print one cheque for many open items

    Hi all,
    has anyone encountered the Problem where they have to pay a vendor say more the 50 items but need to print this out on one cheque.
    im having a problem where the F110 programme prints uses 4  cheques, voides the firt three due to overflow, and then prints the total on the Last check.
    i would ideally like the system to issue just one cheque and the details on blank paper.
    thanks for your tips.
    Dave

    Hi
    While creating the variant for the payment medium program (For eg in RFFOUS_C), please tick the box "Do not void checks" in the output control.
    Hope this solves the problem
    S Jayaram

  • Printing one file to multiple printers

    I think this is the right section.  If not, please forgive me.
    I'm trying to make, if possible a button on the toolbar that will print two copies to one printer, and one copy to another printer. 
    Is that even possible?
    Thanks.

    First, I would work on creating a 'print' button.
    You need to know the printer names assigned on your system. The following code can be run in the JavaScirpt console and display a list of printer names:
    var l = app.printerNames.length
    for ( var i = 0; i < l; i++)
    console.println("(" + (i+1) + ") " + app.printerNames[i]);
    With that one can then set the printer parameters for the print command:
    var myParams = this.getPrintParams();
      myParams.NumCopies = 2;
      myParams.interactive = silent;
      myParams.printerName = "system printer name 1";
      this.print(myParams);
    var myParams = this.getPrintParams();
      myParams.NumCopies = 1;
      myParams.interactive = silent;
      myParams.printerName = "system printer name 2"; 
      this.print(myParams);
    This will work from the console, but inorder to use the silent parameter, you will need to create a menu item to get around the priviledged and trusted funcitons.

  • One report to check status of project/wbs(TECO/REL)+ available budget

    Dear All,
    Please advice. Is there any report (one for all ) which can show Status of project/wbs + available budget of a project. I tried cns43, cn41 and report s_alr. But it shows in different tcode/report. Hopefully there is a standard report that can show these in one report.
    Many thanks in advance.
    Nies

    CN41 shows the Current Budget and not Original Budget.
    If Available Budget in your terms means difference between Current Budget and Actual, you can include a column 'Difference' from menu.
    Select the Column Budget 1st, Menu Edit>Comparison> Choose Actual Cost.
    The output shows the difference and percentage. Problem now is you can't view the status.I can't think of anything standard which exactly gives the ouput columns you are expecting.
    Regards
    Sreenivas

  • How do I print multiple reports to a directory at the same time

    I'm trying to print a list of monthly reports to a directory by using the code below. The first part of the code runs a query to select Business Units that will receive the reports. The idea is to cycle through this list and print one report for each
    Business Unit.  These vary from month to month. I create a record set from that query.  Where I'm getting stuck is in trying to pass the Business unit selected in the first query to the query that runs the final report. I end up getting multiple
    reports with different titles but the content is the same, so I'm doing something incorrect.  Here is the code.  Any help would be greatly appreciated. QryNewMOR runs the report.
    Private Sub Cmd012815_Click()
        Dim qdf As DAO.QueryDef
        Dim strSQL As String
        Dim strPathName As String
        Dim blRet As Boolean
        Dim rs As DAO.Recordset
        Dim stDocName As String
        Dim strSavedSQL As String
        Dim strBus As String
        Dim strExec As String
        If Me.Dirty Then Me.Dirty = False
        stDocName = "RptNewMOR"
        strSQL = "SELECT [Business Unit Long],[Responsible Executive] FROM tblRespExec WHERE (((tblRespExec.SelectedPrint)=True));"
        Set rs = CurrentDb.OpenRecordset(strSQL)
        If rs.RecordCount < 1 Then
            MsgBox "No Bus lines or Execs selected", vbCritical, "Error"
            Exit Sub
        End If
       'CreateFolder "C:\Test MOR"
        'store the current SQL
        Set qdf = CurrentDb.QueryDefs("QryNewMOR")
        strSavedSQL = qdf.SQL
        qdf.Close
        Set qdf = Nothing
    Do
        strBus = rs![Business Unit Long]
        strExec = rs![Responsible Executive]
        Set qdf = CurrentDb.QueryDefs("QryNewMOR")
       strSQL = strSQL + Left(strSavedSQL, InStr(strSavedSQL, ";") - 1) & " and (qryNewMOR.[Draft Distribution List]=" & rs![Responsible Executive] & ");"
        strSQL = strSavedSQL
        qdf.SQL = strSQL
        Debug.Print strSQL
        qdf.Close
        Set qdf = Nothing
        strPathName = "C:\Test MOR\" & rs![Business Unit Long] & ".pdf"
        DoCmd.OutputTo acOutputReport, stDocName, acFormatPDF, strPathName
        rs.MoveNext
    Loop Until rs.EOF
    rs.Close
    Set rs = Nothing
    'restore the SQL
    Set qdf = CurrentDb.QueryDefs("QryNewMOR")
    qdf.SQL = strSavedSQL
    qdf.Close
    Set qdf = Nothing
    End Sub
    Dean J. Waring

    I'm trying to figure out how to combine the two and am obviously not succeeding. Do you have a suggestion on how to make that work?
    Hi Dean,
    I am not completely sure of what you want. I suppose you want to modify the SQL definition of QryNewMOR, and use that modified query for the report?
    In that case, and in the line of your program, I would make a QueryDef: QryStdMOR, with the "standard" strSavedSQL (so: strSavedSQL =  QryStdMOR), construct strSQL in the same way, and assign this to the SQL definition of QryNewMOR.
    Thus, in your code at the very beginning, skip the line strSQL = strSavedSQL.
    strSQL = Left(strSavedSQL, InStr(strSavedSQL, ";") - 1) & " and (qryNewMOR.[Draft Distribution List]=""" & rs![Responsible Executive] & """);"
    ' skip this line: strSQL = strSavedSQL
    qdf.SQL = strSQL
    Within the loop you should not start with strSQL = strSQL & ...., because strSQL will retain then its value from the previous loop, and increases and increases...
    Finally, I have added some double doublequotes around rs![Resposible Executive], because string expressions must be enclosed by double doublequotes (or eventually a single singlequote).
    Imb.
     strSQL = strSQL + Left(strSavedSQL, InStr(strSavedSQL, ";") - 1) & " and (qryNewMOR.[Draft Distribution List]=" & rs![Responsible Executive] & ");"
        strSQL = strSavedSQL
        qdf.SQL = strSQL

  • One report that will print two reports.

    Post Author: garling
    CA Forum: Crystal Reports
      Normal
      0
      false
      false
      false
      MicrosoftInternetExplorer4
    st1\:*
    /* Style Definitions */
    table.MsoNormalTable
         {mso-style-name:"Table Normal";
         mso-tstyle-rowband-size:0;
         mso-tstyle-colband-size:0;
         mso-style-noshow:yes;
         mso-style-parent:"";
         mso-padding-alt:0in 5.4pt 0in 5.4pt;
         mso-para-margin:0in;
         mso-para-margin-bottom:.0001pt;
         mso-pagination:widow-orphan;
         font-size:10.0pt;
         font-family:"Times New Roman";
         mso-ansi-language:#0400;
         mso-fareast-language:#0400;
         mso-bidi-language:#0400;}
    I need to create a report that has two parts; the first part will contain the details of the transaction, second part will contain a place for the client to sign. I have the report completed but need the first part to print, have printer cut the paper then print the second part of the report. Is there a way to do this within one report?I have Crystal 10

    Post Author: garling
    CA Forum: Crystal Reports
    Sorry above message is not showing correct:  I need to create a report that has two parts; the first part will
    contain the details of the transaction, second part will contain a
    place for the client to sign. I have the report completed but need the
    first part to print, have printer cut the paper then print the second
    part of the report. Is there a way to do this within one report?I have Crystal 10

  • Many printers and chose the print to print by

    i want to buy many printers , then install every printers in my pc , can i chose any print to print by e-mail

    Hi annozily, welcome to the HP Forums. Each ePrinter can be assigned its own unique  hpeprint email address to assign prints to. Here is some more information on HP ePrint:
    Getting Started with ePrintCenter
    I hope this helps.
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • How to print one (or more) page only from multipages report?

    Citations from Report Builder Help:
    To print a report from the Runtime Previewer:
    1. In the Runtime Previewer, click <Page Setup> in the toolbar to verify your printer setup.
    2. Click <Print> in the toolbar.
    3. In the dialog box, type the number of pages and copies you want to print.
    If you ran the report with a DESTYPE of Screen, a warning appears that you should run the report with a DESTYPE of Preview before printing. Preview creates PostScript output, which is typically more desirable for printing bit-mapped reports.
    4. Click OK.
    When I click <Print>, the dialog box is not dispaying and all report pages are sending to printer.

    Hi Al,
    Check out this thread: Sort within Break? I was looking to preserve a basic sort for break purposes, but the same solution should work for keeping one row at the bottom.
    Let me know if you'd like more details.
    --Jennifer                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Use dot matrix printers for printing text reports in Reports 10g

    In Forms 6i, customers had the option to use dot matrix printers for printing text reports.
    I believe, from 9i onwards, text based reports aren’t supported and instead HTML/PDF,DOC,RTF reports are supported which are not text based and use modern day printers.
    Is it still possible to use text printers ??
    Regards,
    Noman

    hi
    check out the following link.
    Re: Is printing to generic text printer and hand-coding the report possible?
    http://download.oracle.com/docs/html/B10314_01/pbr_uxprt.htm#1005700
    sarah

  • Printer will only print one copy no matter how many I put in.

    Hi Im now using Windows 7 Word 2010 and since then I can only ever print one copy of my document no matter how many I ask for.  Has this happened to anyone else.  I have tried using a newer printer in the hopes it was a printer communication problem
    but still only printing one document.  Was fine using XP but not this.  Any help would be greatly appreciated.  In business its very frustrating to have to keep going into the print section and ask repeatedly to print for a letter to get the
    copies I need. 
    Regards Kaz

    Have the same problem with windows xp and Word 2007 and Excel.
    I fixed the problem with disabling advanced printing feature on printing preference->Advanced->advanced printing features.
    This was with a kyocera 3820 laserprinter. hopes it helps u

  • Printing more than one report in the viewer

    Post Author: gchambers01
    CA Forum: General
    I have 3 form letters I would like to print. Is there a way to print mutiple reports at the same time? I tried using the subreports but they need to run at different times in the report. One subreport is tied to the detail section of the first form. So when I print them the formatting in the subreports isn't correct. I've added link to on demand subreports for the time being.

    Is it a way to unique reference/rename the shuttles
    Well, each shuttle item will have its own item name, right? P1_SHUTTLE1, P1_SHUTTLE2, etc. Not sure I understand what you mean.

  • How to make a reporting services report always print one sided

    We have a need to be able to print a specific report always one-sided, even when the printer property is defaulted to duplex.
    Is there a way on a report to do this?

    Hi WAConnie,
    According to your description, you want to set the one-sided printing in Reporting Services. Right?
    In Reporting Services, we don't have any feature/properties to set the printer one-sided. Please refer to the screenshots of print properties:
    In this scenario, you can only set this property on printer side.
    Reference:
    Print Reports (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • SSRS Print one row then detail urgent...

    hi all,
    I have a report that has two sections of data. In a list component with textboxes I have Barcode, warehouse location, pallets. Then below this I have detail information in a tablix
    including Racklocation Use by date, Qty, Product, Description, PalletID, Customer Product and Weight. How do I print one barcode row then detail for that shipment, then page break? Then same again for next barcode row? Thanks i'm really banging my head with
    this one! I thought if I inserted the row detail into the list component above it would print one barcode, then detail, then next barcode, detail etc. but the datasets are different and it looks like the list has to use the same dataset... 

    Hi jhowe1,
    According to your description, you want to display the barcode with detail information "one to one", then set page break between each "data with barcode". Right?
    In this scenario, as you said the detail information and barcode are from different datasets, since both detail information and barcode are for a product, it supposed to have related columns in these two dataset so that we should use lookup function
    to return the column we want. Or we can create one dataset and use JOIN statement in query to combine all data from two datasets together. Then we just put the data into a list and add page break between each group instance.
    Reference:
    Lookup Function (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

Maybe you are looking for

  • How to publish crystal report designed using SAP Add-on toolbar

    we have installed the crystal report designer V10 and the SAP add-on on the desktop. we have designed a formatted report in crystal report designer using an existing BW report that was created using Bex query designer. After this we saved the crystal

  • Weird.. package does not exist

    I know this is a common question and i searched the forum but nothing there is what I need. First of all I have the 'main' source file under a directory: d:\Model1_SecurityService\ There is a subdirectory securityservice, under which there are severa

  • Ztable going dump

    hi all, here is my problem . I have ztable with some 1000 records. According to new requirement i changed the domain of a field String to dec. then went se14 adjust & activate.. now table was going dump. plz give me suggestions where i am went wrong.

  • FileSelectPopup, discriminate multiple types with same extension

    Hi, When using a file select popup with multiple file types of the SAME extension, such as: FileSelectPopup ("", "(8 bit)*.tiff", "(8 bit)*.tiff;(16 bit)*.tiff", "Save As", VAL_SAVE_BUTTON, 0, 0, 1, 1, file); Is there any way to know which "save as t

  • Edited photos ios 8 and Photo Raw

    I put images on on iPad (ios 8) from my SD card from my camera (jpeg) with my SD card lead.