How to print to a specific printer tray in BOXI

Post Author: hoochpit
CA Forum: General
I have a customer that wants the same report to print to different printer trays depending on parameters sent it.  We have no problem recognizing which tray it should go to, but cannot get it to print to the tray that is specified.  It just prints to the same defualt tray every time.  They are running BOXI on a Windows OS.  Any direction would be great.

http://support.ricoh.com/bb/html/dr_ut_e/ra/model/mpc281/mpc281en.htm
googled it with this
https://www.google.dk/search?source=ig&hl=da&rlz=1G1TSEH_ENDK367&q=Ricoh+Aficio+ MPC+3001&oq=Ricoh+Aficio+MPC+3001&gs_l=igoogle.3..0i10j0i30j0i10i30l3j0i30j0i5i3 0.159792.159792.0.160175.1.1.0.0.0.0.152.152.0j1.1.0...0.0...1ac.6gJzJbz0xZc

Similar Messages

  • How to print a dialog box with all its components ?

    Hi !
    I've written an application.It has a dialog box [JDialog] containing following components:
    1) 2 JLabels.
    1) A JTextField.
    3) A JTable with some values.
    4) A JProgressBar.
    5) A JButton.
    6) An animated gif image.
    I want to print the dialog box with all its components exactly as the are [ Except the button & animated gif ].
    Would anybody please help me?
    My Operating System: Windows XP

    The article over at http://java.sun.com/developer/technicalArticles/Printing/Java2DPrinting/ has some helpful information on printing Swing components.
    It suggests creating a subclass of the JComponent that you want to print, and have it implement Printable interface.
    So, something like (note, uncompiled / untested code alert) :
    import java.awt.Frame;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.HeadlessException;
    import java.awt.print.PageFormat;
    import java.awt.print.Printable;
    import javax.swing.JDialog;
    public class PrintableDialog extends JDialog implements Printable {
          * Or whichever constructor you need...
         public PrintableDialog(Frame owner, String title, boolean modal) throws HeadlessException {
              super(owner, title, modal);
          * Implementation of the Printable interface.
           public int print(Graphics g, PageFormat pf, int pageIndex) {
              if (pageIndex != 0) return NO_SUCH_PAGE;
              Graphics2D g2 = (Graphics2D) g;
              g2.translate(pf.getImageableX(), pf.getImageableY());
              getContentPane().paint(g2);
              return PAGE_EXISTS;
    }Cheers,
    John

  • How to print inside a box in sapscript

    Hi,
    I've created a box in sap script. when i try to print something inside it....it either prints above or below the box and not inside it...
    any suggestions will be appreciated.
    Thanks.

    Hello,
    Printing the text in the box is some what Trial and error method.
    I have faced the similar problem, what I have done is first i have displayed the data I want and then displayed box .
    If u want I can help u further make urself clear and maile me.
    Regards

  • How to print those check boxes in SAP scripts?

    Hi experts,
    I have to create sap script form in which i have to create check boxes and at run time according to some condition i have to
    check those check boxes.how this can be done?
    Thanks in advance
    Rohit

    Check out the below related threads
    check box
    Re: check box in script
    Regards,
    Santosh

  • Printer Trays - How to control input trays

    I have hit a wall and need your help. We have an application compiled for both a Lexmark Optra S 1650 and an HP4 Plus. The input tray to be used is dependent upon the printer selected. We are using JfDesign 5.5.
    For the Lexmark, we need to select label stock from the tray physically labeled as "3". In the .ICS, this drawer is considered as tray "5" or "1005". Each attempt pulls from drawer one, compile option "Use printer tray numbers" unchecked. Attempts, ^job statement with: (1) -ati3; (2) -ati5 -atjoff; (3) compiling with non-portable tray #3; (4) compiling with non-portable tray #5 and use printer tray numbers checked.
    Ideas?

    I had a problem that was somewhat similar. We are using two printers that are definately different. Our print jobs can go to either one, interchangeably. We needed to be able to specify within Output Designer the specific tray that a particular page was to draw from and have the correct paper be used no matter which printer was printing the job. To complicate matters, Output Designer did not have ICS files for our specific printer models.
    One printer has 6 input sources and the other 5. Which specific input tray contains a particular type of paper is different. More importantly, the PCL emulation in both of them require a different number in the PCL tray selection command to get the printer to draw from a specific tray. For example, for one printer (it happens to be a Lexmark 3455) the tray selection command for "label stock" uses a 1 in the command sequence (that happens to be tray one due to the paper path being the best for labels); the other printer (a Xerox DP65) requires a 6 in the command sequence to be able to draw from the tray that is defined as containing label stock (again that happensto be tray 6 which has a staight paper path - so as to reduce the chance of the labels peeling off while going around sharp curves).
    After doing considerable study of the ICS files, I had to do two things: (1) Determine the PCL tray selection command number for each tray for each printer, and (2) through trial & error determine what value to use within the ICS file to produce the description that I wanted to see in the Format/Page/InputTray selection drop down list.
    Once I had all that information figured out, it was simply a matter of changing the "Trays", "InputTray", and "DefaultTray" parameters within the ICS file. The important part is to know the "format" of the InputTray parameter. The first number is what produces the description for the InputTray selection drop down list. The second number is what is used for the tray selection command.
    To determine the values I wanted for the description, I just started changing the numbers and checking to see what each different value resulted in. The number for the tray selection command came from the printers themselves - the Lexmark will print the command numbers on its setup page while the Xerox provides it via the keyboard & CRT menus.
    When compiling forms we do not check the "Use printer tray numbers" box. When printing we don't use any tray control parameter (-ati, -atj) on the ^job statement. A print job might consist of a colored separator page, a letterhead page and several plain white pages. There is nothing within the DAT file to control the input tray; that was all defined within Output Designer.
    We did discover a couple of quirks that we were able to resolve. First, if I set up Output Designer so that the Xerox printer is the "default" (and it is the one most often used) the tray selection wouldn't work properly; the solution turned out to be to set up Output Designer to use the Lexmark as the "default"; we just use the -z and -asp parameters on the ^job statement to specify the desired printer and driver. The second one occurred when I decided to make the MDF files smaller by deselecting fonts that we don't use. When I did this the tray selection stopped working. Through trial & error the solution turned out to be to select a specific font for one of the printers even though we don't use that font.
    To demonstrate what I'm talking about, here is the section of the ICS files that I'm referring to.
    LEXMARK.ICS
    >; Auxilliary Paper control information
    >Trays 5 ; 5 paper tray selections on printer
    >; JetForm-Printer
    >.
    InputTray 7 0 ; Auto Select
    InputTray 20 20 ; High Capacity
    InputTray 201 1 ; Tray 1
    InputTray 2 4 ; Tray 2
    InputTray 3 5 ; Tray 3
    InputTray 405 1 ; Label Stock
    InputTray 8 2 ; Manual Feed
    >DefaultTray 20 ; On a new form default to High Capacity
    XEROX.ICS
    >; Auxilliary Paper control information
    >Trays 6 ; 6 paper tray selections on printer
    ; DP65 PCL Designations:
    ; 0=Auto Select
    ; 1=Standard
    ; 2=Manual paper
    ; 3=Manual Envelope
    ; 4=Lower
    ; 5=Large Capacity
    ; 6=Envelope
    >; JetForm-Printer
    >.
    InputTray 7 0 ; Auto Select
    InputTray 20 1 ; High Capacity
    InputTray 201 2 ; Tray 1
    InputTray 2 3 ; Tray 2
    InputTray 3 4 ; Tray 3
    InputTray 405 6 ; Label Stock
    InputTray 8 5 ; Manual Feed
    >DefaultTray 20 ; On a new form default to High Capacity
    (the period/space in front of the first InputTray parameter isn't really there; it is a quirk of the posting system)

  • How to print to a specific printer tray

    Post Author: hoochpit
    CA Forum: Administration
    I have a customer that wants the same report to print to different printer trays depending on parameters sent it.  We have no problem recognizing which tray it should go to, but cannot get it to print to the tray that is specified.  It just prints to the same defualt tray every time.  They are running BOXI on a Windows OS.  Any direction would be great.

    Can you post some code? How are you getting you PCL to the printer?
    Take a look at the javax.print.attribute.standard.MediaTray print request attribute and see if that will help.
    Also take a look at my comments here: http://forum.java.sun.com/thread.jspa?threadID=5227412
    That may also help you.

  • Print crystal report to a specific printer tray

    Greetings -
    I need to print out a report to a specific printer tray, can you please let me know how I set it up?
    Thanks,
    Lava

    Hi Lava,
    According to what I can understand you would like to print the Crystal Report to a specific printer.
    In order to print the crystal report to a particular tray of a printer you need to set the printer from the Crystal Reports application.
    This can be done from u201CFileu201Dmenu->Print. Select the printer if it is already added else you can add anew printer.
    I hope this helps you.
    Regards,
    Prashant.

  • How to print a specific cell in numbers

    how to print a specific cell in numbers?

    Copy the cell (contents), Paste onto a page of a separate document, or onto a separate sheet of your Numbers document, Print.
    Or insert a single cell table onto your Numbers document, type an = sign in the cell then click on the cell you want to print. Drag the new table to a second sheet, set up your page there, and print.
    See the Numbers '09 User Guide for other useful tools and techniques. Download the guide via the Help menu in Nuimbers.
    Regards,
    Barry

  • How to print output of XML Publisher report in different trays of a printer

    Hi All,
    I have a requirement in XML Publisher Report. I need to print all pages other than last one in one tray of a printer and the last page has to be printed in another tray of the same printer.
    Can anyone help me out...
    Thank You..

    I do not think it is possible to send all the pages to one tray and send only the last page to a different tray. However, you may review the following notes:
    Note: 357402.1 - How to Print the Output to a Different Paper Size Using XML Publisher Delivery Manager?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=357402.1
    Note: 394130.1 - How To Enable Printer Options Such As Duplex Printing Or Tray Selections For Bitmap Concurrent Programs
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=394130.1

  • How to print different pages of sap script  from diff. trays of printer

    Hi All,
    I have the requirement in SAP script. How to print different pages from different trays in the printer.
    For example  page 1 logo and address has to print from tray-1,
                        page 2 main data print from tray-2,
                        page 3 footer data print from tray-3.
    will appreciate if u come up with solutions asap.
    Thanks in advance.

    Hi,
    May be the links given below might help you,
    SAPScript:Selecting Different Tray in SAPscript
    Print to different output tray in SAPscript/Print Workbench
    Regards,
    Hema.
    Reward points if it is useful.

  • How to printing oracle report by specific printer name  on solaris?

    When running reports
    -http://host/reports/rwservlet?destype=PRINTER&desname=printername&desformat=dflt.prt&report=test.rdf&userid=test/test@TEST&MODE=CHARACTER
    report with destype=printer desname=printername, the report fails with REP-50159 Executed successfully but there were some errors when distribute the output
    if set default printer by add PRINTER=printername export PRINTER; in uiprint.txt
    it can print to printer.
    i found document id 394554.1 in metalink but it can't fix problem.
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:342229662272785964::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,394554.1,1,1,1,helvetica
    To fix the problem, execute the following steps:
    1. Take a backup of opmn.xml
    2. Edit opmn.xml and include the path information of the new printer:
    For In-process report server add the path information within <OC4J_BI_Forms>
    Eg:
    <process-type id="OC4J_BI_Forms" module-id="OC4J">
    <environment>
    <variable id="DISPLAY" value="localhost:0"/>
    <variable id="LD_LIBRARY_PATH"
    value="D:\Oracle\product\FRHome_1\lib32:D:\Oracle\product\FRHome_1\lib"/>
    <variable id="PATH" value="//printserver;D:/Oracle/product/FRHome_1/bin;................./>
    </environment>
    Here //printserver is the network drive where is printer is installed.
    For standalone report server add the path information within <reportservername>
    Eg:
    <ias-component id="standalonerepsvr01" status="enabled" id-matching="false">
    <process-type id="ReportsServer" module-id="ReportsServices">
    <process-set id="standalonerepsvr01" restart-on-death="true" numprocs="1">
    <environment>
    <variable id="DISPLAY" value="localhost:0"/>
    <variable id="LD_LIBRARY_PATH"
    value="D:\Oracle\product\FRHome_1\lib32:D:\Oracle\product\FRHome_1\lib"/>
    <variable id="PATH" value="//printserver;D:/Oracle/product/FRHome_1/bin;........../>
    </environment>
    3. Reload opmn : opmnctl reload
    4. Restart opmn: opmnctl stopall , opmnctl startall
    5. Run the report with destype=printer and desname=newprintername
    my config (solaris)
    oracle application server release 2 (10.1.2.0.2)
    i used axis printserver name is SZ_R02.
    <process-type id="OC4J_BI_Forms" module-id="OC4J">
    <environment>
    <variable id="DISPLAY" value="localhost:0"/>
    <variable id="LD_LIBRARY_PATH_64" value="/data/app/mid/lib:/data/app/mid/network/lib32:/data/app/mid/lib32:/data/app/mid/lib:/data/app/mid/network/lib::/data/app/mid/jdk/jre/lib/sparcv9"/>
    <variable id="LD_LIBRARY_PATH" value="/data/app/mid/lib32:/data/app/mid/lib:/data/app/mid/network/lib32:/data/app/mid/lib32:/data/app/mid/lib:/data/app/mid/network/lib::/data/app/mid/jdk/jre/lib/sparc"/>
                        <variable id="PATH" value="/SZ_R02:/data/app/mid/lib32:/data/app/mid/lib:/data/app/mid/network/lib32:/data/app/mid/lib32:/data/app/mid/lib:/data/app/mid/network/lib::/data/app/mid/jdk/jre/lib/sparc"/>
    </environment>
    how to print to printer by specific printer name?
    thank you very much
    khun

    if submit url with parameter
    http://hostname:7778/reports/rwservlet?destype=PRINTER&desname=lpSZ_R02_2&report=sticker.out
    error
    REP-50159: Executed successfully but there were some errors when distribute the output
    How to Solution?

  • How to make blank copies of a PDF file and put it into the printer tray.

    Dear experts,
    Before you try printing the data from the FM, How tomake several blank copies of the PDF file  and  put it in the printer tray so that you can print just the data from the function module on it??????
    Please reply.

    Hi drredwood,
    When you open your PDF file a yellow bar will appear on the top of the screen.
    Click on 'Enable All Features'.
    Then you will be able to copy the content from your pdf and to paste in any of the file.
    Regards,
    Florence

  • When using a numbers spreadsheet, how do I select a specific area for printing?

    When using a numbers spreadsheet, how do I select a specific area for printing?

    Also this would be a question for the Numbers app fourm.  Not the iMac hardware fourm.

  • How to print specific concurrent request to specific printer in R12

    Good Day,
    How to print specific concurrent request to specific printer in R12,
    when i try to make specific printer to the user it's print all requests.
    i need to do this for one request only and print this request once.
    is there any profile option for this case.
    Thanks.

    any updates

  • OleAutomation Printing to Specific Printer Tray

      Is there a way to programmatically print pdf files with Adobe Acrobat or Reader ( via OleAutomation interface ) selecting ( programmatically too ) a specific printer tray ? Thanks.

    Use a printer that is set to use the desired paper tray by default. 
    If you are looking for dynamic switching of paper trays, one of the 3rd-party Crystal Report Managers listed at http://www.kenhamady.com/bookmarks.html provides functionality that allows you to control the splitting of Crystal report printouts across different paper trays.

Maybe you are looking for

  • How to connect a second monitor/TV to HP ENVY Beats All-In-One

    Hi, I was wondering if anyone could tell me if it is even possible to connect a second monitor to the HP ENVY Beats All-In-One Desktop PC, because I'm trying to connect my TV as the second monitor through HDMI and I've tried everything that I could,

  • Itunes doesn't recognize iphone sim card after installing io5

    I sent hours trying to upgrade my Iphone 3gs to io5 and now Itunes doesn't recognize the phone sim card, I only have a message saying 'There is no sim card in the Iphone you are trying to activate'.   Iphone is no longer under warranty, so I don't kn

  • How do you fire a button click event on apex page from fancybox iframe that was created by page

    I am trying to fire off the button click event from fancybox iframe. The apex page has a button that launches a fancybox iframe which is loaded with an APEX form. On close of that fancy box, I am trying to fire a click event on the parent page which

  • Asurion equals Worthless Insurance

    I am just posting to advise EVERYONE carrying the Asurion Insurance package for their wireless devices to CANCEL THE INSURANCE IMMEDIATELY. You are paying for NOTHING!  If you have an accident with your device, YOU WILL GET NOTHING from Asurion, exce

  • Embedding certain characters

    Hi, I'm using the actionscript attached below to retrieve text into a dynamic text box. I've also embedded a font that the dynamic text boxes are set to display entitled 'Codex LT' by adding it to my Library and changing the Linkage Properties to 'Ex