Both side printing problem

I use Jasper in Swing applications as a means for generating reports.
When generating multiple pages report I set in the Printer Options "Print on boht sides/ Landscape" (rotation of the page along the left border of the paper).
Jasper prints on two sides with rotation along the upper side of the paper. And on the contrary, when asking to print along the upper side, it rotates the text along the left side.
I checked the printer driver by specifying the same parameters when printing Word documents. Everything works correctly in this case, and the rotation is performed through the desired part of the paper.
Would somebody please help me?

ricardo,
understanding your question correctly, i assume you want to start the instances of your main repeating frame always on an odd page (e.g. 1,3,5,7,9) resulting in printing on the facing page in duplex printing.
you can do this by putting an object on the beginning of your block (e.g. a white line) and create a format trigger, that shows this object only on even pages. then you specify the page-break before property.
what happes is, that the first object that is formatted on the first page of each repeating-frame instance will be this object. if it happens to be on an even page (back of the physical sheet of paper), the object is formatted but before that a page-break is performed, hence the object will end up an an odd page (=facing side of the physical sheet of paper). in case your instance happens to be formatted onto an odd page, the object is not formatted and the page-break is not performed.
regards,
philipp

Similar Messages

  • Problem while both-side printing

    Hi ,
    I develop a specif form for a customer. In my form i got 2 main page, the first one should appears only one times and the second one should appears many time as necessary. That works fine.
    Now i want to insert between page1 and page2 a new page let's call page3 where there's only static text like Terms and Condition . I should also insert this page after each page 2 .
    The result should be :
    Page 1
    Page 3
    Page 2(1)
    Page 3
    Page 2(n)
    Page 3
    So in the designer i insert the page 3 between page 1 and 2 . In the dynamic part of page 1 i set next page to page 3 . In the dynamic part of Page2 i set that on overflow go to page 3 .
    That works nearly fine , i got page 3 between each page 1 and 2 , but after the last page 2 i don't have page 3 .
    Does somebody face the same requirement and how does it solved ?
    Regards.

    instead of print both sides, print odd page first, flip over the page, then print the even page. yellow blink light on the printer means that the other side is ready, just reinsert the paper with other side up and press continue on your computer.

  • Both side print not working in network using windows 7

                               I have HP laserjet 1018 printer,Printer connected in windows 7 system.
              When i print both side print in same system is work done,but in network not work both side print,single print work good.i need help to solve this

    Hi Dinesh_G,
    Sorry for the delayed response.  Try adding an alternate driver.  Here is a link that will provide steps for that.  Click Here  Check which PCL driver you are currently using and add the alternate (PCL5/PCL6).  Please see the below for additional clarification.
    Utilize the above link for exact steps on adding the driver.
    1. Check which driver currently used-PCL5 or PCL6-this will be located near name of driver in print folder or print properties
    2. Follow steps provided in link to add whichever one the currently installed driver is using
         A.  Select HP as manufactuer
         B.  Select HP universal printing PCL 6 or HP universal printing PCL 5
    3. Attempt duplex print job
    Hope this helps!
    Also, remember a click on the Kudos star to the left is a quick "Thanks" for a helpful post.
    Please select the "Accept as Solution" button on the post that best answers your question.
    I appreciate your input !
    Thank You,
    I work for HP.

  • Laserjet 1018 both side printing WinXp SP2 problem

    Hello I hope this is the right section for posting this , if not I apologise in advance. I run WinXp SP2 with a Laserjet 1018 printer installed  and I need to print a document with 2 pages per sheet and I used the Print on both sides option (to save paper). When the first half of the print job is done the warning led (with the exclamation mark) goes on and I don't get the continue option (mentioned in the manual). i have tried reinstalling the drivers but with no luck. I can do normal print jobs with no problem though.

    Hi 
    You can try running the following utility at the link below. It sounds like a network issue since you are able to print fine when you give the users admin rights. 
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02726548&cc=us&dlc=en&lang=en&lc=en&product=439...
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • Both Side Printing in HP printer photosmart 5510

    I have a Macbook running on lion 10.7.3 and i can't figure out how to print on both sides of the paper in my hp photosmart 5510 printer. Is there no driver that I can download so that the printer does it automatically ? I'm confused I think it is such a waist of paper if you can't print on both sides.

    Hello,
    The Photosmart 5510 hardware does not provide Automatic Duplex functionality as you may find listed by the spec below:
    http://www8.hp.com/uk/en/products/printers/product-detail.html?oid=5063600&jumpid=oc_r1002_uken&lang...
    Manual duplexing can be done by any of the methods below:
    Method one: Perform manual print duplexing using the Page to Print setting:
    In order to perform manual duplexing, you shouls use the Pages to Print setting, as you may find listed below:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01663233&tmp_task=useCategory&cc=us&dlc=en&lang...
    Method two: Using the Two-Sided Printing application:
    http://ftp.hp.com/pub/softlib/software12/COL35975/mp-88750-2/HP_Two-sided_Printing.dmg
    You can access this tool by clicking the PDF button at the bottom of the print dialog, then select Two-Sided Printing and follow the on-screen instructions.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Crystal report: client-side printing problem

    Hello everyone,
    I developed an asp.net web application / c # - VS2012 - crystal Repport (CRforVS_13_0_5) on windows 7 pro 32 bits, everything is ok even print reports.
    The problem is that when hosting the web application in IIS on the same machine (Windows 7 pro 32 bit) printing the report (crystal report) does not work;
    my code behind:
    ReportDocument cryRpt = new ReportDocument;
      string path = "../rpt/demande.rpt";
      cryRpt.Load(Server.MapPath(@path));
      ParameterFieldDefinitions crParameterFieldDefinitions;
      ParameterFieldDefinition crParameterFieldDefinition;
      ParameterValues crParameterValues = new ParameterValues();
      ParameterDiscreteValue crParameterDiscreteValue = new ParameterDiscreteValue();
      crParameterDiscreteValue.Value = "value";
      crParameterFieldDefinitions = cryRpt.DataDefinition.ParameterFields;
      crParameterFieldDefinition = crParameterFieldDefinitions["val"];
      crParameterValues = crParameterFieldDefinition.CurrentValues;
      crParameterValues.Clear();
      crParameterValues.Add(crParameterDiscreteValue);
      crParameterFieldDefinition.ApplyCurrentValues(crParameterValues);
      cryRpt.SetDatabaseLogon(user, pw);
      CrystalReportViewer1.Visible = true;
      CrystalReportViewer1.ReportSource = cryRpt;
      cryRpt.PrintToPrinter(1, false, 0, 0);
    how to print the report on the client side?

    The search term 'crystal net client side print' brings up the following (amongst many other):
    KBA: 1214466 - How to print a report from a .NET Web application
    KBA: 1216932 - How to print directly to a printer instead of PDF in a CR 10 ASP.NET application
    KBA: 1983821 - How to achieve client side printing without using the Crystal Reports viewer
    The above should help you out. BTW.; the search box is in the top right corner.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • SMART FORM Both side printing

    Hi,
    I need help in printing smartform in both side. it has to print terms and conditions on back side of page after printing main window for each page.

    Hi Praveen,
    Try this logic!!!
    Create total 3 pages. For example
    Page 1 (items page)
    Page 2 & page 3 (terms & conditions)
    page1 (next page) = page2
    page2 (next page ) = page1
    page3 (next page) = blank
    Now In your main window in page 1, just after the table create a command and give next page as page3.
    I hope this will help you to close this thread.
    Appreciate if found helpful.
    Cheers!!!!
    Vinit
    Edited by: vinit005 on Mar 12, 2011 11:01 AM

  • Both Side Prints

    Dear Gurus,
    Right no in SAP we take Purchase order printouts. This prints comes on single page only.
    Can anything be done to print matter on both sides. We have printer capable of double side prints

    Hi
    Have you defined printers in SAP and using them.
    If so you can maintain this setting for the printers created in SAP
    In the Output attributes tab of the Output devices you need to maintain the print mode as duplex: Print on both sides.
    If you are using a default printer, then set the settings in the Local default printer and set the print mode to Default: Printer default setting.
    SPAD is the transaction for doing these changes, usually maintained by BASIS person, you can take help of them
    Thanks & Regards
    Kishore

  • Laserjet 1536 double side printing problem

    bought the all-in-one laserjet 1536 recently. I am using Windows XP on my computer and connecting the printer through wireless.
    i find that when i attempt to print double-sided from powerpoint or pdf, the 2nd page will become multiple black lines while the first page is fine. However if I print from Word there is no such problem.
    Can someone please advise me what to do? Thanks!

    Using a networked connection, I tested the below fdrivers in XP SP3 and did not have any of the issues that you reported. If you are still experiencing this issues, I would suggest that you try re-loading the full solution drivers located on hp.com.
    m1536 full solution drivers
    You may also load just the firmware update: 20110405 Firmware Update
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • When I first installed my HP 7510 All in one it would automatica​lly print both sides not now

    When I first installed my HP 7510 onto my HP Pavillion Slimline it would print both sides automatically and wait for the ink to dry before taking the paper back in to print the other side. Now if I want both side printing I have to take the paper out manually and reinsert it.. I am running Windows 7

    Hi there,
    Try downloading and running the print and scan doctor located here:
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c03275041&cc=us&dlc=en&lc=en
    It can fix a lot on its own and if not give a better idea of what is going on.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • About HP envy 4500 printing for both sides for mac os x 10.9.4

    I got the printer recently. I have installed the lastest software and set up air print successfully. I was trying to print out mt notes for both sides of the paper but I did not see the " print both sides" option. I looked up the old post in the forum and tried to follow the set up step by step, but it is still not working. Can anyone tell me how to set up the both sides printing option. 
    Thank you so much.

    Hi @chloe_chie,
    Welcome to the HP Forums! 
    I understand that you are wondering how to print on both sides with your HP Envy 4500 on your Mac OS X 10.9.4, and I am happy to help!
    Please make sure that the correct driver has been selected on the Mac. Meaning, it should read HP Envy 4500, not the Airprint driver.
    To do this go to the Apple Icon, System Preferences, then Print & Scan and look for the images below:
    Once we have verified that we have the correct driver selected, then please follow through this guide, Printing on Both Sides of the Paper (Duplexing) for HP Deskjet 3540, 4640, ENVY 4500, and Officejet ....
    Hope this information helps, and have a nice day!
    RnRMusicMan
    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" to say “Thanks” for helping!

  • How to disable "print on both side"

    I installed adobe reader 10.1.2, and found when I printing ,the default setting always print on both side, how to disable that by registry file or other ways?
    My printer has both side print function but we did not set up this as default.
    why I hope disable this by registry file is I have over 500 users, I hope i can do it by .bat file.
    any idea?
    Thanks,
    Ant

    Hi,
    Please refer to the following KB article and the forum link for the solution on the duplex issue and registry keys for the same,
    http://kb2.adobe.com/cps/928/cpsid_92870.html
    http://forums.adobe.com/message/4161507

  • Automatic Double Side Printing

    Here is HP LaserJet Enterprise 600 Series Printer manual check page 117 for settings with screenshots how to set up automatic both sides printing.

    Hi Team,
    I am using an HP LaserJet Enterprise 600 Series Printer, can I print on both sides automatically without manually feeding the paper back into the printer? If so print share some of the step to achieve that and also assist me with a video link if there is any.
    Thank you.
    This topic first appeared in the Spiceworks Community

  • HT1040 I ordered prints.. received them with the people on both sides cut off.. how do I correct the problem?

    I ordered prints from Apple. They came back with the people on both sides cut off. How do I correct the problem?

    crop to the print size before ordering - for example you can not fit a 8x12 iomage onto a 8 x10 sheet of paper
    LN

  • HP Color Laserjet 2550n has no more printing on both sides

    In 2005, I bought an HP Color Laserjet 2550n to go with my laptop.  I had no printer problems.  I loved the feature where I could print a document on both sides of the paper.  The option would show up on the properties menu on the print document dialog window.
    Over the past summer, I lost my laptop to a crash and had to get a new laptop using Windows Vista OS.  I hooked up the printer using the USB port and all seemed good until I tried to print on both sides.  In the properties menu of the printing dialog box, the option has disappeared completely!  I tried updating the drivers - didn't fix it.  I tried reinstalling the software that came with the printer, but Windows Vista OS wouldn't accept it.  Help!  I don't know what else to do.  I appreciate any help.
    I have also tried Bob_Headrick's advice on Vista Duplex Printing Troubleshooting Guide for "No option for two-sided printing."  The option appeared in the properties menu, but the printer still did not print properly.
    Musicredsubaru
    Message Edited by musicredsubaru on 10-12-2009 08:18 PM

    Sorry guys................I answered my own question.
    I went into the HP P2015 user guide & found the answer. on page 32.
    I went into printer properties, device settings, noticed that duplex unit for printing on both sides was showing as "not installed". I changed this to "installed", and it worked.

Maybe you are looking for

  • Calling multiple sub-reports based on the values in a column in the main report

    All, Say, I have a main report with 4 parameters and 8 columns in it's tablix, there is 1 column in this main report that can have 3 values, say A,B,C. If the user clicks on "A", he will be directed to Subreport A, clicks on "B", he will be directed

  • Default price list in goods receipt

    Hi, Please let me know how I can change the default price list in GOODS RECEIPT (which is currently "Last Purchase Price") Regards,

  • FM for retrieving shop details

    Hi Experts, I am looking for a function module which will give me the details of the shop which is being currently used - like the process type of order, quotation or order template for that shop. Thanks in advance, Shantanu.

  • Another Battery Query

    Hi, I've been reading through the posts for awhile now, and have tried all the Apple-recommended solutions to my battery problem (ie resetting it, etc), but nothing is working. I bought my mini brand new on October 1st 2005. Here is my story: - My ba

  • Partition with Disk Utility?

    I just got a 500gb external drive that I want to partition. Disk Utility is supposed to be able to do this. The help file says "Click Partition" in the Disk Utility window. I see nothing in the window with "Partition" on it. A screen shot I've seen (