Seperating the detail sections to start a new page

I'm using CR XI and I have the main report set up. I want to create a second section containing a seperate set of detail lines. When I insert the section below I now get detail a and detail b. When I do the preview the two sections are combined. I've added the subreport to detail b and tried to find some way to seperate them but nothing appears to say specificially how to do it.
I just want to have the two details sections seperated and start on seperate pages.
It's doing this:
  customer id   customer name  customer etc.
  supplier id  supplier name supplier etc.
  customer id   customer name  customer etc.
  supplier id  supplier name supplier etc.
I want it do this:
Main Report
  customer id   customer name  customer etc.
Sub Report
  supplier id  supplier name supplier etc.
thanks...

I'm afraid that didn't solve my issue.  I already have information that needs to be in the footer.
And I'm looking at a report done by someone else and they have 3 seperate detail sections and each section starts on a seperate page, but I can't find what was done to make this happen.  Unfortunately, that person is no longer available here.
My thinking is that there is a setting somewhere that will allow this type of seperation.

Similar Messages

  • Filling an array from a field in the details section

    Hi.
    I'm a Crystal newbie. I'm using Crystal 11 Dev. I have some basic understanding of programming but I am clueless as to the organization and syntax used in Crystal scripts.
    Here's what I need to do. (I don't expect anyone to solve this for me, but just a starting point would be great.) I have a field in the details section, let's call it field-A. The details section is under group field, let's call it groupedField-A. For each groupedField-A there are zero to many field-A's which get looped through and displayed in the details section. Instead of just listing the values for field-A in the details section, I would like to display them in a string seperated by commas.
    I figure I need to create an new array for each new groupedField-A, then add the values from field-A to the array as the details section loops through them. Then, I figure I concatenate the array values into a string in the details section or maybe the group header or footer.
    Will this work in Crystal? If so, I need some help with the syntax. OR, is there another way to approach it?
    Any ideas would be greatly appreciated.
    Thanks
    Chuck W.

    hey Chuck,
    instead of using an array you may wish to use a string running total. an array is limited to 1000 values whereas a string running total is 64k.
    details section formula:
    whileprintingrecords;
    stringvar srt:= srt + + ",";
    group header section formula for reset:
    whileprintingrecords;
    stringvar srt:= "";
    group foot section formula for display:
    whileprintingrecords;
    stringvar srt;
    srt[1 to length(srt) - 1]
    hope this helps,
    jw

  • How to force multiple columns in the Details section

    Hello,
    My report has a lot of data in the Details section, but it could fit on one page if I could put it in three columns. Is there a way to do this?
    The Details section has setting: Force the new page after certain number of visible records. This would be perfect for me if instead of multiple pages I could use multiple columns.
    Thank you,
    Peter

    Thank you.
    I think I see now how to format the columns.
    Peter
    Edited by: Peter Afonin on Sep 10, 2010 2:34 PM

  • Report - Centre a subreport in the detail section

    Hi all
    With my Access 2013 DB I do have a Report representing an invoice.
    There is a subreport in the detail section representing the items, VAT plus Total amount.
    I do have text elements in the footer sections.
    I'm looking for the right event and vba code to centre the subreport within the detail section before it gets sent to the printer.
    Thanks for any help.
    Martin

    The best way is position it yourself in design mode and leave it that way. There is the Move x,y fuction and you can also set the subreports left and top positions, but when you start fooling around with positioning objects in code, you are asking for trouble
    if users change the report margins or other settings that are printer-dependent. As far as I know, there is no "Centering" ability in code, for form or report objects.

  • 12.1.3 BI Publisher report not displaying the detail section on first page

    Hi,
    As part of our R12.1.3 upgrade, I designed a Purchase Report as a RTF template.
    Header and footer sections generate fine, but for some reason the detail (text body of the RTF template) does not display on the first page but starts on the second page (this is a PO with many lines). I am using MS Word table to display the detail section.
    Is there something I can check?
    Thanks,
    Sinan

    can you send me your template and xml . i can check at my side .
    email:[email protected]
    there may be some spaces in the beginning .

  • How to fix the height of the details section in crystal reports.

    hi all
    How to fix the height of the details section in crystal reports.

    Thanks for your reply
    i didnt get the clear idea about your answer can you explain it once with example
    why iam asking is when i add a new details section according to you answer maintaining same height of the two details sections and i see the preview the iam getting gap between each record. this is so because one record from details section1 and another empty space from details section2
    like
    Details section A-contains records
    Details section B- no records
    Details section A-contains records
    Details section B-no records
    Then how will i solve my issue
    Thanks in advance

  • After Upgrading to 10.6.8 my aperture app starts but hangs trying to read the Lib. I removed the old lib and start with new. but still have the problem. 10.6.8 also made my Shark FX7 do the same thing. Any Ideas? Thanks

    After Upgrading to 10.6.8 my aperture app starts but hangs trying to read the Lib. I removed the old lib and start with new. but still have the problem. 10.6.8 also made my Shark FX7 do the same thing. Any Ideas? Thanks

    Verifying volume “Macintosh HD”
    Performing live verification.
    Checking Journaled HFS Plus volume.
    Checking extents overflow file.
    Checking catalog file.
    Checking multi-linked files.
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Macintosh HD appears to be OK.

  • Master Detail Form - Update Statement for Column in the Detail Section

    Hello,
    I've posted a demo application to apex.oracle.com
    Application# 49298
    Application Name: Street_Inventory
    Basically, on page 3 I have a Master Detail Form. In the Detail section, I want the value of On_hand to save to table ITEMS. Here's my code below.
    SOURCE
    select
    "CONSUME_DETAIL"."CONSUME_DETAIL_ID",
    "CONSUME_DETAIL"."CONSUME_HEADER_ID",
    "CONSUME_DETAIL"."ITEM_ID",
    "CONSUME_DETAIL"."CONSUMED_QUANTITY",
    ("ITEMS"."ON_HAND" - "CONSUME_DETAIL"."CONSUMED_QUANTITY") as "ON_HAND"
    from "CONSUME_DETAIL",
    "ITEMS"
    where "CONSUME_HEADER_ID" = :P3_CONSUME_HEADER_ID
    and "CONSUME_DETAIL"."ITEM_ID"="ITEMS"."ITEM_ID"
    UPDATE INVENTORY PROCESS
    UPDATE ITEMS
    SET ON_HAND = :P3_ON_HAND - :P3_CONSUMED_QUANTITY
    WHERE ITEM_ID = (select     ITEM_ID
    from     CONSUME_DETAIL
    where CONSUME_DETAIL_ID = :P3_CONSUME_DETAIL_ID);
    My code isn't working. What am I doing wrong?

    WReed,
    The first thing I see "off the bat" is that you don't have items named P3_ON_HAND and P3_CONSUMED_QUANTITY which are referenced in your code. Although it's possible to do what you want with just SQL, I updated your code with a little PL/SQL to make it easier to understand...
    As you'll see the problem now is that the design/db model is not quite right as your getting a too many rows error.
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    I'm having problem with text boxes.  Whenever i hit the enter button to start a new line or paragraph, the cursor doesn't drop down to the next line.  Instead i get this little red + sign in the box.

    You are absolutely right.  Thought Enter meant Enter.  I was wrong.  Thank you for the help.
    Rod Rogers, Broker
    Accredited Land Consultant (ALC)
    Metcalf Land Company, Inc.
    Office: 864-585-0444
    Mobile: 864-316-0297
    Fax: 864-583-6000
    <http://www.metcalfland.com> www.metcalfland.com

  • When pulling down a long pulldown menu, the menu, instead of starting a new row, will extend past the bottom and behind the browser so that I can't navigate to an item that's below/behind the screen.

    When pulling down a long pulldown menu, the menu, instead of starting a new row, will extend past the bottom and behind the browser so that I can't navigate to an item that's below/behind the screen. FF should be making a second row for these long pulldown menus, right?

    Nope, there is no second row. There should be a scroll arrow "button" at the bottom and the top of that drop-down to allow you scroll, or you can use the scroll wheel on the mouse scroll further down (or back up).

  • Why I can't set the Detail Section of a form at onLoad event?

    Hi,
    I'm having a silly problem with Access 2010. I can't modify the Detail section ("Corpo" in Italian) of a Form or a Report.
    Neither using the onLoad nor the onOpen events.
    What am I doing wrong? I load a micro example in my
    one drive, if you would spend some time helping me.
    Thanks in advance, Lauro

    Hi,
    I'm having a silly problem with Access 2010. I can't modify the Detail section ("Corpo" in Italian) of a Form or a Report.
    Neither using the onLoad nor the onOpen events.
    What am I doing wrong? I load a micro example in my
    one drive, if you would spend some time helping me.
    Thanks in advance, Lauro
    You should be able to size the detail section of the Form in the open event or onload event.
    I don't have 2010 on my PC. Why not post the sample code here?

  • Fitting alot of fields in the details section [overflow]

    Hi,
    I am trying to create a simple report. I need to place 12 database fields on the report. These are going to go in the "details" section one beside the other. Unfortunately, I have run out of space in the details section and am left with 3 database fields not on the report. Is there a way in which i can fit these fields on the report?
    thanks
    J

    Hi James,
    You may increase the page size by going to File>>Page Setup and select landscape as orientation.
    Another option is to connect to a plotter (printer) which is known to have wide page sizes
    Thanks

  • I just got my iphone 5c ...went to the apps store and started a new id...its stuck on the privacy policy and i dont know how to get it off that ...please help

    I just got my iphone 5c ...went to the apps store and started a new id...its stuck on the privacy policy and i dont know how to get it off that ...please help

    Hi Bam,
    I am so ecstatic to hear that you are wanting to open an account in your name! We offer an Assumption of Liability that would allow you the current account holder to give permission for you assume liability of your number. Click here for information on how the process works http://vz.to/HverXe .
    Thanks,
    PamelaF_VZW
    Tweet us @vzwsupport

  • Project Server - Projects does not show up in the detail section of the resource availability view!!!

    Hi,
    I click resource center in PWA 2010 and select a resource; then click resource assignments and a list of projects along with the task which the selected resource is assign is listed. I then click on resource availability and set the date
    option and units for the selected resource and the resource availability and capacity is visible in the details section but not the list of projects that the resource is assign.
    How can I get the list of projects to show up in the details section under the resource name?   
    A. Williams

    Hi A. Williams,
    Could you post a screenshot of BOTH upper (graph) and lower (detailed grid) parts of our resource availability page?
    It would be very weird that you can see workload in the upper part but not in the detailed grid. This is what we need to know to help you:
    Are you not seeing at all the assignments in both graph and detail grid of the resource availability page? In this case the issue comes from your assignment, not from the resource availability page.
    Are you seeing the assignment in the graph but not in the detail grid?
    In case this is an assignment issue, some reasons could be:
    you're not looking at the right period
    date range selection has not been applied clicking on the button "apply"
    the assignments are proposed (versus committed)
    the assignment has not been publish (column publish to "yes" in MS Project Pro)
    the assignment owner is not the resource
    Here is (sorry, it is in french) my upper part (graph) with 1 resource selected, 3 weeks and a 7hrs assignment on the 2nd week (note that you have to apply the date range once selected) :
    Then the lower part (detailed grid) where is have exactly the same information (same assignments, same resources, same date range):
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • Details section extends to a whole page when multipage field is printed

    Crystal Reports designer in VS 2005 Prof.  C#
    I have a field which sometimes is large, so it is printed on several pages.
    When a field is small, ie. starts and finishes on the same page, then all is OK. I mean, that Details vertical lines and field borders are closed as soon as the last field is fully printed. Report Footer is propely printed after the last Details row.
    But when a field occupies several pages then, on the last page, the Details section is not closed after the last row but extends to a whole page.
    So, as a result of this behavior, the Report Footer is printed over the Detail's vertical lines. This is my problem.
    I tried the following:
    1. Change setting Keep Object Together - does not help.
    2. Inserting an extra Group Section - Group Footer was printed over on Details body - overlapped.
    To show this problem here are 2 pictures. Please pay attention to the column "Odcinki".
    [The view with a small field|http://www.zgadzaj.pl/temp/KIM_Dobry.jpg]
    [The view with Details expanded to a whole page|http://www.zgadzaj.pl/temp/KIM_Usterka.jpg]
    Marek

    Hi Trevor and Ludek,
    At last success -  I found the workaround!
    Before my give up, during the downloading time of the PerpetuumSoftware report generator, I tested the last idea which comes from [Joe's help posted in this thread|http://social.msdn.microsoft.com/Forums/en-US/vscrystalreports/thread/77b28835-12aa-4592-bcc8-c2b8dbf49317].
    I removed all vertical lines from the Detail section and the box surrounding the Detail's section row.
    I inserted a new group section which works exactly as the Detail section, so it changes along with Detail section.
    I put the vertical lines starting from the GroupHeader section and expanded it across the Detail section to the middle height somewhere inside the GroupFooter. And now I set the line's bottom = 0. It means that it ends exactly at the top of GroupFooter section.
    Next, I set the height's of GroupHeader and GroupFooter sections = 0.
    The import things are:
    - vertical lines (box'es) cannot start in the PageHeader, they must start at top of GroupHeader
    - vertical lines (box'es) cannot end in the Detail section, they must end at top of GroupFooter
    And now, it works as I expected. Here is the [PDF example|http://www.zgadzaj.pl/temp/KIM_OK.pdf].
    Thanks to your advices and support I was able to investigate this problem,
    so thank you again for the help.
    Regards,
    Marek

Maybe you are looking for

  • How do you combine your photo librarys

    Hi how do you combine photo librarys after you have made more than one please and thank-you?

  • How many devices can you use on an airport express wirelessly?

    How many devices can you use on an airport express wirelessly? Does it matter how many devices you have?

  • Link Airport Express to an AirPort Time Capsule to use Airplay?

    I am thinking about getting an 2GB AirPort Time Capsule. I use the Airplay feature on my Airport Express that is not part of the AirPort Time Capsule and that is the only reason I have not replaced the Airport Express with the Airport Time Capsule. H

  • Need avice..for beginner with FCP

    I captured all my footage, however when wanted to start editing it asked me to render first which I did. But after I wanted to play my footage in the canvas it told me that some clips were dropped. I reset my canvas on "Full Window" and I was able to

  • Creating a dynamic prepared statement

    the problem: i have a range of paratmeters coming in from a form and need to be able to create a dynamic query string to go into a prepared statement object. the problem i have is there are 2 fields year range and year. if year range is none i need t