Report in multiple pages

Hi Gurus, I have an xml file in the below format. I can have multiple records in the xml file. I have created the template. But when i preview the data, i'm not able to see the record in seperate pages.
Any help would be appreciated.
<?xml version="1.0" encoding="UTF-8" ?>
- <ListofIO>
- <ListOf_ssServiceRequest>
- <ssServiceRequest>
<ssAbstract />
<ssAccount>1-HYT254</ssAccount>
<ssClosedDate>2010/09/30 18:47:34</ssClosedDate>
<ssContactAccount />
<ssContactFirstName>John</ssContactFirstName>
<ssContactLastName>Smith</ssContactLastName>
</ssServiceRequest>
- <ssServiceRequest>
<ssAbstract />
<ssAccount>1-RYT254</ssAccount>
<ssClosedDate>2010/09/30 18:47:34</ssClosedDate>
<ssContactAccount />
<ssContactFirstName>Terry</ssContactFirstName>
<ssContactLastName>White</ssContactLastName>
</ssServiceRequest>
</ListOf_ssServiceRequest>
</ListofIO>

Are you able to see the records and your issue is that you want to include a page break for each record? or do you have other problems?
Send me the xml and template file with the output specifications to [email protected] and I can take a look.
Thanks,
Bipuser

Similar Messages

  • Report on Multiple pages.

    Hi to All,
    I want to print a report on Multiple pages.
    I want to print only one report but on different pages divided by CASE, LCO and AA.
    Example: for
    LCO: 2129 AA: 000759 only one record on page 1
    LCO: 2129 AA: 000729 only one record on page 2
    LCO: 3041 AA: 005163 page should have all 4 records displayed on one page 3
    and so on...
    currently I am doing this in a loop.
    The report is called from a form, in the form I have created a loop and for every record it calls the report by LCO and AA. But if the CASE has 50 different LCO and AA the user cannot exit until all 50 reports are displayed.
    all I want to pass is the CASE and request_type and the report then generates the details on multiple pages grouped by LCO and AA.
    Thanks to all.
    Habeeb
    Below is the query.
    Cenqr@PRD> SELECT opcode
      2              , case
      3              , docid
      4              , lco
      5              , aa
      6              , book_num
      7              , num_of_book
      8              , census_batchid  batchid
      9              , SUBSTR(boxid,1,8) || ' ' || SUBSTR(boxid,9,5) BOXID
    10              , request_date
    11     FROM cenqr.tbl_uni_cenqr
    12  WHERE case = 90002
    13        AND request_type = 'AR'
    14  ORDER BY boxid;
    OP CASE       DOCID                                LCO  AA     BOOK NUM_ BATCHID                              BOXID         
    31 90002      2129310007591301                     2129 000759 01   01   321290007590101                      ARMP0137 00038
    31 90002      2129310007292001                     2129 000729 01   01   321290007290101                      ARMP0356 00011
    60 90002      3041600051637201                     3041 005163 01   01   630410051630101                      ARMP0600 00006
    60 90002      3041600051637201                     3041 005163 98   98   630410051639898                      ARMP0638 00020
    60 90002      3041600051637201                     3041 005163 97   97   630410051639797                      ARMP0639 00002
    60 90002      3041600051637201                     3041 005163 99   99   630410051639999                      ARMP0640 00029
    74 90002      2718740021944801                     2718 002194 01   01   427180021940101                      FVAR0312 00032
    57 90002      20154949186118                       2441 000011           5701000020                           GQER0002 00013
    57 90002      20154944875146                       2441 000011           5701000007                           GQER0002 00013
    57 90002      20154944874116                       2441 000011           5701000007                           GQER0002 00013
    57 90002      20154944833172                       2441 000011           5701000020                           GQER0002 00013
    35 90002      2331350027180201                     2331 002718 01   01   3523310027180101                     GQVA0010 00001
    35 90002      2424350036429301                     2424 003642 01   01   3524240036420101                     GQVA0012 00005
    32 90002      30163213478401                       3016 001347      0001 30160013470001                       NRFU0304 00024
    32 90002      30163213478401                       3016 001347      0002 30160013470002                       NRFU0666 00015
    32 90002      30163213478401                       3016 001347      0003 30160013470003                       NRFU0666 00025
    32 90002      30163213478401                       3016 001347      0004 30160013470004                       NRFU0910 00008
    32 90002      32273216280801                       3227 001628      0004 32270016280004                       NRFU1208 00019
    32 90002      32273216280801                       3227 001628      0002 32270016280002                       NRFU1208 00019
    32 90002      32273216280801                       3227 001628      0003 32270016280003                       NRFU1208 00019
    32 90002      32273216280801                       3227 001628      0001 32270016280001                       NRFU1208 00019
    32 90002      27123212883701                       2712 001288      0001 27120012880001                       NRFU2690 00012
    32 90002      27123212893801                       2712 001289      0001 27120012890001                       NRFU2734 00004

    Thanks a lot,
    that really helped what I wanted, the users have requested one further change (display only) if not they are happy with what they have.
    example
    My report displays
                                 CASE: 00010
    LCO  AA        CODE    DOCID                       ETC ... ETC ....
    125  001225      32    123456789                   01
                     32    123456788                   01
                     32    123456777                   02
    They want
                                 CASE: 00010  LCO 125   AA 001225
    CODE    DOCID                       ETC ... ETC ....
      32    123456789                   01
      32    123456788                   01
      32    123456777                   02
    OR something like this
                                              CASE: 00010 
                                         LCO 125   AA 001225
    CODE    DOCID                       ETC ... ETC ....
      32    123456789                   01
      32    123456788                   01
      32    123456777                   02But case is not part of the repeating frame where as LCO and AA are, can I do this, I don't have to move LCO and AA out of the repeating frame can I do this inside the frame itself I mean arrange the LCO and AA on top and then the rest of the information.
    Thanks again
    Habeeb

  • Oracle reports and multiple pages

    I am new the Oracle Reports and I am trying to generate a report that can continue to the another page. For instance, if my list of items exceeds the first page of the report, the remaining items will be printed on the next page. We can get it to continue to the next page, but the formatting of the following pages after the first page needs to be different. Currently, it is placing the remaining items in the same position as the first page. The remaining items should be further up the page.
    In short, how do I generate 1 report with 2 different formats. All pages beside the 1st page will be the same.
    Any guidance is appreciated.

    Please post the details of the application release, database version and OS.
    I would like to ask for your help regarding printing from concurrent requests.
    I am currently having an issue with printing multiple pages from Oracle reports, both in text format and RTF/PDF formats.
    When I generate a multiple page report and print it directly from a concurrent request, print outs generate extra space after each page even though page size is indicated in the reports (all of them are in letter size).What if you print the output file from the OS, can you reproduce the issue then?
    Troubleshooting (Printing) [ID 104528.1]
    An Extra Empty Page Is Printed at the End of Requests Output [ID 1011499.7]
    I have already tried editing the printer drivers both the actual driver config file and through the application but the results are still the same.Can you reproduce the issue with other printers?
    This is very important since printing is done on continuous paper and continuous pre-printed forms
    Any ideas would be greatly appreciated.If the issue is urgent, please log a SR.
    Thanks,
    Hussein

  • Empty pages being generated when report spans multiple pages

    hi folks
    I have a problem when generating my pdf form that I hope you can shed some light on.
    Firstly, I have a table within a table.
    Eg. For each line of Table_1, a new page must be displayed.
    Then for Table_2 a list of employees with the matching criteria in line_1 of Table_1 are displayed on page 1. For the next line of Table_1, the same, and so on.
    My problem comes in when there are too many employees in Table_2 to fit on a single page, they span onto the next page (as they should), but the pdf form also now displays blank pages at random.
    Something like this:
    Page 1
    --empty
    Page 2
    -Table_1-Line_1
    -Table_2 (lines 1 - 30 of 35)
    Page 3
    -Table_1-Line_1
    -Table_2 (lines 31-35 of 35)
    Page 4
    -Table_1-line_2
    -Table_2 (lines 1 - 10 of 10)
    Page 5
    --empty
    Why the empty pages? Any help will be much appreciated.
    thanks.
    Also worth noting. If Table_2 doesn't span multiple pages, then I don't get the empty pages.
    thanks in advance
    Anton Kruse

    Hello,
    it is clear why your first page is blank. That is because you set "top of next page" (tab binding) for every line of the outer table so every "section" starts on the new page. That is why even the first page starts on the second page (top of NEXT page for the first line is SECOND page).
    About the last page... I have experienced problems when I used margins - when your page content is long, but not that long to break the page and you use a margin so the last row + margin should break the page, the last row is left on the last-1 page and the margin "appears" on the last page.
    Hope this helps a bit, Otto

  • Multiple page Report

    Hi,
    How to Print the Report in Multiple Pages? i.e. Once the first page Report is finished , the next one has to start printing, and so on.Each Page can contain more than one pages.
    TIA,
    Vikki
    null

    You aren't really linking the frames to the pages. Simply set the "page break before" on the second frame. When the first frame finishes printing (regardless of how many pages that is) it will skip to the next page before the second frame starts printing. If required, you can make the page numbering re-set if you want to based on repeating frame values.
    If you really want to distinguish between the layouts, you can create up to 3 layouts by using each of the three sections (header, main, trailer). As each section finishes, there is also a page break before the next section starts.
    You can get at the page number using srw.get_page_num() but I don't think this will help you.

  • Html report shows blank page if pdf report is also

    HI
    I am facing strange problem
    1. Generate any html report with multiple pages.
    2. The first page of the report will be shown.
    3. Now generate the same report in pdf.
    4. Go to the first report again (html report) and try to go to the next page
    (second page)by clicking on the forward arrow > at the bottom of the report.
    I am invoking java to invoke reports

    Hi Karen,
    I would like to provide the document "Report Design: Best Practices and Guidelines " to you and hope it can provide some help.
    Avoiding Blank Pages
    Sometimes, you will see blank pages when you output reports to a physical page format such as PDF or print. Generally, this will happen when the size of the report body exceeds
    the size of the page. To ensure that all the contents fit on a single page, the body width plus the margins should be less than the defined page width. A textbox or other report item can cause the width of the body to exceed the page width, even when the portion
    of the item that exceeds the width has no visible contents. In addition, report items growing horizontally (matrix data regions and images set to automatically Autosize or Fit) can also cause the body to grow.
    Reference:
    <http://technet.microsoft.com/en-us/library/cc966445.aspx>
    Best Regrads,
    Halin Huang

  • Html report shows blank page if pdf report is also generated

    Steps to reproduce
    1. Generate any html report with multiple pages.
    2. The first page of the report will be shown.
    3. Now generate the same report in pdf.
    4. Go to the first report again (html report) and try to go to the next page
    (second page)by clicking on the forward arrow > at the bottom of the report.
    I am using java to invoke reports

    Hi Karen,
    I would like to provide the document "Report Design: Best Practices and Guidelines " to you and hope it can provide some help.
    Avoiding Blank Pages
    Sometimes, you will see blank pages when you output reports to a physical page format such as PDF or print. Generally, this will happen when the size of the report body exceeds
    the size of the page. To ensure that all the contents fit on a single page, the body width plus the margins should be less than the defined page width. A textbox or other report item can cause the width of the body to exceed the page width, even when the portion
    of the item that exceeds the width has no visible contents. In addition, report items growing horizontally (matrix data regions and images set to automatically Autosize or Fit) can also cause the body to grow.
    Reference:
    <http://technet.microsoft.com/en-us/library/cc966445.aspx>
    Best Regrads,
    Halin Huang

  • WAD in multiple pages

    Hi All,
    We have a WAD which shows report in multiple pages.... User has a requirement where they want this WAD report on one page... can someone guide me how this can be achieved ?
    multiple page is displayed in a graphic format of next page and last page both for columns and rows.
    Kindly suggest.

    Hi,
    Change the number of rows dipalyed in the properties of the web template.

  • Report generation same Logo in multiple pages

    hi all
    In NI report generation (word) , how can i generate same Logo(small image) in multiple pages.
    I can able to generate Logo in single page. but i am looking for generating same Logo in multiple pages.

    HI
    You can create the Word template file and place logo in header
    Then generate report using word template file (you can use MS office Report express VI)
    Hope this helps
    Regards
    Santosh

  • Blank page in report o/p and o/p notprinted when contains multiple pages

    Dear Friends,
    I am facing couple of issues while modifying an existing report
    1. First page of the report is Blank
    2. Report output is not printed when the output contains multiple pages.
    Currently, along with the data, the report prints the output format in the first page and some totals in the last page.
    The requirement is that we do not want these first and last pages.
    For this, i made the following modifications to the report.
    In the Layout Model,
    *1. Under the body of Header section, we have a repeating frame which is printing the output format that comes out as report first page.*
    Both Horizontal and Vertical Elasticity are set to Fixed and below is the code in the format trigger on this repeating frame.
    function R_HEADER_PAGESFormatTrigger return boolean is
    begin
    if :p_header_pages = 0
    then return(false);
    else return(true);
    end if;  return (TRUE);
    end;I modified this format trigger to always return false as shown below
    begin
    return false; --statement added by me
    if :p_header_pages = 0
    then return(false);
    else return(true);
    end if;  return (TRUE);
    end;*2. Under the Body of Trailer section, we have a main frame which prints summary information.*
    Both Horizontal and Vertical Elasticity are set to Fixed and below is the contents of the Format trigger on this frame
    function M_CONTROL_GRPFRFormatTrigger return boolean is
    begin
    if :report_term_count > 0
    then return(true);
    else return(false);
    end if;  return (TRUE);
    end; I have modified this trigger to always return False as shown below
    function M_CONTROL_GRPFRFormatTrigger return boolean is
    begin
    return false; --statement added by me
    if :report_term_count > 0
    then return(true);
    else return(false);
    end if;  return (TRUE);
    end;When i run the report after doing these modifications, i am facing the above mentioned problems.
    Any idea on why a blank page is coming out before the actual data?
    Also when the report output contains multiple pages, the output is not printed. Any idea on this?
    Regards,
    Sreekanth
    Edited by: Sreekanth Munagala on Mar 23, 2012 1:15 AM
    Edited by: Sreekanth Munagala on Mar 23, 2012 1:18 AM

    Hi InoL,
    I have tried by setting vertical elasticity to variable but the blank plage is still coming in the output.
    Also, i am just wondering that blank page is not shown for the trailer page even though the Horizontal and Vertical Elasticty is set to Fixed.
    Could you please let me know if you have any idea on this?
    +InoL Wrote:+
    +And this didn't happen before you made the changes to the format triggers?+ Sorry for not mentioning that this happens when i delete the entire fields and frames in Header section.
    Setting the Vertical Elasticy of Header to False and returning false in Format trigger still prints the blank page in addition to the actual data pages.
    I have also tried setting the option BLANKPAGES=NO in the concurrent program execution options but still the blank page is not suppressed.
    Regards,
    Sreekanth
    Edited by: Sreekanth Munagala on Mar 25, 2012 8:33 PM

  • Print Multiple copies of report, and resetting Page number for each copy.

    Dear frnds!
    i am using developer 6i reports i have a problem.
    i want to Print Multiple copies of report, and resetting Page number for each copy" that is 4 copies of an invoice is required
    1 - for user copy
    2- gate copy
    3- accounts office
    4- office copy
    any body please tell me the solution "i am using oracle 9i and developer 6i"
    Thanx
    Ibrar

    Hi,
    I was wondering if you were able to get your multiple copies working? Below is what I have so far, just trying to get it to work before changing the actual template.
    <?for-each-group@section:R5542520/Pick_Slips_Detail_Lines_S3;PickSlipNumber_ID260?>
    <?variable@incontext:G1;R5542520/Pick_Slips_Detail_Lines_S3;PickSlipNumber_ID260?>
    <?for-each@section:xdoxslt:foreach_number($_XDOCTX,1,3,1)?>
    HEADER
    PSN: <?$G1/Pick_Slip_Number_Display_ID54?>
    PSN Detail: <?$G1/PickSlipNumber_ID260?>
    Page 1 of 3
    <?start:body?>
    BODY
    <?$G1/LineNumber_ID6?>
    <?end body?>
    FOOTER
    <?end for-each?>
    <?end for-each-group?>
    XML:
    <R5542520>
    <Pick_Slips_Detail_Lines_S24>
    <Header_Custom_Section_S24>
    <Pick_Slip_Number_Display_ID54>123456</Pick_Slip_Number_Display_ID54>
    <PickSlipNumber_ID260>123456</PickSlipNumber_ID260>

  • Print multiple page report

    How do you print a report that spans multiple pages? I couldn't find anything in the user's manual, other than making a page 'printer friendly'. The only thing I can think of is to temporarily change the rows per page to a huge number. But that seems pretty hokey.
    Terry

    That is about all you can do. A web application, a thin-client only knows about what it sees in the current page view.
    Some alternatives you could evaluate to print the entire report are
    a. FOP (export to PDF); search the forum for more information
    b. export to CSV and then print from Excel
    c. change rows/page to a large number (as you point out) and then use the browser's File/Print feature
    d. use a commercial product like http://www.plpdf.com

  • How to paginate the Report output spanning multiple pages

    Hello,
    We have a Report that has a custom Layout and it shows invoice information.
    Our system has to generate an Invoice per day.
    This Report is printed fine for single day.
    But our users have 2 requests:
    1. To print all the invoices for 1 month
    2. To save them to file.
    At least printing will do for now.
    The problem I got is pagination.
    When I made Month&Year as parameter and user selects 2001-OCT
    to print all invoices in Oct,2001, the Report is unable to print one invoice per page. In between the layout is rolling over to multiple pages.
    Is there a way I can control pagination or any settings?
    Thank you much.
    Madhav

    Hello,
    We have a Report that has a custom Layout and it shows invoice information.
    Our system has to generate an Invoice per day.
    This Report is printed fine for single day.
    But our users have 2 requests:
    1. To print all the invoices for 1 month
    2. To save them to file.
    At least printing will do for now.
    The problem I got is pagination.
    When I made Month&Year as parameter and user selects 2001-OCT
    to print all invoices in Oct,2001, the Report is unable to print one invoice per page. In between the layout is rolling over to multiple pages.
    Is there a way I can control pagination or any settings?
    Thank you much.
    Madhav

  • Integrating an Exisitng multiple page PDF file into a report and outputting as one PDF

    Post Author: sditmer
    CA Forum: Crystal Reports
    We would like to be able to  PDF files into a report based on a file name contained in the detail of the report. For Example, I have some data in our database relating to a specifc PDF file  including the name of the PDF that I would like to print in the header of the report and then print the actual PDF as the detail of the report. The PDF may be multiple pages so I would like the remaining pages of the report to follow on each page of my crystal report. Essentially I am trying to merge a  report header onto a mulitple page PDF file as a single report. Is this possible to do out of the BOX with Crystal? Do I need some other tools to do this?

    Post Author: IdoMillet
    CA Forum: Crystal Reports
    Consider a 3rd-party tool as a solution (for a list of such tools, see http://www.kenhamady.com/bookmarks.html).My Visual CUT software allows you to automate the process of merging the pdf export of your reportwith a pdf file named based on a formula in the report.  The resulting merged pdf file can automatically be printed or emailed.

  • Multiple Page Report (Invoice)

    Good Morning,
    I work for a healthcare orginzation and I am creating an invoice for services. The invoice has many lines and runs onto multiple pages.  I am farily new to Crystal but I want to know if there is a way to have the Report Header and Footers print on a new page after so many lines of data are acheived.
    I used the following forumula in both the detail sections and report header and report footer sections under Paging, New Page After, but the report header and footer do not appear on the consective pages.
    If Remainder (RecordNumber, 15) = 0 then true else false
    Is there another way to accomplish this?

    Thanks!  What I ended up doing is having to create groups since I needed information broken down by different payers.  Same concept with group headers and footers.  I appreciate the response.

Maybe you are looking for

  • Live! Cam Voice BETA Drivers and Widows Vista

    I have just installed the BETA drivers for Live! Cam Voice and everything seems to have worked except that there appears to be a conflict with Microsoft Genuine Advantage and I am told that "There is a problem with your licence so notifications will

  • Error while running this small Application. Please Guide

    Hello Folks I am getting this error when I run this small application. Can some one please tell me what is the problem? Attached is the ERROR and the CLASS. The ERROR is: java.lang.NullPointerException      at javax.swing.plaf.basic.BasicTabbedPaneUI

  • Hard disk problems with Far7 ?

    Hello Everyone, I am new to this board, and this is my first post. I purchased a FAR7 board about a month ago, and slowly came to realize I could  not get Windows XP Pro to install. The problem appeared to be with the IDE Controller.  In the BIOS, it

  • I can't play online games and some websites are not responding, i can't even check my emails

    im having problems with online games, and when i go to Firefox help, i get this msg: Warning: You're using an insecure version of Firefox. To keep your computer and personal information safe, please update to the latest version of Firefox. but i have

  • Screen issue

    my powerbook screen has an irritating problem. Out of nowhere it goes black and then the whole thing goes to sleep. When you press a key the computer wakes up for maybe a second or 2-enough time to show display then goes black again. Right now its wo