Print each page range double sided as new task

Hi All,
I have that problem. I would like to double sided print some pages from pdf file - let's say pages 1 to 5. But I want them to print like this - pages 1-2 on the first sheet of paper, page 3 on the second sheet (the other side of this sheet I want to be blank) and pages 4-5 on the third sheet.
If I type page ranges 1-3,4-5 when printing the result will be the same if I would type page range 1-5, so pages 1-2 will print on first sheet, pages 3-4 on the second sheet and page 5 on the third sheet. That's not what I want.
The only solution is to first print pages 1-3 and then open printing dialog box again and print pages 4-5 so they would be two separate tasks for printer. But this is very time consuming when working with large files.
I do not have Adobe Acrobat to insert blank page after each section that is odd numbered so this is no solution for me.
Could you please help? Any ideas how to work this out? Is there any printing set up to print each page range as separate task?
Or maybe there is a way to double sided print odd numbered page ranges with an additional blank page at the end so that the next range would start on new sheet?
Thank you in adavnce

dear ,
check ur printer settings , bcos u are using std.program , so i cannt say SAP is doing wrong , better to check ur printer settings
Regards
prabhu

Similar Messages

  • Print different page ranges of a document without, each time, having a print dialog?

    Hello,
    Would need your valuable help on that one.
    I have a large PDF File, of which I want to print different page ranges, based on the checkboxes that have been checked by the User.
    Ideally, clicking a "print" button would generate the page ranges, based on the checkboxes that are checked and open one print dialog with the pages ranges already indicated in it. Like this, the User can enter once the printer settings (e.g. booklet or duplex) he wishes, which should then be valid for all the pages contained in all the page ranges.
    Thank you in advance for any tip!
    Cheers
    Serge

    PrintParams.constants.flagValues.duplexTypes.DontCare
    PrintParams.constants.flagValues.duplexTypes.Simplex
    PrintParams.constants.flagValues.duplexTypes.DuplexFlipLongEdge
    PrintParams.constants.flagValues.duplexTypes.DuplexFlipShortEdge

  • Can I print an ALV in double-sided?

    Hi!
    Can I print an ALV in double-sided on the page?
    Thanks very much!

    Hi,
    the function has parameter IS_PRINT which is a reference to SLIS_PRINT_ALV, which in time has, among others, structure PRI_PARAMS. Some of the many fields that the structure has are PDEST, LINCT, LINSZ and PAART, which can help to determine the output device and format.
    As previously stated, your printer must be able to print double-sided and it must be recorded as output device in SAP (trans. SPAD). If you don´t understand this point, never mind since it is more as task for system admin. than for a programmer.
    When creating the output device (device class = Standard printer), there´s folder Output Attributes which has field Print Mode. The options for this field are Default, Simplex, Duplex and Tumble Duplex. So, entry duplex does what you pretend.

  • Exporting or Printing each page of a Crystal Report to a separate pdf file.

    Is there a way to export or print each page of a Crystal report to a separate pdf file?  If possible, I would look to use the family nunmber field in my report as the file name.  This is not required, but would be helpful.  Thanks

    Hello,
    Standalone CR Designer doesn't have the ability but CR Server or BOE does. Or if you have a .NET or Java you could write an app that would spit out one page at a time.
    Don

  • How to print a page range in Word 2011

    Hello
    I would like to print only a certain rage of pages of a large Word 2011 document. However, when I enter "from page"  = 5 and "to page" = 7, my MacBook and my MacMini oth print always the whole document.
    I tried it on three diffrent printer (Canon, Lexmark and Xerox), but got always the same result.
    I read some articles that you have to enter the section, but neither in the field from page or to page I am able to enter letters like "s5" or "p5" and I don't have the ofion "page range in any of the printer driver.
    I also tried diffrent documents, new documents created on Mac, small documents with only two pages and large documents with 200 pages. Allways the same result, Word prints the whole document.
    I use the latest office for Mac version and also the latest OSX 10.8.3.
    How can I print only certain pages??
    Thanks for any help,
    Rolly

    Maybe this will help. If you monitor the "More Like This" box (top right), other threads appear. Opening them usually displays other threads.
    https://discussions.apple.com/message/20070939#20070939
    https://discussions.apple.com/message/16608360#16608360

  • Print multiple page ranges based on radio button group choices

    Hi ... I have a PDF that is a combined application form made up of 6 separate forms. On the front page, I have 6 groups of "Yes / No" radio buttons.
    If the radio button for one or more of these groups is selected as "Yes" then when the Print button (on the page) is clicked then the appropriate page ranges will print.
    It is desireable, though not essential, for these to be printed in one print job.
    The Code I have been adjusting to try and achieve the result is below but I have tied myself in knots now and any help would be greatly appreciated:
    Many thanks
    //<AcroForm>
    //<ACRO_source>PrntForms:Annot1:MouseUp:Action1</ACRO_source>
    //<ACRO_script>
    /*********** belongs to: AcroForm:PrntForms:Annot1:MouseUp:Action1 ***********/
    var nButton = app.alert({
    cMsg: "Your selected forms will be sent to your default printer.\n\nIf you require to print to an alternative printer, press cancel and select 'Print' from the 'File' menu.",
    cTitle: "Submit Forms for Printing?",
    nIcon: 1, nType: 1
    // array for button responses
    //var aResponse = new Array("OK", "Cancel");
    if(nButton == 1)
    {    this.print({ bUI: false, bSilent: true, bShrinkToFit: true, nStart: 1, nEnd: 1 });
    } else
    if(nButton == 0)
    {    this.Exit
    var a_app;
    if(this.getField("AppForm1”).value=="Yes"){
        a_app = "1, 1";
    } else a_app = "0, 0"
    var b_app;
    if(this.getField(“AppForm2”).value=="Yes"){
        b_app = "2, 2";
    } else b_app = "0, 0"
        var pp = this.getPrintParams();
              pp.interactive = pp.constants.interactionLevel.full;
              pp.printRange=[[a_app], [b_app]];
              this.print(pp);
    //</ACRO_script>
    //</AcroForm>

    Hi Gilad D
    The 'printRanges.push' function works well on my Mac using Adobe Acrobat Pro XI however when it is used on the systems that the form users will be working on (which runs Adobe Reader 9.4.0.195) the ranges are not pushed to the printer dialogue box and the 'printRange'
    in the dialogue is still selecting the 'All Pages' radio button.
    Is the printRanges.push function a new and non-backwards-compatible function or is my code the problem
    //<AcroForm>
    //<ACRO_source>PrntForms:Annot1:MouseUp:Action1</ACRO_source>
    //<ACRO_script>
    /*********** belongs to: AcroForm:PrntForms:Annot1:MouseUp:Action1 ***********/
    var printRanges = [];
    if (this.getField("RBG10").value=="Yes") printRanges.push([0,2]);
    if (this.getField("RBG1").value=="Yes") printRanges.push([3,18]);
    if (this.getField("RBG2").value=="Yes") printRanges.push([19,27]);
    if (this.getField("RBG3").value=="Yes") printRanges.push([28,38]);
    if (this.getField("RBG4").value=="Yes") printRanges.push([39,42]);
    if (this.getField("RBG5").value=="Yes") printRanges.push([43,54]);
    if (this.getField("RBG6").value=="Yes") printRanges.push([14,16]);
    if (this.getField("RBG7").value=="Yes") printRanges.push([55,56]);
    if (this.getField("RBG8").value=="Yes") printRanges.push([57,65]);
    if (this.getField("RBG9").value=="Yes") printRanges.push([66,71]);
    if(printRanges.length>0){
       var pp = this.getPrintParams();
                pp.interactive = pp.constants.interactionLevel.full;
                pp.printRange=printRanges;
                this.print(pp);
    }else app.alert("No page ranges are selected");
    //</ACRO_script>
    //</AcroForm>
    Any assistance is greatly appreciated.
    Many thanks

  • OfficeJet 8600 doesn't print full page range from pdf with Mac OS X

    I have an OfficeJet Pro 8600 linked to a Mac with OS X Mavericks
    We often need to print a block of pages (say the first 40, or 10-20 out of the middle) out of large pdf documents of 250pg or more. To do so we put in the page range under 'pages' in the print instructions box.
    The printer sometimes prints an initial block of pages, then cuts off. If we then try to print the remaining pages, it starts by printing the whole range again, with the ones we already have, and then still cuts off maybe after having done 2-3 more than the first time round. To print the whole range we've eventually had to print the last pages one at a time.
    Any suggestions as to why this is happening, and how we can stop it? It happens with documents in Adobe Reader and web pages.
    Thanks for any assistance.

    Hi @NickRN8 
    I am not sure what is causing the inconsistency in selected pages not printing, but I'd be happy to help.
    Let's reset the printing system, repair disk permissions, re-add the printer using the right driver, and try to scan again.
    Reset Printing System
    Click the Apple icon (   ), and then click System Preferences.
    In the Hardware section, click Print & Fax/Scan. The Print & Fax/Scan  dialog box opens.
    Right-click (or  Ctrl  +click) in the left panel, and then click Reset printing system…
    Click OK to confirm the reset.
    Type the correct Name and Password.
    Click OK to reset the printing system. The Print & Fax dialog box shows no printer selected
    Note: This will remove all printers in the print and Fax/Scan, any printer removed can be re-added later by clicking the plus (+) symbol.
    Repair Disk Permissions
    On the Dock, click Applications, and then click Utilities.
    Double-click Disk Utility.
    Highlight your hard drive/partition on the left (by default this is "Macintosh HD").
    Click the Repair Disk Permissions button at the bottom of the window.
    Once the repair is complete, restart the computer and add the printer back.
    When you add the printer, please ensure you are using the HP driver.
    Select Add other Printer or Scanner                                                      
    Select the printer you are adding and next to 'Use' you can select the printer driver 
    I look forward to hearing from you. If the issue remains unresolved, I will post instructions to completely scrub the HP software from the computer and start fresh.
    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

  • Javascript Code to Print Multiple Page Ranges in Acrobat

    Hi All,
    I am very new to Javascript (used it for the first time this morning) and was looking for some help.
    I have built a fillable pdf form in Acrobat that I am required to print on a very regular basis.
    However, when I print it, there are only particular pages that I need to print as opposed to the entire document.
    I have put in a Print button that executes the below code when pressed:
    this.print (true, 1, 25) ;
    this.print (true, 27, 28) ;
    This allows me to print two different page ranges, but it separates them into two different print jobs.
    Is there a code that will allow me to put them into the same print job, so that it selects pages 1-25, 27-28 rather than doing them separately?
    I am currently using Adobe Acrobat X Standard.
    Any input would be much appreciated.
    Thanks!

    Acrobat/Reader 11 allows you to use the printRange property of the PrintParams object that's used with the print statement: http://livedocs.adobe.com/acrobat_sdk/11/Acrobat11_HTMLHelp/JS_API_AcroJS.89.1013.html
    See the sample code included at the link above.

  • Print A4 as A5 (double sided)?

    Hi
    I've got a document with two A4 artboards, which I'm printing double sided on one sheet of paper. Could anyone tell me the easiest way to print it at A5 size, so I'll get two double sided copies per A4 pages?
    Thanks!

    Make a pdf and print this from Acrobat. Acrobat has an option to print multiple pages per sheet, under page scaling. I do this all the time for printing manuals and brand standard guides, so I can fit them in my binder with less pages.
    For the double sided I cannot answer as every print driver has that menu in a different location. First make sure your hardware is capable of printing double sided, so you dont spend time looking for somehting your printer cannto do. If you have a fiery look for page setup >>fiery options >> double sided or possibly buried somewhere else(pends on your fiery verison/PPD) buried in your print options.

  • Trouble printing selected page range as handout

    I am trying to print for a keynote but only want a selected page range and just cannot seem to get it to work. When I go into print and select under the pages tab the "from" button and type the range ( eg 184-189 ) I only get the option of slides with notes or outline. I want to pront as a handout with 2 or 3 sldes per page. The preview shows no pages selectde and it is unable to print.
    I've tried highlighting the slides I wish to print and trying that but to no avail. The silly thing is I did manage to get it to work this way once but now it doesn't seem to work that way. I'm frustrated as I don't want to print the whole presentation off and throw away the sheets I don't need as it seems to defeat the object of page selection. I also don't want to watse ink by having one slide per page.
    Any help will be gratefully received.

    I have this issue with my printer also
    my work around is to delete the pages I dont want printed, save this version as a separate file and the pages I want print out correctly.

  • JavaScript Print Button Page Range Not Working Ubuntu Linux

    I have created a PDF file that has several button programed in Javascript to print a page or page range in the file.  It works great in Windows and Mac but in Ubuntu Linux there is a problem.  When you hit the button it brings up the Print window but it has all pages set to print instead of the 1 or 2 pages it is programed to print.  How do you fix this.  I used the following Javascript.  Please help.
    this.print({
    bUI: true,
    bSilent: true,
    bShrinkToFit: true,
    nStart: 1,
    nEnd: 1
    This is supposed to print only page 2 of the document but in Adobe Reader in Linux it wants to print page 1-12.  Apparently the nStart and nEnd does not work.  Is there another way to do this so it will work in Ubuntu Linux.
    Thanks

    I suspect that the problem has to do with the added security
    included in Flash 8 and above that restricts javascript. If you
    search the flash player KnowledgeBase on Adobe.com you'll find more
    detailed information about fixes, but here is what worked for my
    Javascripted items.
    Find your Program Files > Adobe > Adobe Captivate 4
    > Templates > Publish folder. Within the folder is a
    standard.htm file. Open this file (for this simple task, i just use
    notepad). In the script section, add...
    so.addParam("allowScriptAccess", "always");
    you'll see other similar param declarations. It doesn't
    matter the order.
    You can edit the individual .htm file if you want to test
    this first.
    That should do it.
    Here is the KB article that discusses the security features
    in greater detail:
    http://www.adobe.com/devnet/flashplayer/articles/secure_swf_apps_04.html

  • PrintJob is ignoring print dialog page range

    The class flash.printing.PrintJob presents an OS print dialog box when the start() method is executed, but in Windows XP the dialog option to select a page range is disabled.  In Mac OSX Snow Leopard the page range portion of the dialog is enabled, but is not recognized.  Instead, all pages are printed regardless of the entry.  It does work correctly for an Air application running under adl, but it does not work correctly for an Air application running under Air. It does not work correctly for a Flex application running in the browser, or running from Flash Builder.

    Did it work before? It could be a printer driver problem with the OS.
    It could also be a PS preferences problem.
    To fix, reset your preferences as described in the FAQ.
    http://www.adobeforums.com/webx/.ef4a07f/1
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults.
    A complete uninstall/re-install will not affect the preferences and a corrupt file there may be causing the problem.

  • Print pay-slip on double-sided

    Hello,
    We would like to print pay-slip on both side mode (we use ABAP list with report RPCEDTF0).
    The print is Ok but the problem is that, on the same page, there are pay data for an employee on the side and pay data for an other employee on the other side.
    My question is : how to do to add a jump (new page) after each employee ?
    Is it a standard option and how to implement it (ABAP, form) ?
    Examples could be help me.
    Thanks in advance for your answer.
    Daniel.

    dear ,
    check ur printer settings , bcos u are using std.program , so i cannt say SAP is doing wrong , better to check ur printer settings
    Regards
    prabhu

  • P2035 takes 2 minutes to print each page

    2035 printer and a Windows 7 computer.  First page prints normally.  Each Additional page takes 2 minutes to print. I have unplugged the printer and downloaded every available driver update.  The toner is a new HP unit.  Any ideas?

    Exactly same problem. Printer connected via net. With usb connection - no problem.
    For temporary solution i turn on "quiet mode", then print goes slowly, but without pause.
    UPD In other forum said, that this problem occur only with A5 format. And this is not a problem, this is automaticly protection of printer.

  • HP Deskjet F4280 - can print test page but nothing else on new Windows 7 laptop on home network

    I hope you can help me.  I have an HP Deskjet F4280 set up on my desktop computer running Windows Vista Home Premium 64x.  I've also got a home network on a D-Link Wireless N router.
    My new laptop is a Toshiba with Windows 7.  I can connect to the network no problem and can add the printer (attached to my desktop via USB) and can print the test page.  My problem is that I can't print any other documents.  When I check the print queue all it says is "spooling" and then after a few seconds the job just disappers from the queue.
    I connected the printer directly to the laptop and dowloaded the drivers for Windows 7 and it works fine. I've uninstalled and reinstalled all software on both computers.  I've spent hours trying different solutions I've found on this web-site and others...and nothing works!  I am very frustrated to say the least.
    Is there any way you can help me???

    Hi Lisamcgack, 
    Print sharing is a Microsoft supported application. Since the printer is working on the computers independently. Then this would be an issue between the operating systems. Check out the following Microsoft document on print sharing.  
    http://windows.microsoft.com/en-US/windows-vista/Share-a-printer
    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"

Maybe you are looking for

  • Syncing iphone and can't seem to transfer audiobooks that i have put in a playlist.  Sync menu doesn't show all playlists.  Help

    syncing iphone and can't seem to transfer audiobooks that i have put in a playlist.  Sync menu doesn't show all playlists.  Help

  • Windows 8.1 not recognizing my video card

    I found this link of something similar to a forum thread that was never completed! I have the same problem this guy had last year, but he never responded if their fixes worked for him. So far, I've tried both boot camp 5.1 driver versions and neither

  • Retrieve Time Machine deleted backup files

    Today Time Machine somehow didn't recognize my computer anymore and started a new full backup - and in order to free up space it deleted older backups. When I found out, it has already deleted ALL the history, and reported to me that there is not eno

  • Date function problen(urgent)

    create table test(t_date date) insert into test values (to_date('01-jan-2006 0715','dd/mon/yyyy hhmi')) insert into test values (to_date('01-jan-2006 0730','dd/mon/yyyy hhmi')) insert into test values (to_date('01-jan-2006 0759','dd/mon/yyyy hhmi'))

  • SolMan BPMN Interface

    Good Morning, I´m looking for an import interface into the SolMan. Is it possible to import bpmn or epc processes into the system without aris (including SAP add-on)? Or is there another alternative to import xls or xml files including process-struct