Crystal not printing all detail data

I have a crystal 8.5 that formatted like this:
group header 1 - contract number
detail lines
group footer 1 - contract notes
the "suppress blank section" is checked for the deatil lines, becuse based on what detail is in the data set, detail may or may not have to print. It look like the problem is when a group starts to print close to the bottum of a page and if crystal suppress a detail section and has to do a page break, it doesn't continue printing on the next page, it looks like it starts to print with the next contract group, bypassing any other detail lines and the group footer.
group 1 - contact 1
detail line 1 prints
detail line 2 prnts
detail line 3 is suppressed and detail line 4 prints
detail line 5 is suppressed and a page break occurs
the new page starts printing with the next contract number, and it should have printed detail line 6 and then the footer.
If I turn "suppress blank section" off, I get to many blank lines, what can I do to force crystal to page break before a contract starts to print and I don't want to start a new page for each contract.
Thanks,
Dan

Thanks Dell;
This seems to solve my problem. Checking the "Keep Together" in the 'change group option' and keeping the 'suppress balnk section' checked on details works.  As many times that I have created groups I never played around with the 'keep together' option i aways used the options in the 'section expert'. 
I always thought that the 'keep together' in the section will keep the group together, but after looking at help i found that it keeps lines for the section together.
Thanks Again,
Dan

Similar Messages

  • BI publisher report is not showing all the data

    Hi All,
    I have created a report using BI Publisher in R12. The report is not showing all the records.
    I have checked the result XML it is also not having all the data. My query returns 846 rows but my report only has 662 rows.
    what might be the issue.please give me some idea to resolve this issue.
    Thanks in advance.
    Regards,
    P.Kalidoss

    Hi Arun,
    In the following code: public SelectItem[] getAllPrinters() {
    if (allPrinters == null) {           // allPrinters is not defined. what type of object it is
    PrintService[] printers = PrintServiceLookup.lookupPrintServices(null, null);
    allPrinters = new SelectItem[printers.length];
    for (int i = 0; i < printers.length; i++) {
    SelectItem printer =
    new SelectItem(printers.getName(), printers[i].getName());
    allPrinters[i] = printer;
    return allPrinters;;;
    Variable allPrinters is not defined. what type of object it is?
    And also the same variable is referenced here <af:selectOneChoice label="Available Printers" partialTriggers="cb1"
    value="#{pageFlowScope.applicationPrinterBean.selectedPrinter}"
    id="soc1"
    autoSubmit="true">
    <f:selectItems value="#{pageFlowScope.applicationPrinterBean.allPrinters}" id="si1"/>
    </af:selectOneChoice>.
    Thanks.

  • ADF: Printable page is not showing all the data

    Hi Everyone,
    I am using Jdev 11G.
    I have one ADF page with Read Only Table.The table has 14 columns.
    I have Print button at the bottom of the page. When i click on print button my page is converted to Printable page but it is showing only 10 columns.(so im unable to print all the data in the table)
    How can i make it to show all the columns in the table in printable page?
    Plz help.
    Any suggestions will be really grateful.
    Thanks.

    Hi Arun,
    In the following code: public SelectItem[] getAllPrinters() {
    if (allPrinters == null) {           // allPrinters is not defined. what type of object it is
    PrintService[] printers = PrintServiceLookup.lookupPrintServices(null, null);
    allPrinters = new SelectItem[printers.length];
    for (int i = 0; i < printers.length; i++) {
    SelectItem printer =
    new SelectItem(printers.getName(), printers[i].getName());
    allPrinters[i] = printer;
    return allPrinters;;;
    Variable allPrinters is not defined. what type of object it is?
    And also the same variable is referenced here <af:selectOneChoice label="Available Printers" partialTriggers="cb1"
    value="#{pageFlowScope.applicationPrinterBean.selectedPrinter}"
    id="soc1"
    autoSubmit="true">
    <f:selectItems value="#{pageFlowScope.applicationPrinterBean.allPrinters}" id="si1"/>
    </af:selectOneChoice>.
    Thanks.

  • Not getting all the data

    Hi,
    I have the below query, but the output data for the Unavailable column is not showing all the data with a condition_id that's not null.
    Does anyone have any ideas that I might need to try?
    SELECT I.SKU_ID,
    I.DESCRIPTION,
    TO_CHAR(I.EXPIRY_DSTAMP, 'DD-Mon-YYYY') expiry_dt,
    SUM(CASE WHEN I.CONDITION_ID IS NOT NULL THEN QTY_ON_HAND ELSE 0 END) AS Unavailable,
    SUM(CASE WHEN I.CONDITION_ID IS NULL THEN QTY_ON_HAND ELSE 0 END) AS Available,
    P_ILV.SUM_QTY_DUE + (NVL(P_ILV.SUM_TL,0) * NVL(S.USER_DEF_NUM_3,0)) AS Sum_Qty_Due,
    ROUND(ITXN_ILV.AVG_QTY, 2) AS Avg_Qty,
    ROUND(SUM(CASE WHEN I.CONDITION_ID IS NULL THEN QTY_ON_HAND ELSE 0 END)/CASE WHEN ITXN_ILV.AVG_QTY = 0 THEN 1 ELSE ITXN_ILV.AVG_QTY END,2) AS Days_Worth_Stock
    FROM INVENTORY I
    JOIN SKU S
    ON (I.SKU_ID = S.SKU_ID AND I.DESCRIPTION = S.DESCRIPTION)
    JOIN (SELECT P.SKU_ID, SUM (CASE WHEN P.TRACKING_LEVEL NOT LIKE 'C%' THEN P.QTY_DUE ELSE 0 END) AS SUM_QTY_DUE,
      SUM(CASE WHEN P.TRACKING_LEVEL LIKE 'C%' THEN P.QTY_DUE ELSE 0 END) SUM_TL
    FROM PRE_ADVICE_LINE P
    WHERE P.QTY_RECEIVED IS NULL
    GROUP BY P.SKU_ID) P_ILV
    ON (S.SKU_ID = P_ILV.SKU_ID)
    JOIN (SELECT ITXN.SKU_ID, SUM(ITXN.UPDATE_QTY)/(CEIL(TO_DATE($P{To_Date},'DD-Mon-YYYY') - TO_DATE($P{From_Date},'DD-Mon-YYYY')) + 1) AVG_QTY
    FROM INVENTORY_TRANSACTION ITXN
    WHERE ITXN.CODE = 'Shipment'
    AND ITXN.DSTAMP BETWEEN TRUNC(TO_DATE($P{From_Date},'DD-Mon-YYYY')) AND TRUNC(TO_DATE($P{To_Date},'DD-Mon-YYYY')+ 1) - 1/86400
    GROUP BY ITXN.SKU_ID) ITXN_ILV
    ON (S.SKU_ID = ITXN_ILV.SKU_ID)
    GROUP BY TO_CHAR(I.EXPIRY_DSTAMP, 'DD-Mon-YYYY'), I.SKU_ID, I.DESCRIPTION, P_ILV.SUM_QTY_DUE, NVL(P_ILV.SUM_TL,0), NVL(S.USER_DEF_NUM_3,0), ITXN_ILV.AVG_QTY, 2
    ORDER BY I.SKU_IDThanks, Sam.
    Edited by: Sam Mardell on 08-May-2009 06:25

    OK Sam, one thing I would question in the JOIN between INVENTORY and SKU is the JOIN on the DESCRIPTION column - I would reckon that SKU_ID should be enough (and it's not good design to have the DESCRIPTION in more than one place). I think that that could be causing this issue. I've also included the zeroes for NULLs in this.
    Try:
    SELECT I.SKU_ID,
         I.DESCRIPTION,
         TO_CHAR(I.EXPIRY_DSTAMP, 'DD-Mon-YYYY') expiry_dt,
         SUM(CASE WHEN TRIM(I.CONDITION_ID) IS NOT NULL THEN QTY_ON_HAND ELSE 0 END) AS Unavailable,
         SUM(CASE WHEN TRIM(I.CONDITION_ID) IS NULL THEN QTY_ON_HAND ELSE 0 END) AS Available,
         NVL(P_ILV.SUM_QTY_DUE,0) + (NVL(P_ILV.SUM_TL,0) * NVL(S.USER_DEF_NUM_3,0)) AS Sum_Qty_Due,
         NVL(ROUND(ITXN_ILV.AVG_QTY, 2),0) AS Avg_Qty,
         ROUND(NVL(SUM(CASE WHEN I.CONDITION_ID IS NULL THEN QTY_ON_HAND ELSE 0 END),0)/CASE WHEN  TXN_ILV.AVG_QTY = 0 THEN 1 ELSE ITXN_ILV.AVG_QTY END,2) AS Days_Worth_Stock
      FROM INVENTORY I
      JOIN SKU S
       ON (I.SKU_ID = S.SKU_ID)
      LEFT JOIN (SELECT P.SKU_ID, SUM (CASE WHEN P.TRACKING_LEVEL NOT LIKE 'C%' THEN P.QTY_DUE ELSE 0 END) AS SUM_QTY_DUE,
          SUM(CASE WHEN P.TRACKING_LEVEL LIKE 'C%' THEN P.QTY_DUE ELSE 0 END) SUM_TL
        FROM PRE_ADVICE_LINE P
       WHERE P.QTY_RECEIVED IS NULL
       GROUP BY P.SKU_ID) P_ILV
       ON (S.SKU_ID = P_ILV.SKU_ID)
    LEFT JOIN (SELECT ITXN.SKU_ID, SUM(ITXN.UPDATE_QTY)/(CEIL(TO_DATE($P{To_Date},'DD-Mon-YYYY') -  TO_DATE($P{From_Date},'DD-Mon-YYYY')) + 1) AVG_QTY
          FROM INVENTORY_TRANSACTION ITXN
       WHERE ITXN.CODE = 'Shipment'
          AND ITXN.DSTAMP BETWEEN TRUNC(TO_DATE($P{From_Date},'DD-Mon-YYYY')) AND TRUNC(TO_DATE($P{To_Date},'DD-Mon-YYYY')+ 1) - 1/86400
         GROUP BY ITXN.SKU_ID) ITXN_ILV
       ON (S.SKU_ID = ITXN_ILV.SKU_ID)
    GROUP BY TO_CHAR(I.EXPIRY_DSTAMP, 'DD-Mon-YYYY'), I.SKU_ID, I.DESCRIPTION, NVL(P_ILV.SUM_QTY_DUE,0), NVL(P_ILV.SUM_TL,0), NVL(S.USER_DEF_NUM_3,0), NVL(ROUND(ITXN_ILV.AVG_QTY, 2),0)
    ORDER BY I.SKU_ID

  • Acrobat 9 bug? - Print Pages function does not print all bookmarked pages

    We use the Bookmark Print Pages function to allow for easy printing of sections of large PDFs. All of the pages that should be printed are bookmarked. The bookmarked pages print correctly in Adobe 8, but not in Adobe 9.
    I have put together a javascript workaround, but would prefer a solution that does not require distributing a file to all users.
    I would appreciate any suggestions on other possible workarounds.
    Here is the bug report I submitted to Adobe:
    Concise problem statement: The "Print Pages" function for bookmarks does not print all bookmarked pages in Adobe Reader 9.0 and 9.1. The same bookmarks print properly in Adobe Reader, Standard, and Pro 8.
    Steps to reproduce bug:
    1. Open the Adobe Acrobat SDK JavaScript for Acrobat API Reference PDF (Version 8.1, April 2007) in Adobe Reader 9.0 or 9.1.
    2. View the bookmarks. Right-click on New Features and Changes and choose "Print Pages."
    3. Open the same PDF in Adobe Reader, Standard, or Pro 8. (I used Adobe Professional 8.1.3.)
    4. View the bookmarks. Right-click on New Features and Changes and choose "Print Pages."
    Results and Expected results: Printing from v8 results in 12 pages. Printing from v9 results in 9 pages. Pages 741, 754, and 769 did not print from v9.

    I'm having the same issues.  Using the latest version 9.3.3.  Is this a bug? I tired calling adobe but their CR sounds like 3rd country only.  Anyone can shed a light on this issue?

  • Why can I not print all pages in a multi-page document?

    Why can I not print all pages in a multi-page document?

    We are using Adobe Acrobat Reader, version 11.0. It's on a relatively new laptop (Windows 8) and accessing the internet through Mozilla. The printer is an HP Officejet. When I open a multi-page Adobe document and try to print all pages, I only get 1-2, have to then say print page 3, then say print page 4, etc. We use Adobe on our other laptop and it prints all pages of all Adobe documents and we have never had a problem and he accesses documents on the internet also through Mozilla.

  • My hp 100 mobile printer will only print one page then quits. will not print all of the pages.

    my hp 100 mobile printer will only print one page then quits. will not print all of the pages.  i have rebooted, new install, and reset. still the same thing. when i look it shows that it is printing but there is nothing happing. i use this with my lap top.

    Hello colt1,
    Are you using Bluetooth or USB cable to connect to the printer?  Did you install from the disc, or from the online program?  When it sits there and doesn't print, does it eventually give error messages, lights flashing, etc.? 
    Thanks,
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • SQD3 select options not fetching all the data?

    Hi abapers,
    standard SDQ3 tcode is not fetching all the data?
    In this standard t.code how to find that for different Select-options, different data retrieval queries have been written?
    where to find the select options conditions are written?
    thans in advance

    This could be an issue as ROWTERMINATOR and FIELDTERMINATOR are not well placed.
    Use FORMAT FILE while using BULK INSERT.

  • Report header section does not print all pages

    Hi,
    I have a custom report that consists of all 3 parts. it has a header section, main section, and a trailer section.
    I have a problem in a header section that it does not print all pages. It only gives the output of the first page and the last page for the header section.
    I open the .rdf file with oracle reports 6i .
    what do i need to check please?

    Please refer the following thread:
    http://oracle.ittoolbox.com/groups/technical-functional/oracle-dev-l/report-header-section-does-not-print-all-pages-4166062

  • My iphone 4s says my phone is in recovery mode. What can i do to not lose all my data??

    my iphone 4s says my phone is in recovery mode. What can i do to not lose all my data??

    If it is in recovery mode the data is already lost. Restore it, hopefully there is a current backup, and move on with life.

  • SQL - Can u print all the dates between two given dates (Without PL/SQL)

    Hi Friends,
    I want to know if u can print all the dates between two given dates without using pl/sql.
    date1,date2 are given
    write a sql statement to display all the dates lying between those two dates.
    An earlier will be appreciated.
    Thanks in Advance
    Sriram
    null

    Sriram,
    Try this....
    select to_date('01-JAN-00')+to_number(rownum)
    from all_tables
    where rownum < to_date('10-JAN-00')-to_date('01-JAN-00')
    TO_DATE('
    02-JAN-00
    03-JAN-00
    04-JAN-00
    05-JAN-00
    06-JAN-00
    07-JAN-00
    08-JAN-00
    09-JAN-00

  • I just bought a new laptop because my old one died.  is there any way to sync my phone with the new machine and not lose all my data?

    i just bought a new laptop because my old one died.  is there any way to sync my phone with the new machine and not lose all my data?

    Copy everything from your backup copy of your old computer to your new one.
    Then sync.

  • Adobe reader not printing all document content.

    I am printing from a web based PDF document and it will not print all the document/ form content.
    I am using a Win7 computer, IE 8, and an HP DJ 2400 printer
    I have tried un-enabling advanced fatures, tried changing the print processor, and tried changing the options from document, to document and markups, to document and stamps, all to no avail.
    I know there is a simple issue and resolution to this, but I just can't remember what it is.
    Thanks in advance
    IKE

    Try copying the file to your local machine and then print it from there. So when it opens, click "File", then "Save a copy".

  • Report not printing all the characters -main section width greater than 11"

    Hi,
    I am trying to build/modify a Report (used in Oracle Apps) which will be printed on some perforated paper. The perforated paper is little bit wider (11.25 inches) than the regular A4 size paper.
    The problem is when I print the report in Oracle Apps, the report isn’t printing all the characters at end of the page. I adjusted the page width to 11.25" in the main section's property palette, but the same thing is happening. Another point to mention is, I should use all of paper space.
    I am not sure if it’s a report builder issue or oracle apps issue.
    Any help is appreciated.
    Thanks
    Srikanth

    You must have larger margin. Try to make smaller header and/or footer.

  • Export to PDF is not printing all the columns in one single page.

    Hi,
    I have a report, I am exporting the report to PDF, but ALL the columns are not printing in a single page, It is getting printed 2 or more pages.
    I am okay if I have a horizontal scroll bar or if the test size is reduced. Please see the recording and let me know whether it is possible.

    Sorry sir, It is a slip of the tongue, I corrected my response already.
    So it is defenitely possible to make ALL the columns appear in the same page in PDF regardless of how much width the report occupies?
    If yes, can I see a horizontal scroll bar or the text will be shrinked to fit the page?

Maybe you are looking for

  • F4 Help for KONZS field in KD03

    Hi All, Could you please help to add the search help for KONZS(Corporate help) in XD03 t.code ECC6.0 system. Thanks, Harinath

  • Problem partitioning external hard drive with Disk Utility

    I'm trying to create a new partition in disk utility in an external hard drive using disk utility and every time I click Apply it says that "Disk Utility has lost its connection with the Disk Management Tool and can't continue. Quit and relaunch Disk

  • HP LTO-3 support in Solaris 10

    What is the bare *minimum* Solaris 10 core release and/or patch revision required in order to support HP LTO-3 drives natively (no st.conf modifications)? I was unable to find this info anywhere in a search of SunSolve & the Sun site. However, there'

  • Indesign to PDF switch sizes, why?

    I'm using Indesign CS2 and trying to make a book to Blurb PDF. I've downloaded their templates for Indesign. Selected the 221-296 standard-portrait template which size is to be and remain 1278x774 pts. I click file>adobe preset>Blurb x3-2002>marks, a

  • Iphone didn't update properly

    Hi, I was trying to update my daughters iphone 4s and after an hour of sr so we got a message saying that the phone did not update because it is in recovery mode. On the screen it has an I tunes logo with a picture of the power/connection cord and an