Need to print multiple sections in a group

We have print customer invoices. Along with each invoice, we have to send
1.     A Cover Letter that is always one page
2.     Terms and conditions. This could be between 1 to 3 pages
Our requirement is to have separate page numbering for each of these sections and each of these should start on a new page. For example if invoice is 5 pages long and Terms & conditions are 3 pages long then
1.     Invoice pages should show Page 1 of 5, page 2 of 5, page 3 of 5, Pages 4 of 5 and Page 5 of 5
2.     Cover letter should show page 1 of 1
3.     Terms and condition page should show Page 1 of 3, page 2 of 3 and Page 3 of three.
By using<?split-by-page-break?> of puttng hard section break in RTF template does not help.
BI Publisher version is 10.1.3.4.1.
I am very new to BI publisher and you help is highly appreciated.

Hi,
To send the output of multiple forms called in the same program to same spool follow the instructions
A new spool request is appended to an existing spool request by default only in the following
cases:
1. The attributes such as name, output device, number of copies and formatting type(page format) agree.
    The above attributes u can check in the spool dialog box window.
2. The existing spool request is not completed yet.
3. Field TDNEWID  in  OUTPUT_PARAMETERS  is not set to "X".
if any one of these conditions  is not met,  spool control automatically generates a new spool request.
in order to appended  new spool request  to  an existing spool request set the following parameters
in the   CONTROL_PARAMETERS
                                                      NO_OPEN                      NO_CLOSE
1.first form output                                  blank                                  "X"
2.additional output                                  "X"                                     "X"
         .                                                   "X"                                     "X"
Last output                                             "X"                                     blank

Similar Messages

  • Print multiple sections in report

    How do I print multiple sections in a report?
    For example, if I have 5 select statements in my data section and want to print them seperately, one after the other, how would I do that?
    I do not want to merge the data together. I want it to be like 5 reports concatenated together.
    Query1 Title
    Query1Results
    Query2 Title
    Query2Results
    ... etc ...

    What you need to do is create a new main frame for each query. The easy way that use to do this is create the section of the report and let the wizard create the frames for me. Then I move them around to make the section look the way I want it to. Then I open a new report. This one I'll build it using the second query. Then again use the wizard to setup the frames. Then you'll select the main frame from the second report using the frame selet button copy it and paste the layout into the first report. You will want to paste it under the first section. A little trick here is to first draw a small line right above where you want the second section. The paste the second section. This will make sure the the second section is close to where you want it. If you do not do this Reports will put it on top of the first section a lot of times. You'll have to recreate the data model again, but that is easier then setting up all the framing on a complex layout. Then repete the second report step until you have done all the queries or sections you want.
    I hope that helps,
    Tom

  • Need to print multiple copies

    Hi Friends,
    Anybody can give some idea or suggestion how to print multiple copies of an invoice for the same output type.
    Regards
    raju

    Hi
    In this case you need to change the program, here you can know the message type and so you can decide how many times a document has to be printed:
    DATA: COPIES TYPE I.
    IF NAST-KSCHL = .....
    ELSE.
    ENDDO.
    DO COPIES TIMES.
    > PRINT THE DOCUMENT
    ENDDO.
    Max

  • Printing- multiple sections and no comments

    Hi,
    This problem has occured only since upgrading to Lion.
    I have been trying to print a document from Word 2011, with reviewer's comments included.
    When I send directly to the USB connected printer, reviewer's comments are not printed and the document is printed in multiple jobs.
    When I print as PDF, reviewer's comments are included, but the document is broken into multiple pdf files.
    Am using a HP LaserJet P2055d. Have tried deleting and re-adding the printer in system preferences. Have also tried reseting the print settings in systems preferences. Both with no effect.
    Any suggestions greatly appreciated
    Peter

    Peter MacPherson wrote:
    Hi,
    This problem has occured only since upgrading to Lion.
    I have been trying to print a document from Word 2011, with reviewer's comments included.
    When I send directly to the USB connected printer, reviewer's comments are not printed and the document is printed in multiple jobs.
    When I print as PDF, reviewer's comments are included, but the document is broken into multiple pdf files.
    I am not sure why the reviewer's comments aren't printed. Maybe a Word upgrade will help?
    As to the multiple pdf files, are there page breaks or orientation shifts (portrait to landscape or vice versa)? If so, you could try printing the doc from Acrobat.
    Hope this helps.

  • 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

  • Printing multiple documents from CV04N

    Hi friends,
    I have a list of documents arrived thru CV04N transaction. Now I need to print multiple documents at one go. When I select a group of documents and clicked the Print Icon at the top of the list, the system is printing only the first document in the group. My requirement is all the document in the group needs to be printed.
    Any pointers on how to achieve this.
    Regards
    S.Sivakumar

    Hi toocann
    Thanks for the inputs provided. The  programs "CV120_DOC_CHECKOUT_VIEW" and "CV120_START_APPLICATION" are to be added at what place in the BADI?
    Regards
    S.Sivakumar

  • I'm trying to print multiple frames from a website onto separate pages.

    Firefox has this option on OSX (each frame on separate page), but safari seems to lack such an option.
    I need to print multiple frames (invoices from zencart) each on separate pages. When I try to print with Safari it will either try and print the selected frame, or it will print all the frames as it's laid out on the page (all printed on one page). Am I missing this option somewhere? Is there an extension I can try (already tried print plus to no avail)?
    Thanks for all the help!

    Wasn't aware of that, I'm trying to disable Full Screen completely in all Apps on my Lion.

  • 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

  • Printing multiple copies of PDF causes huge amounts of data to be sent to printer...

    Whenever I need to print multiple copies of a PDF file Acrobat sends the complete file for each and every copy. This really chokes the RIP or laserprinter and takes many times longer to print than needed.
    It seems it is something to do with the CS3 software for Intel Macs and the issue has been around for a long time... My only solution at this stage is to print PDFs from the Preview app (built into OSX).
    http://designorati.com/articles/t1/graphic-design/1140/indesign-cs3-bug-when-printing-mult iple-copies.phpprint/
    Is a proper fix ever going to appear for this issue?? Apparently it has been resolved in InDesign - why not in Acrobat?

    Try to uncheck the collate box.
    Mike

  • Printing multiple JTables

    I need to print multiple JTables with a single print dialog...
    right now I am using JTable.print() to print one table at a time
    can someone please guide me as to how I can print all the tables at once with a single click
    thnx

    please help

  • How to print multiple copies

    I'm not sure if this is a HP issue or not. I can't print more than one copy at a time on my HP office jet 8620. I have uninstalled and reinstalled with no improvements. I have read that disabling "mopier" can correct the issue but I can't seem to locate it. Maybe it doesn't exist with this printer. OS X 10.7.5
    Any direction here would be appreciated!
    thanks

    If you do not have an obvious "Copies" field, then look for:
    "Show Details" at the bottom of the print dialog box.
    The print dialog with "Show Details" enabled, should have a host of pop-up selections.  One of those pop-up selections will most likely change the print dialog so that you can specify the number of copies to print. 
    If you need to print multiples often, you can use the "Presets" to save this as print configuration you can re-select in the future.

  • 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.

  • Multiple PR-PO but need to print GR based on PR

    Hi All,
    We have multiple PR grouped into one PO and when we receive Goods Receipts (GR) for this PO, is there any way we can print the goods receipt note based on PR ?
    I.e. Say 5 PR grouped into one PO and GR is posted and when we print the GR we need to print based on purchase requisition based, 5 print out.
    We have the requirement were we don't want to post GR individually.
    Appreciate if you can help me on this. Thanks.
    Regards
    Ashwin

    Hi,
    As and when we create PO with reference to PR.. I think you will be knowing the Item lines of the materials from which PR it is been taken.
    Then when creating a GR with respect to PO please enter the PO number with the line item number and then only the materials in that PR will be picked up while creating the GR.
    You can make a reference in one of the fields the PR number and then you can even customise in your forms for the print out of the PR number also
    Then you can configure for WE03 which is collective GR list and then when you print you will get the materials with respect to the PR only.
    Hope this is helpful,
    Thanks & Regards,
    Kiran V
    Edited by: Kiran. V on Apr 18, 2008 3:48 PM
    Edited by: Kiran. V on Apr 18, 2008 3:49 PM

  • Group footer. Want to print one section in the body of report

    I am working on an invoice.
    It has two groups:
                    Detail line
                    Invoice number
    In crystal the invoice number group header is ran than the detail line group fires.
    After all the detail lines are printed for that invoice number the group footer for the invoice prints.
    I have multiple sections in my invoice number group footer.
    All these sections except the first has the property u201CPrint at Bottom of Pageu201D selected.
    The First group footer section prints as it should directly below the detail section.
    The second section print at the bottom of the page as expected.
    The third group footer does not print till the end of the entire report. So if I have multiple invoices printing at one time I see an invoice subtotal for each invoice but the u201CTotal Dueu201D does not show until the last page. It is also always 0.00.
    any help wouldbe appriciated.

    I'm guessing here, but it sounds like the data record is not "available" (past EOF?) when the footer is being printed.  Try putting the db field into a shared variable in the detail section (basic syntax):
    whileprintingrecords
    shared total as number
    total = {SOShipHeader.CuryBalDue}
    formula = ""
    Then use the shared variable in the footer:
    whileprintingrecords
    shared total as number
    formula = total
    HTH,
    Carl

  • Do I need to export multiple sizes for all standard print sizes? i.e.Say I crop the image in LR to 6'5" x 9' to fit within an 11" x 14" (overall) mat of a framed print.. Now let's say I want to reprint that same image in a 12" x 16" size ... to fit within

    Do I need to export multiple sizes for all standard print sizes? i.e.Say I crop the image in LR to 6'5" x 9' to fit within an 11" x 14" (overall) mat of a framed print.. Now let's say I want to reprint that same image in a 12" x 16" size ... to fit within a mat of with overall size of 20" x 24"? Or will the 1st export be "locked" at 6.5" X 9" (proportionately)?

    So, for the first one Export it cropped to 6.5 x 9 - and in the Export Dialog box there is a capability to rename the file for exported output - which would allow you to add something like the crop or intention to the base name of the file.  e.g. for _IMG0846.nef - setup the output filename to _IMG0846-65x9 for 11x14.jpg and output it at, say 300 or 360 dpi.  So, it has a unique name and purpose in your output folder.
    For best results, now, re-crop the picture in LR - just open the crop [R] dialog again, reframe the image to the new ratio, 12x16 and Export again - with an adjustment to the filename. e.g. _IMG0846-12x16 for 20x24.jpg
    So, now you have two clearly identified image files in your output area and you can provide those to whomever is printing for you, etc.  Discard them when you're done since you always have the original to return to to re-frame again as necessary.
    This way you get output sharpening and resolution (in pixels) optimized for your output print size.  Maybe not super important for smallish prints-but more important for larger ones.   Output at 100 quality.

Maybe you are looking for