Check Printing - Multiple pages

There is a problem when a single check is printed on multiple pages for the same vendor - it is printing 3 consecutive check number on each page : 1000051 on page 1, 1000052 on page 2 and 1000053 on page 3. This is a multi-page due to long remittance list.
I have a requirement to print the same check number (1000051) on all the 3 pages and 3rd page should print the original check. The check number should not increment.
Is there a setting that needs to be turned on ? Any help will be appreciated.
Thanks.

Found the solution. I need to check the 'Do not Void any checks' checkbox on RFFOUS_C for it to keep the same check number on all pages.
Thanks for looking.

Similar Messages

  • How do I print multiple pages (2) to one A4 page?

    Hi folks,
    How do I print multiple pages (2) to one A4 page (as you can in a PDF) ?
    There is no option when I try to print & I have checked advanced etc. I have tried opening as a PDF. I have tried printing to PDF but it won't allow.
    Any ideas or suggestions would be greatly welcomed - I don't fancy printing the whole 188 pages, but I need them all!
    Thanks,

    Hi Chris,
    Try this, and if you have any trouble get back and we'll trouble shoot, but I think it will work for you.
    Open System Preferences.
    Select Print & Scan
    Click on your printer under Printers in the left pane
    Click "Open Print Queue", on the right
    The print queue app will appear on your Dock
    Open a Finder window containing your files to be printed and select them all
    Drag the files from Finder to Print Queue icon in Dock
    Regards,
    Jerry

  • Trouble printing multiple pages with HP ENVY 5531

    I am printing wirelessly from a Windows 8 machine.  If I only print one page it works fine every time.  If I try to print multiple pages then on the 2nd or 3rd page it always cuts off the bottom portion of the page.
    There was another post that had a similar problem but the problem went away when they connected up the USB cable from the computer to the printer.  I need to print over wireless so that isn't a good solution for me.

    Hi,
    Try following the steps below and check if that may help:
    - Open the HP software by clicking the HP ENVY 5530 icon within the Desktop or the Start Menu, then click the Printer Home Page (EWS) link.
    - Click the Network tab.
    - Depending on your printer model click on Networking and then on Network Address (IP) or click on IPv4 within the active network connection type.
    - Click on Manual IP , and then click Suggest a Manual IP Address . A manual IP address, Subnet Mask, and Default Gateway displays.
    *Be sure to take a note of the IP address and Confirm the changes, then close the EWS page.
    - Click the HP ENVY 5530 icon within the Desktop or the Start Menu and click the Utilities tab, then click on Update IP Address.
    - Type the manually configured IP address, click on Save and confirm.
    - Open the control panel and go to Devices and Printers.
    - Right click the HP ENVY 5530 icon and select Printer Properties.
    - Open the Ports tab.
    - Click the Add Port button, select Standard TCP/IP and click on New Port.
    - Follow the steps by typing the manually configured IP address and confirm the changes.
    Now try printing and check if the issue been resolved.
    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

  • How to print multiple pages in single spool in smartforms

    Hi all,
      I have a issue on to print multiple pages in single spool,i can able to print multiple pages in multiple spool .I am doing Check Print smartforms in that i need to print Multiple pages in single spool.Currently i am using the below code please help to solve this issue.
    IF gv_tabix = 1.
    lwa_outp_option-tdnewid = 'X'.
    ELSE.
    lwa_outp_option-tdnewid = ' '.
    ENDIF.
    Thanks,
    Deesanth

    Hi
    TABLES: spfli.
    DATA:
      t_spfli type STANDARD TABLE OF spfli.
    DATA:
      fs_spfli TYPE spfli.
    DATA:
      w_form TYPE tdsfname,
      w_flag TYPE i,
      f_nam TYPE rs38l_fnam,
      w_input TYPE ssfcompin,
      w_control TYPE ssfctrlop.
    SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME.
    SELECT-OPTIONS s_carrid FOR spfli-carrid.
    SELECTION-SCREEN END OF BLOCK blk .
    SELECTION-SCREEN BEGIN OF BLOCK block1 WITH FRAME.
    PARAMETERS:
      p_single RADIOBUTTON GROUP rad1,
      p_ind RADIOBUTTON GROUP rad1.
    SELECTION-SCREEN END OF BLOCK block1.
    START-OF-SELECTION.
    PERFORM display_data.
    PERFORM ssf_function_module_name.
    PERFORM spool_request.
    *& Form display_data
    * text
    * --> p1 text
    * <-- p2 text
    FORM display_data .
    SELECT * FROM spfli INTO TABLE t_spfli WHERE carrid IN s_carrid.
    ENDFORM. " display_data
    *& Form ssf_function_module_name
    * text
    * --> p1 text
    * <-- p2 text
    FORM ssf_function_module_name .
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING formname = ' '
    IMPORTING fm_name = f_nam
    EXCEPTIONS no_form = 1
    no_function_module = 2.
    * IF sy-subrc NE 0.
    * MESSAGE 'Form cannot be displayed' TYPE 'E' .
    * ENDIF. " IF sy-subrc eq 0
    ENDFORM. " ssf_function_module_name
    *& Form spool_request
    * text
    * --> p1 text
    * <-- p2 text
    FORM spool_request .
    w_input-dialog = 'X'.
    CALL FUNCTION 'SSFCOMP_OPEN'
    EXPORTING input = w_input
    EXCEPTIONS error = 1.
    *" LOOP AT t_spfli .....................................................
    LOOP AT t_spfli INTO fs_spfli.
    w_control-no_open = ' '.
    w_control-no_close = ' '.
    *"Single spool request..................................................
    IF p_single EQ 'X'.
    w_control-no_open = 'X'.
    w_control-no_close = 'X'.
    ELSE.
    *"Individual spool request.............................................
    IF w_flag NE '1'.
    w_control-no_open = 'X'.
    w_control-no_close = ' '.
    w_flag = 1.
    CALL FUNCTION ' '
    EXPORTING control_parameters = w_control
    fs_spfli = fs_spfli
    EXCEPTIONS formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4.
    endif. " IF w_flag ne '1'
    ENDIF. " IF p_single eq 'X'.
    CALL FUNCTION ' '
    EXPORTING
    control_parameters = w_control
    fs_spfli = fs_spfli
    EXCEPTIONS formatting_error = 1
    internal_error = 2
    send_error = 3
    user_canceled = 4.
    ENDLOOP. " LOOP at t_spfli into ...
    *&This function module close the spool request *
    CALL FUNCTION 'SSFCOMP_CLOSE'
    EXCEPTIONS error = 1.
    ENDFORM. " spool_request
    Regards,
    Sravanthi

  • Trouble printing multiple pages, not multiple images per page

    I have just upgraded to PS Elements 10 and am having a challenging time printing multiple pages of the same document (image).  These are labels that will be run, so we do 300 of the same image at a time, one per page (label).  From the open Elements .psd file I choose print and set the printer settings, and then choose the amount of labels to print.  No matter what number I put in for the Print X copies of each page, it still only prints one.  When I convert it over to the organizer it seems to work with printing multiple copies.  Having to move each file over especially if we are just wanting a quick test run is very time consuming and troublesome.  It seems like there should be a simple fix that I am missing in the Elements program.

    Hi,
    Try following the steps below and check if that may help:
    - Open the HP software by clicking the HP ENVY 5530 icon within the Desktop or the Start Menu, then click the Printer Home Page (EWS) link.
    - Click the Network tab.
    - Depending on your printer model click on Networking and then on Network Address (IP) or click on IPv4 within the active network connection type.
    - Click on Manual IP , and then click Suggest a Manual IP Address . A manual IP address, Subnet Mask, and Default Gateway displays.
    *Be sure to take a note of the IP address and Confirm the changes, then close the EWS page.
    - Click the HP ENVY 5530 icon within the Desktop or the Start Menu and click the Utilities tab, then click on Update IP Address.
    - Type the manually configured IP address, click on Save and confirm.
    - Open the control panel and go to Devices and Printers.
    - Right click the HP ENVY 5530 icon and select Printer Properties.
    - Open the Ports tab.
    - Click the Add Port button, select Standard TCP/IP and click on New Port.
    - Follow the steps by typing the manually configured IP address and confirm the changes.
    Now try printing and check if the issue been resolved.
    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

  • Printing multiple pages in Java...

    I have created a JEditorPane that needs to print multiple pages of html text. I have it printing out the first page but that's it. Also, text that is print out is cut off on the right hand side. Can anyone help me with this? My code is below. I left out the import statements for space.public class
    Browser_1 extends JFrame implements ActionListener//, HyperlinkListener
    public static void main(String[] args)
    new Browser_1("http://www.cnn.com/");
    protected JEditorPane htmlViewer;
    protected String initialURL;
    public Browser_1(String initialURL)
    setTitle("Browser_1");
    //this.initialURL = initialURL;
    //setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JButton openButton = new JButton("Open");
    openButton.addActionListener(this);
    JButton printButton = new JButton("Print");
    printButton.addActionListener(this);
    JPanel buttonPanel = new JPanel();
    buttonPanel.add(openButton);
    buttonPanel.add(printButton);
    getContentPane().add(buttonPanel, BorderLayout.SOUTH);
    try
    htmlViewer = new JEditorPane(initialURL);
    htmlViewer.setEditable(false);
    htmlViewer.addHyperlinkListener(new _LinkListener());
    JScrollPane scrollPane = new JScrollPane(htmlViewer);
    getContentPane().add(scrollPane, BorderLayout.CENTER);
    catch (IOException ioe)
    warnUser("Can't build HTML pane for " + initialURL + ": " + ioe);
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    int width = screenSize.width * 8 /10;
    int height = screenSize.height * 8/10;
    setBounds(width/8, height/8, width, height);
    setVisible(true);
    //openDocument(new File("./htdocs/index.html"));
    private void openDocument(File doc)
    try {
         htmlViewer.setPage(doc.toURL());
    catch(MalformedURLException e)
         e.printStackTrace();
    catch(IOException e)
         e.printStackTrace();
    public void actionPerformed(ActionEvent event)
    String command = event.getActionCommand();
    if(command.equals("Open"))
    JFileChooser chooser = new JFileChooser();
    chooser.setFileFilter(new _FileFilter());
    if(chooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION)
         openDocument(chooser.getSelectedFile());
    else if(command.equals("Print"))
    PrintUtilities.printComponent(htmlViewer);
    private void warnUser(String message)
    JOptionPane.showMessageDialog(this, message, "Error", JOptionPane.ERROR_MESSAGE);
    // Inner class implements the FileFilter interface for '.html' files
    class _FileFilter extends javax.swing.filechooser.FileFilter
    public boolean accept(File f)
    return(f != null && (f.isDirectory() || f.getName().endsWith(".html")));
    public String getDescription()
    return("HTML Documents (*.html)");
    // Inner class implements the HyperlinkListener interface
    class _LinkListener implements HyperlinkListener
    public void hyperlinkUpdate(HyperlinkEvent event)
    if(event.getEventType() != HyperlinkEvent.EventType.ACTIVATED)
    return;
    if(event instanceof HTMLFrameHyperlinkEvent)
    HTMLDocument doc = (HTMLDocument)htmlViewer.getDocument();
    doc.processHTMLFrameHyperlinkEvent((HTMLFrameHyperlinkEvent)event);
    else
    try {htmlViewer.setPage(event.getURL());}
    catch(IOException e) {e.printStackTrace();}
    class PrintUtilities implements Printable
    protected Component componentToBePrinted;
    public static void printComponent(Component c)
    new PrintUtilities(c).print();
    public PrintUtilities(Component componentToBePrinted)
    this.componentToBePrinted = componentToBePrinted;
    public void print()
    PrinterJob printJob = PrinterJob.getPrinterJob();
    printJob.setPrintable(this);
    if (printJob.printDialog())
    try
    {printJob.print();}
    catch(PrinterException pe)
    {System.out.println("Error printing: " + pe);}
    public int print(Graphics g, PageFormat pageFormat, int pageIndex)
    double height = pageFormat.getImageableHeight();
    double width = pageFormat.getImageableWidth();
    int totalNumPages = (int)Math.ceil(componentToBePrinted / height);
    if (pageIndex >= totalNumPages)
    { return(NO_SUCH_PAGE); }
    else
    Graphics2D g2d = (Graphics2D)g;
    g2d.translate(pageFormat.getImageableX(), pageFormat.getImageableY());
    disableDoubleBuffering(componentToBePrinted);
    componentToBePrinted.paint(g2d);
    enableDoubleBuffering(componentToBePrinted);
    return(PAGE_EXISTS);
    public static void disableDoubleBuffering(Component c)
    RepaintManager currentManager = RepaintManager.currentManager(c);
    currentManager.setDoubleBufferingEnabled(false);
    public static void enableDoubleBuffering(Component c)
    RepaintManager currentManager = RepaintManager.currentManager(c);
    currentManager.setDoubleBufferingEnabled(true);

    A recent article in JavaPro has a nice solution for this problem. Check out
    http://www.fawcette.com/javapro/2002_12/online/print_kgauthier_12_10_02/
    It describes a way of using Views to break down the pages.

  • Business Inkjet 1200 will not print multiple page jobs

    Product Name: HP Business Inkjet 1200
    Product Model Number: C8154A
    Product Serial Number: TH49M1403W
    Service ID: 15148
    Firmware version: 20041001 MMR2016W
    Regulatory Model Number: SNPRC – 0401 – 01
    Date: Sept 22 2004
    HP Business Inkjet 1200, XP SP2, connected via Draytek 2710n router USB port will not print multiple page jobs.  Will only print 1 page pdf, <3 page word docs.
    Produces error - 'this document failed to print'
    Works fine printing multiple page jobs from other PCs on the network.  Other PCs are configured same.
    Configured to use TCP/IP port 192.168.1.1 (router/gateway IP), LPR, Queue "p1"
    HP Printer Diagnostic Utility shows no problems.
    Tried:
    Remove printer and drivers and reinstall.  Cleaned temp spools folder.  Checked amount of disk space, page file, ram. Reboot variously router, printer, PC. - No luck.
    Any response much appreciated, thanks in advance.

    I can't print my complete e- mail, only the first page. i have several pages of mail to print with all of the headers but am not able to do it on hotmail. it seems like i was able to do it before. it is import that all of these print because of current issues i am dealing with .
    Thanks, Ron

  • Print multiple pages on one page in Preview?

    I tried to print a PDF in OSX Lion and I was unable to find the option to print multiple pages on one Page. Instead there is an option to print multiple copies of pages on one page. Does anybody know where I can find the old option from (as in Snow Leopard, Leopard, Tiger..)? (See screenshot.)
    Thanks!
    roboter

    Look under the "Vorschau" menu for the Layout menu, and then choose "Seiten pro Blatt."
    Hope this helps.

  • How do you get rid of white space when you are printing multiple pages to one sheet of paper?

    How do you get rid of extra white space when you are printing multiple pages to one sheet of paper?  When printing multiple pages to one sheet of paper Acrobat won't let you select the "zoom" for printing.
    Thanks

    Take a look at Quite Imposing.

  • Print multiple pages on a single page in word or from a PDF

    I need to print multiple pages on a single page from a PDF (ie: pages 1 and 2 onto a single page, pages 3 and 4 on a single page etc.)
    Does anyone know how to do this? Thanks

    (near the middle in a pull down menu - if you have the small print window click on the triangle next to the printer name to expand the window
    In preview the menu shows "preview" until you open it to see more - and
    if you have the small print window click on the triangle next to the printer name to expand the window
    LN

  • Any way to get more than 100% zoom on print jobs when printing multiple pages?

    I know how to increase the size of a print job, when I am printing one page at a time. But when I go to print 2 pages at once (the multiple page print function), there are always large margins around the page. I'm ok with saving paper and printing up two pages, but it seems silly to see small print and wide blank margins. Is there any way to increase the print zoom, when printing multiple pages per sheet of paper?

    I once overshot the limit by marking too many photos to fit within 99 pages, but I could never figure out how to fool the application and had to give up trying to add those 14 extra photos.
    I asked a friend (who practically lives in Terminal) if he had any way of modifying that limit, but he reminded me that if their printing services are set up to bind books and bill for only 99 pages, fooling the application might be useless if the service only prints me a 99 page book and discards the additional pages.
    I can understand that you wouldn't want to let people print 1000 page books, but I sent feedback anyway to allow me to increase the limit. Anyone know of any service that lets you print beyond iPhoto's limits?

  • Error in smartform when printing multiple pages

    Hi,
    I m using a smartform which have two pages in it,
    i m able to save and activate it without any error message and when i run the function module generated to chk my smartform
    it runs fine and diplays two pages i m using.
    but as i m attaching this form with my driver program it is giving an error message while running . the error message is " No other output defined in main window."
    Please help me out to resolve the issue.

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

  • Trouble Printing Multiple Pages in Quick Succession - LaserJet P4015x - Networked Printer

    Hi,
    We are currently experiencing problems printing multiple pages in quick succession. We use a bespoke Microsoft Access Database to run our Sales Order Processing. As part of this software we print 3 part invoices, credit notes etc on different coloured paper. We do this by printing to different printer trays. Originally we tried automating the printer tray configuration through VBA code using one report and changing the print tray as part of the print process but were having problems with Microsoft Access freezing. As result we have resorted to printing 3 different reports straight after each other (using VBA code) but with each report specified to print from a different tray.
    We are current using tray 2 (500 sheet feeder - standard A4 paper), tray 3 (500 sheet feeder - standard A4 paper) & tray 4 (500 sheet feeder - standard A4 paper).
    The current setup does print a copy from each tray and does give us what we want apart from the whole print process being very slow.
    The first page comes out from tray 2 at the normal speed you would expect from a network printer but then we start to have issues.
    Sometimes the second page from tray 3 will come out quickly but the third page (from tray 4) will be very slow or both pages 2 & 3 will be slow to print. There seems to be no pattern as to why these are slow. To make matters even worse sometimes it will print correctly and all three pages come out in very quick succession (although rarely).
    We are using modern PC's (running Windows XP SP 3 with 2GB RAM & 160GB HDD) and the print command is definately being sent to the printer in quick succession - as far as I can tell. I have tried to setting the printers to print through  the server and setting them up to print directly to the printer using the built in print server in P4015x.
    The printers are networked to a Windows SBS 2008 server with quad core processors and 16GB RAM.  The server is only used as a file and print server and is not under heavy load.
    I will also point out that I have tried printing to another HP printer (4250dtn) and it has exactly the same problems.
    I have removed advanced printing features from the printer driver setup on the client PC's but it does not seem to make any difference. I have also tried printing directly to the printer rather than spooling.
    I have updated the drivers to the latest one on the HP website and still no change.
    I would appreciate any ideas any one might have to sort the problem out.

    Did you ever solve this?
    I'm doing the exact same thing: three print outs in succession to a specific tray on a network shared printer and occasionally getting a MS Access printing error 2212 counldn't print you object.  Printer setup is saved with the reports one for each printer tray.
    I'm printing from bespoke MS Access 2002 application using runtime to HP LJ 4100 on Citrix terminal server session.
    Any info you have would be appreciated.

  • Used to be able to print multiple page pdf files on my HP 7310 all in one and then it stopped and would only print the curent page. This is tedious for long PDF docs. I am on 10.6.8 .

    Used to be ablert to print multiple page pdf files on my HP 7310 all in one printer and now I can only print the current page and therefore it takes forever printing them one by one. I am in version 10.6.8. Tried printing as image using the advanced click and that did not work either.  I have Adobe 9.0 reader installed.

    I tried this earlier, and I tried it again today.  Both times it said "Software Missing!"  and "HP Software required to connect to your printer over the network could not be found on this computer."  But when I tried to install the software (AIO_CDB_Net_Full_Win_WW_130_141.exe, which I downloaded from HP's web site), it wouldn't install, as described above.  In the diagnostic utility, I clicked "skip", and it said "Connection Verified!", and "The printer is connected to the network and the services related to the network connections have been verified and reset to a normal operating state.  Everything appears to work fine at this point.  Please doa test print to verify that the issue is resolved or click Skip to move to the next step."  I clickedthe "Test Print" button, and immediately it popped up a box that said "Test Print Failed."
    I tried again to install the HP software, and it installed, detected the printer, and asked me to select it.  I selected the printer, clicked "next", and it did its network diagnostics.  Then it said "Problem(s) found with your network" and "Problem(s) may exist with the network functions of your printer . . ."  I continued the installation without connecting to the printer.  Then I ran your network printer diagnostic tool again, and got the same result - "HP Software required to connect to youir printer over the network could not be found on this computer."

  • Printing multiple pages per sheet on Adobe Reader for Windows 8

    I cannot print multiple pages per sheet on Adobe Reader touch for windows 8.1

    What is your Reader version?  In Reader XI 11.0.07 you would click on Multiple, then specify 4 (or 2) pages per sheet:

Maybe you are looking for

  • HP UT LEDM driver stopped working

    I got this error message after my printer wouldn't work (HP Laserjet P1102w).  What do I do to get my printer working again? I rebooted, unplugged the printer and plugged it back in again... nothing seems to be working. Stopped/started print spooler,

  • SRM 7.0 Buyer not able to change SC in Sourcing cokcpit.

    HI Everyone,   I remember, in SRm 5.0, buyer can change shopping cart whole sourcing from sourcing cokpit. Has this been changed in SRM 7.0? We are nota able to change the SC in Sourcing cockpit. Thanks, SG

  • Apple TV HD encode

    I have a large amount of different format HD clips that have been shot on a variety of cameras from HV20 to HDCam. Most are 1080i29.97 but some are the HV20 1080 24p mode and some are 720p30. I need to convert them all to be played without jerkyness

  • Overclocking and Benchmarking Applications

    Hey guys, what applications are you using for stressing and testing any machines that you've overclocked? I've looked at the following applications and/or live CD/DVDs, but I'm wondering if there is something else worth trying? StressLinux (liveCD) P

  • When i do agroup of apps is it possible to protect this group by password or code?

    or protect single app by different password/code ( not by parental options)