Copies disabled when printing directly to Printer

Using release Release 10.1.3.2.0, server. Why is BIP always defaulting to 1 copy when printing to a direct printer. It seems to completely ignore the number of copies parameter. I am doing a http post to the scheduler by the way, since we would like to print reports directly from our application without any user intervention. I can understand if the printer chooses to ignore the IPP parameter. Tried to do this from the 'Send' and 'Schedule' page and looks like 'Number of Copies' is disabled for direct printers.

Yes, you are right, we have a same problem. Looks like need to change some server configuration for printer.

Similar Messages

  • Default Copies Setting When Printing From iPhoto...Help

    I have the latest version of iPhoto '08. In a previous version I needed to print 12 copies of a bunch of photos. Since upgrading every time I go to print it prints out 12 copies unless I remember to go to customize and change to 1 copy. The 12 copies is the "standard" setting. No other application has this problem. HELP. How do I get this back to default copies of 1. Thanks!

    Thanks for the very quick reply! I had tried that earlier but just moved it to the desktop and let iPhoto create a new one...that didn't work. However, moving it to the trash instead DID work. Strange. Thanks and the problem is solved now! Very much appreciated!!!

  • Report output different when sent directly to printer

    I have a report that if formated for 8.5 x 11 paper and has an address at the bottom of the page. When the report is generated as a pdf the address is in the corrent postion. When the report is sent directly to a printer from the report server the bottom 2 inches of the report are not printed. If i send the pdf version to the same printer it prints correctly.
    Any help with this issue would be greatly appreciated.

    Thanks for your answer, Ramachandra!
    However I need some more specific information to solve this.
    Which printer layout settings are relevant for the handling of margins and duplex printing for Adobe Forms?
    I have not set up the printer myself but when talking to the printer guy which settings should I recommend him to look at?
    I can see in transaction SPAD that there are settings specific to SmartForms but there is nothing said about Adobe Forms. Is there some way to make Adobe Forms related setting appear in SPAD for a device type?
    Maybe my problem is not related to the printer device settings but rather to the way the printer is being called. When printing duplex we will have to override the default settings of the printer anyway.
    Function module FP_JOB_OPEN has a parameter structure of the type SFPOUTPUTPARAMS. Which fields in this parameter structure are to be manipulated to get duplex print and output fitted to page size?

  • HP Laserjet P3015 double sided - the last odd page prints on the same page when printing two copies

    HP Laserjet P3015 double sided printing is set up on Windows 7.  When printing two copies of a document, if it has odd number of pages, the last page is printed on both sides of the page. There is no page feed for the last page.
    Suppose say there are 3 pages in a document and you want to print two copies. It prints like 1/2, 1/2 and 3/3.  The third page (odd number) print on the same page. The last page page does not print on two pages.
    It works alright on Windows XP.

    Hope that you have configured the correct paper type and size in the printer hardware and also selecting the same paper tray, size, type from the printer driver while printing.
    It may be caused due to the job formatting done by the application software or some jobs settings done from the job/application or printer driver.  Check by toggling the 'collate' option and also try to print from a different application software.
    Please mark the post that solves your problem as Accepted Solution
    Click the 'Kudos Thumbs Up' if this was helpful. Thank You!
    (Although I am an HP employee, I am speaking for myself and not for HP)

  • Adobe Form output cropped when sent directly from SAP to printer

    I have created an Adobe Form (not interactive) that looks perfectly OK when previewed in Adobe Acrobat viewer but when printed blank margins of 4-5 millimeters are applied on all 4 paper edges. The form was designed with a coloured frame around it but the margins effectively remove most of the frame. The form content is being cropped instead of being compressed inside the margins.
    The form has been created with LiveCycle Designer via SAP transaction SFP. I am generating the form from an ABAP program
    When the form is printed from the Adobe Acrobat viewer I have the option to set Page Scaling to 'Fit to Printable Area'. This makes the form content being compressed inside the blank margins and the coloured frame remains intact. If I leave the Page Scaling setting as 'None' the output is being cropped as described above.
    The real problem occurs when I want to print without previewing first. I need to do that since previewing enables the user to skip printing and the application must know if the form has been printed or not. I have so far found no way to make the printer print on the paper edges or fit the content to printable area. Is there some setting in the output parameters than handles this?
    Also there is a need for duplex printing when sending form directly to printer. On help.sap.com there is information about duplex print for SAPscript and Smartforms but nothing for Adobe Forms.
    Here is an excerpt of the ABAP code used for printing the Adobe Form:
      DATA: zs_outparams TYPE sfpoutputparams,
                 z_fmname     TYPE rs38l_fnam.
    Set some print parameters
      zs_outparams-nodialog = abap_true.        "No user dialog
      zs_outparams-device   = 'PRINTER'.          "Output device
      zs_outparams-dest     = z_pdest.              "Printer name
      zs_outparams-reqnew   = abap_true.        "New spool request
      zs_outparams-reqimm   = abap_true.        "Print immediately
    Open print job
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = zs_outparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4
          OTHERS          = 5.
      IF sy-subrc <> 0.
        RAISE print_error.
      ENDIF.
    Get FM name for form
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = 'Z_TEST_FORM'
        IMPORTING
          e_funcname = z_fmname.
    Call FM to print form
      CALL FUNCTION z_fmname
        EXPORTING
          i_header       = t_data_for_form
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        RAISE print_error.
      ENDIF.
    Close print job
      CALL FUNCTION 'FP_JOB_CLOSE'
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 3
          OTHERS         = 4.
      IF sy-subrc <> 0.
        "Ignore
      ENDIF.
    Please advise on how to
    -  avoid the content cropping
    -  enable duplex print
    when sending Adobe forms directly to the printer
    Thanks very much!
    Bernt Evensen

    Thanks for your answer, Ramachandra!
    However I need some more specific information to solve this.
    Which printer layout settings are relevant for the handling of margins and duplex printing for Adobe Forms?
    I have not set up the printer myself but when talking to the printer guy which settings should I recommend him to look at?
    I can see in transaction SPAD that there are settings specific to SmartForms but there is nothing said about Adobe Forms. Is there some way to make Adobe Forms related setting appear in SPAD for a device type?
    Maybe my problem is not related to the printer device settings but rather to the way the printer is being called. When printing duplex we will have to override the default settings of the printer anyway.
    Function module FP_JOB_OPEN has a parameter structure of the type SFPOUTPUTPARAMS. Which fields in this parameter structure are to be manipulated to get duplex print and output fitted to page size?

  • Page does not fit on paper when printed directly to printer

    Hi experts,
    I have developed a form in transaction SFP, using A4 as the paper format for the master pages. If I print to spool and preview and print my form from spool using transaction SP01, the form prints nicely. If I print directly to printer using the generated function module for the form (setting parameter REQIMM to true), the page does not fit on the paper (it is cropped), and also I do not get duplex printing.
    Why do I get different results when printing directly to printer as opposed to printing to spool first? How can I ensure that the form is printed correctly when printing directly to printer?
    thanks!
    Frank

    Did you check the window settings of the Firefox desktop shortcut to see how Firefox opens?
    Did you try to delete the current Firefox desktop shortcut and create a new shortcut?
    Use Restore or Maximize in the right-click context menu of the Taskbar icon to set focus to the Firefox application if you do not see the Firefox window.
    Open the system menu of that Firefox window via Alt+Space and see if you can move and resize that window (use the keyboard cursor keys).<br />
    If that works then first close all other open Firefox windows and then close Firefox via "File > Exit/Quit" to save that setting.

  • ID CS5 Disable background printing when exporting pdf

    Is there a way to disable background printing when exporting to pdf in InDesign CS5?
    I really prefer the way pdf-export has been done in the foreground as it has been since InDesign 1.0.
    An option where you could choose between forground and background printing would be nice since I'm pretty sure there are people out there who want background printing. Why else would Adobe all of a sudden make this, in my opinion, stupid change?

    For the record, exporting PDF has nothing to do with printing from ID. In theory it was made a background task to improve your efficiency and productivity (at the request of users, by the way), since a foregorund export stops you from doing anything else while you wait, but the background export allows you to work on things at the same time.
    Most of the time this actually works well. There was a bug that showed up under certain circumstances (squashed in the last patch), and some reports of export failure with other files as well that are not related to the bug. Though I was one of the first to report a hang during export, I've not seen one in at least six months, maybe longer, and none of the files that originally failed do so now. If the reason you want the foreground export is to see a progress bar, which I miss, you can open Window > Utilities > Background Tasks to see it.
    If you'd like this to be a user preference in a future release, file a request at Adobe - Feature Request/Bug Report Form

  • How to disable some color when printing separations in Ai CS6-CC (JS)

    Hello Everyone!
    Configuration: Win 7 Pro x64, Illustrator CS6x64-CCx64, default printer PDF.
    When printing separations from Illustrator CS4 following script prints all colors except Cyan (as was intended).
    But when printing from CS6-SS disable the color is not possible - all colors are printed without exception.
    var adoc = activeDocument;
    var o = new PrintOptions();
    o.colorSeparationOptions = new PrintColorSeparationOptions();
    o.colorSeparationOptions.colorSeparationMode = PrintColorSeparationMode.HOSTBASEDSEPARATION;
    o.colorSeparationOptions.inkList = adoc.inkList;
    for (var i = 0; i < o.colorSeparationOptions.inkList.length; i++) {
    if (o.colorSeparationOptions.inkList[i].name == 'Process Cyan') {
      o.colorSeparationOptions.inkList[i].inkInfo.printingStatus = InkPrintStatus.DISABLEINK;
    adoc.print(o);
    If you check, you have inkInfo.printingStatus Cyan changed to "InkPrintStatus.DISABLEINK".
    Why it is printed and how to disable?
    Thanks!

    Hi saaiful,
    Thank you for posting your question. window. will print header and footer.
    Here are some solutions I found after researching your issue:
    *[http://forums.mozillazine.org/viewtopic.php?f=12&t=216810]
    *[http://stackoverflow.com/questions/8228088/remove-header-and-footer-from-window-print]
    *[http://www.dreamincode.net/forums/topic/22598-using-windowprint-without-printing-header-and-footer/]
    *take a screenshot and create a page that is printable [http://www.webdeveloper.com/forum/showthread.php?210947-Using-window-print-without-printing-header-and-footer]
    *Target to another window then print: [http://www.liferay.com/community/forums/-/message_boards/view_message/3401817]
    Hope this helps.

  • Disable Auto-Centring When Printing Multiple Pages

    Hello,
    I am using Adobe Reader XI Version 11.0.04 (mac). I am trying to print multiple pages (specifically custom 1 by 3 portrait), but am finding that the 3 pages auto-centre (appear in the middle of the page). Is there a way to disable this auto-centring so that the three pages can be flush to th left of the page (e.g. left margin).
    Thanks

    Re: error in smartform when printing multiple pages
    dharani tadikonda
    Thanks for this answer. It is absolutely correct.

  • Print problem - prints fine in photoshop and windows but direct from illustrator is off centre when printed.

    when printing a full page image from illustrator the print is off centre and does not print the image in line with the paper. the same image prints just fine in photoshop and as a jpeg from windows own program. the positioning is zeroed in the dialouge box and the preview image shows how it should print, but it does not print as shown. please help.

    clarke,
    What happens if you Save a Copy as PDF, then print from Acrobat or Reader?
    If that helps, you may consider trying to (find and) use a PostScript (emulatin) printer driver to your printer, if possible.

  • When a document is a scanned PDF and converted to word some of the words and paragraphs are randomly a shade lighter when printed.  You can (barely) see it on the screen but it is different.  All font and design are the same.  Any suggestions?

    The lighter shading has been a problem when printing the documents.  You can barely see it but it is there????

    Hi Notary,
    I saw something similar with my 4 TB Promise SmartStor NAS after I upgraded to Lion. Only, I had ALL of my iTunes library on the NAS and one day, about a week after the upgrade I finally tried to play music with iTunes, but it kept throwing up an error just like the one you're seeing. I searched around for a while and finally found some steps that fixed the problem.
    I found this solution at another site (can't remember which) that gave credit to this site:
    http://www.alexanderwilde.com/2011/04/os-x-lion-connection-error-with-afp-and-wo rkaround/
    Here are the directions I cut-n-pasted into my little notes file:
    1) Launch the Terminal app
    2) Run this command:
    sudo chmod o+w /Library/Preferences
    3) Run this command:
    defaults write /Library/Preferences/com.apple.AppleShareClient afp_host_prefs_version -int 1
    4) Restart your computer
    5) From Finder, select an AFP server, or use “Connect To…”
         This will cause the AFP Client to create the full preferences file
    6) Launch the Terminal app again
    7) Run this command (all on one line, make sure double-quotes are simply double-quotes from your keyboard, not pasted from the web as up and down quote marks) (yes, some of the spelling looks weird):
    sudo defaults write /Library/Preferences/com.apple.AppleShareClient afp_disabled_uams -array "Cleartxt Passwrd" "MS2.0" "2-Way Randnum exchange"
    8) Run this command:
    sudo chmod o-w /Library/Preferences
    9) Restart your computer
    To disable this hack, run this command (all on one line, make sure double-quotes are simply double-quotes from your keyboard, not pasted from the web as up and down quote marks):
    sudo defaults write /Library/Preferences/com.apple.AppleShareClient afp_disabled_uams -array-add "DHCAST128"
    I hope that helps. If not, sorry for the ludicrous-long reply.
    Andy

  • Ligatures drop out when printing from ID CS3 to a PS3 printer

    Just got a new Dell 5110cn and this issue is driving me nuts.
    InDesign CS3, Vista 64-bit. Am using the PS3 driver for the 5110cn, not the PCL driver.
    I have disabled device font substitution in the driver. I have gone into the font substitution table and set everything to "Don't Substitute."
    When I print directly from ID CS3, the "fi" ligatures in words like "certificate" or "verification" drop out.
    The font in question is "Times".
    If I Export the document to PDF, the ligatures view fine and print fine from the PDF.
    Illustrator-created EPS files with the word "certificate" that are then dropped into ID CS3 print fine when printed direct.
    I can print MS Word documents that have the word "certificate" in Times directly to the printer and those print fine (but for all I know, Word isn't using the same ligature method).
    While this is a new printer, the behavior apears to be isolated to InDesign (printing direct from Adobe Illustrator is fine as well).
    What gives???

    Gah!
    Why the hell is that disabled by default???
    The other way I fixed it was to change from "Times" to "Times New Roman" and that worked (even without the Download PPD Fonts option checked).
    Thanks!

  • HP Photosmart 7200 Colors are Wrong When Printing on Photo Paper

    I'm running Windows 7 and am having a problem when printing on photo paper.  The colors are off; mainly green.  The colors are fine when printing on plain paper.  I have tried printing from my computer as well as straight from the media card.  Same result.  I am also using HP Photo Premium glossy paper.  Print cartridges are brand new and are loaded correctly.
    Any solutions or troubleshooting tips I can try?

    Hi @Vay725,
    Welcome to the HP Forums!
    I understand that the colors are wrong when printing on photo paper! I am happy to help you with this print quality issue!
    For further assistance, I will need to know some more information:
    The Product/Model Number of your printer. Follow instructions in this link. Finding Your HP Product Model Number.
    If you are using a Windows or Mac Operating System, and the version number. To find the exact version, visit this link. Whatsmyos.
    If the printer is connected, Wireless, or USB.
    If the printer is able to make copies.
    If the power cable is plugged into a surge protector, or directly to the wall outlet. Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector. This applies to Inkjet printers as well. 
    If you are using Genuine HP Ink cartridges.
    Thank you for posting, 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!

  • HP F2210 printer, wired LAN, cannot print from iMac when printer is installed on Windows XP.

    Let's try this again...
    I have a home network, and have installed my newly purchased HP F2210 printer on one of the PC's running Windows XP SP3.  I have fully installed & updated the drivers, and the printing functions work perfectly from the computer on which it's installed.
    I am also able to print without issue from any other PC running windows on my network.
    My wife has an iMac running Macintosh OS 10.4.11.  When connecting directly to the network via a wired connection, I am unable to locate the F2210 as an available printer on the network.
    Troubleshooting steps taken:
    *  I have tried disabling airport to ensure it's trying to find the printer through the wired connection rather than the wireless.
    *  I have attempted to install "additional drivers" on the PC the printer is connected to.  THIS FAILED, as I was unable to get windows to find the correct drivers on the install disk.
    *  I attempted to install the printer drivers directly on the iMac.  I was still unable to locate the printer after doing this.
    Any suggestions for other steps to try would be appreciated.

    Hi there, when you check the printer job history in your ePrintCenter account what do you see? Is there a record of the failed print jobs? Here's a link to a post with some troubleshooting steps for ePrint connectivity issues. Take a look at the suggestions here and try them in the order they are presented http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile/ePrint-Apps-Connectivity-Troubleshooting-Pleas...
    Hope this information helps to resolve your problem. Best of luck.
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

  • Xerox 7400 weird behavior when printing from Illustrator/Acrobat CS3

    Hi,
    Since I have Leopard, every time I try to print anything from Illustrator on the 7400N and doing more than one copy, it looks like the printer takes every copy as a separate print job (but in the print queue looks like one).
    This is what it's going on:
    - Illustrator takes much more time to process the same printout, let's say... if I want to print 20 copies, it looks like it takes 20 times the amount of time it does when printing just one copy.
    - The printer takes much more time to print, and before it prints every copy I see the message "Processing Data - Please Wait" in the 7400 LCD Display. That message should pop up only one time at the beginning, not every time it makes a copy.
    But all this happens when I print vector images, if try to print a raster image from Photoshop for instance, or a PDF document from Preview (which rasterizes the image before sending the printjob to the 7400), everything behaves normally.
    It looks to me that the problem pops up only if If the printjob is sent using postscript language. I had CS3 and the same printer under Tiger and no problem at all, so I believe it has a to be a Leopard problem. Any help will be appreciated.

    Gah!
    Why the hell is that disabled by default???
    The other way I fixed it was to change from "Times" to "Times New Roman" and that worked (even without the Download PPD Fonts option checked).
    Thanks!

Maybe you are looking for