Cross tab sub report with vertical page breaks

Hi have a report which contains 3 sub reports - different views of similar data. The sub report is wide enough to cover two landscape pages across and they run down over two pages
The first subreport on page one does expand across into the secon landscape page, but does not repeat the row labels, although the settings in both main & subreport cross tab are to repeat
The secon & third sub reports which print on the escon vertical page do not expand across to display any data, so I get no page four.
They all have exactly the same settings.
Is there any easy way to resolve this?

hi Julie,
this is i believe the nature of cross-tabs inside of subreports...horizontal expansion within the subreports is not a supported feature.
you mentioned that the data is similar but just different views...is the query that each subreport runs off of bringing in the same record set? if so, is it possible to move the cross-tabs into the main report?
are you using crystal reports 2008? if so, does changing the page setup for the entire report to a huge size and then the pagination for each section to landscape help?
jamie

Similar Messages

  • SSRS Header Image extension for Cross Tab type Reports to full page width

    Hi All,
    I'm trying  to adjust  a Image  on Header ,the problem I'm facing is the image doesnt extend with the page full width  when there is cross tab type reports.
    Many thanks

    Solved
    There  is a property for background repeat setting  when set to Repaet X has worked for me

  • Cross Tab sub-report

    Hi
    I have currently designed a report with multiple cross tab tables. I am trying to connect another cross-tab report as a subreport to this report. For doing this I have created subreport links on the parameters passed to both the reports which are the same but it does not seem to work. Kindly help
    Thanks
    Payal

    Hi,
    This problem may occur if parameters are not linked properly.Have u tried to preview both the reports with same parameter values.If u are getting data for both the reports,then try to link it again.
    Regards,
    Misra P.

  • Achieving SubTotals in CROSS Tab XML Report

    Hi,
    I have a requirement to obtain subtotals in cross Tab XML report.
    X-axis and Y-axis columns and values are generated dynamically from Query.
    The Y-axis contains heirarchy. In between these heirachies, i need to have subtotals.
    If required, i can send rtf and xml source via email.
    Please let me know if anyone has implemented before?
    Thanks.
    Edited by: 808712 on Nov 9, 2010 5:12 AM

    Hi,
    I am building cross tab manually. I am not getting any idea how to achieve a subtotals in between, mailed you rtf and xml source along with mock excel for reference,
    This is what i require:
         Person Type                    
    Organization     Employee     Co-Op     Intern     Contractor     Total
    *910 AD*     2     0     0     0     2
    920 AC      32     0     0     7     39
    110 PU     12     0     0     3     15
    930 HR      19     1     0     4     24
    950 LEl     9     0     0     1     1 0
    951 SA     0     0     0     0     0
    970 FA      0     0     0     0     0
    980 IS      31     1     0     3     35
    981 ERP     0     0     0     0     0
    982 CI     0     0     0     0     0
    983 IT     0     0     0     0     0
    986 IT     0     0     0     0     0
    Total 910 Ad     105     2     0     18     125 --> I need to achived this subtotal?
    etc…                         
    Headcount Total: 105     2     0     18     125 --> I got this total
    I have build the rtf with the help of BI Publisher user guide - Cross-Tab Support(pageno:5-94), the only pending was this subtotals.
    Thanks

  • Report with two pages

    hi all
    I am designing a report which has two pages , i completed first page, i need to insert second page
    how to design report with two pages
    Thanks in advance
    Krish

    Hi,
    Usually,any report automatically adjusts its page numbers as per the quantity of data that needs to be displayed.However, if your specific requirement is to show certain data on one page and the remaining on another then you can simply insert a group on a valid field.
    Following is some information from the Crystal Reports Online Help menu:
    New Page After:
    - When the End of Section check box is selected, the program inserts a page break after the section.
    - The Page Header and Page Footer appear on each page.
    - Use New Page After in the Group footer section to print each group on a separate page.
    May be, if this is not what you are looking for then please elaborate on the report design/data

  • ALV to PDF conversion with a page break

    Friends,
        I have a need where I need to print ALV in PDF format with a page break. Any advice on how to do this ? Is it possible to print in PDF format in ver ECC 6.0 without using OTF conversion routine ?
    I tried to create a new device type PDF got an error in the spool when tried to print ?
    Thanks,
    Abap PM

    Hi,
    Check the below links.
    [LINK1|https://wiki.sdn.sap.com/wiki/display/Snippets/SaveReportOutputtoaPDFFile]
    [LINK2|Convert ABAP Report's Output into PDF Format..;
    [LINK3|https://wiki.sdn.sap.com/wiki/display/ABAP/PDF%20Downlaod%20By%20Creating%20Spool%20Request]
    Thanks,
    Sreekanth

  • How to create a report with different page sizes

    Hi,
    I would like to create a report with different page sizes, it's possible to do it with diadem?
    When I change the layout parameters, changes afect to all sheets...
    Is there a way to change page size individually for each sheet?
    Thanks in advance.
    Marc

    Hi Marc,
    You can use the DocStart and DocEnd commands along with the PicPrint command to spool multiple print commands to the same output PDF file using the direct printer approach.  This should enable you to programmatically specify the page size differently for each sheet that you add to the print job.
    ' Print PDF Page by Page.VBS
    OPTION EXPLICIT
    Dim i, Path, OldPrintName
    Path = AutoActPath & "2D Stacked"
    Call DataDelAll
    Call DataFileLoad(Path & ".TDM")
    PDFFileName = Path & " Page by Page.pdf"
    IF FileExist(PDFFileName) THEN Call FileDelete(PDFFileName)
    OldPrintName = PrintName
    PrintName = "winspool,DIAdem PDF Export,LPT1:" ' Set to PDF printer
    PDFResolution = "72 DPI" ' "2400 DPI" , "default"
    PDFOptimization = TRUE
    PDFFontsEmbedded = FALSE
    PDFJPGCompressed = "high"
    PrintOrient = "landscape" ' orient paper
    Call PrintMaxScale("GRAPH") ' auto-max, see alternative margin setting variables below
    PrintLeftMarg = 0.181
    PrintTopMarg = 0.181
    PrintWidth = 10.67
    'PrintHeigth = 7 (read-only)
    Call WndShow("REPORT")
    Call DocStart ' Begin multi-page document/print job
    FOR i = 1 TO 4
    Call PicLoad(Path & ".TDR")
    Call GraphSheetNGet(1)
    Call GraphSheetRename(GraphSheetName, "Page " & i)
    Call PicUpdate
    Call PicPrint("WinPrint") ' Add a page to be printed
    NEXT ' i
    Call DocEnd ' End multi-page document/print job
    PrintName = OldPrintName
    Call ExtProgram(PDFFileName)
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • How can I have Main report with a sub-report with in a sub-report??

    I have a main report that has about 5 subreports, almost like a dashboard.  I need to make one of those subreports contain another subreport.
    I don't have the option to add a sub-report with in my sub-report, so what I thought would work is remove my sub-report from my main report, then add my new sub-report, then add that report back to my main report.
    Everytime I add the sub-report that has a sub-report to my main report I lose the second sub.
    From what I've read on the internet is you can't have a sub-report contain another sub-report.  What some say is you can hyperlink that second sub report.
    When I setup my hyper link to open the second sub-report I'm prompted to re-enter my report parameters.
    Can some help me link a sub-report to a sub-report or show me how to pass a date range parameter in my hyper link so the reports just opens up?
    I'm using CR IX R2
    Thanks

    Nate,
    You are dealing with a product limitation.  Crystal cannot have nested subreports within a sub report. 
    You can generally use shared variables between sub reports to achieve your desired result

  • Generating Report with vertical lines from Designer

    Hi:
    I would like to get any suggestions about generating tabular reports with vertical lines from Oracle Designer 6.0 on Windows NT.
    Any help will be appreciated.
    Thanks in advance

    Hey c2petrov,
    Thanks for using Apple Support Communities.
    After reviewing your post, it sounds like you are having trouble with the screen. A frustrating situation to be sure. This article addresses issues with video on internal or external displays.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/HT1573
    Have a nice day,
    Mario

  • Date Format is not Working in Cross tab Crystal report 2008

    Hi,
    I have developed an application ASP.Net c#
    in Framework 3.5 with crystal report 2008 with service pack 5.
    in my crystal i used cross tab to show the grid records. one of the data having the data type as date time after launching the report, when i export the report with option "export to excel (data only)" and check the format of the date value in excel it show the general string
    if i place that data in any other location other than cross tab then it reflects the format what i give in report design. but when the control is in cross tab
    its not effect
    how to solve this!

    And tweeted
    - Ludek
    Senior Support Engineer
    AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Excel Outputs with Header, page breaks, margins in EBS R12, 10.1.3.2 BI Pub

    Hi All,
    We have most of our report outputs as Excel.
    Our client is expecting a common format for outputs in excel, with header, margins, page breaks , page numbers
    And some of our reports has more than 70 columns
    Using RTF, we could not able to manage this. the header or page breaks are being overwritten when it generated the excel outputs.
    Please let me know how to achive this.
    Thanks in advance
    Edited by: DharV on Oct 15, 2012 8:44 PM

        Hi Rohit ,
    I had copied these .class & .xml files under Myclasses -> oracle.apps.icx and oracle.apps.po and oracle.apps.fnd was same which comes part of the standard OA tutorial.
    I copied same under Myprojects as well.
    you have to decompile the class file into java file and then place it in Myproject directory , also copy all dependency files like BC4J components , and then
    try to run from Jdeveloper .
    Alternatively you can get the entire ICX folder and zip it and add it via library .
    --Keerthi

  • Object Reference not set to instance of Object when sub-report on new page

    I have a problem when my sub-report goes onto the second page of the report, with an error message.
    My VB.NET displays a report and sub-report (in the footer) in a CrystalReportViewer:
    - When both are on the first page, both display fine
    - When the sub-report (or at least part) goes to the second page, the report displays OK, but without the subreport. When I go to page 2 of the report - hoping to see the sub-report - an error message is displayed, with title "Crystal Report Windows Forms Viewer" and text "Object Reference not set to an instance of an object".
    This problem occurs both on my development machine in VS and at a user site.
    Am desperate for some ideas please! I have VB.NET in Visual Studio 2010, and SAP Crystal Reports, version for Visual Studio 2010. The program is targeted for .NET Framework 3.5.
    I looked for the HandleException event on my Windows Forms Viewer, as suggested by SAP and Microsoft, but cannot find this. See for [example|http://devlibrary.businessobjects.com/businessobjectsxi/en/en/crystalreports_dotnet_sdk/crystalreports_net_doc/doc/crsdk_net_doc/html/crlrfwindowsformscrystalreportviewerclasshandleexceptioneventtopic.htm]

    Usually, the error is due to the object going out of scope. Placing the object in a session may help. Moving the CR code to page init or page load may help. Looking at samples may help:
    http://wiki.sdn.sap.com/wiki/x/JQBmBQ
    CR Dev help files are here:
    SAP Crystal Reports .NET API Guide     http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_api_2010_en.zip
    SAP Crystal Reports .NET SDK Developer Guide     http://help.sap.com/businessobject/product_guides/sapCRVS2010/en/crnet_dg_2010_en.zip
    Finally, ensure you are using Service Pack 2 (see the sticky thread at the top of this forum).
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • On cross tab, sub totals are not displaying...

    i build the cross tab report.
    region  period    status_cnt
    ========================
    south   apr-07     10
         may-07     10     
         jun-07     15
            sub-total 35
    north   apr-07     18
         may-07     75     
         jun-07     15
            sub-total 108
    grandtotoal 143and when i applying subtotal and grand totals its returning nulls.
    i tried sum,cell sum but didn't worked out.
    and i am not suppose to use cellsum distinct (status_cnt is repeating.)
    how i have to display subtotals and grand totals in my cross-tab report.
    i am using OracleBI Discoverer Plus 10g (10.1.2.1)

    Hi,
    try to cerate a new calc :
    nvl(status_cnt,0)
    and create the totals on it,
    I think you got nulls in that column so it wont aggregate properly.

  • Calculated column shows all zeros in cross tab discoverer report

    Hi
    I have a calculated column in a cross tab report which shows all zeros, but when i duplicate the report as 'table' the calculated colun is getting populated.
    i did not understand why it is doing like that, are there any special privileges or any special settings required for creating a cross tab report.

    Hi,
    No there is no special privs for cross tab but there is an aggregation issue.
    There are some methods of aggregations used in the discoverer.
    First thing you can so is to make sure that in the cross tab sheet you use the detailed data points and that you are not combining different levels of aggregations (for example one amount in details and another one summed).
    Second thing you can try is to change the aggregation for this worksheet, you can do that by going to the worksheet properties to the aggregation tab and try to change the settings.
    Third thing is to check the pref.txt file in the application server and set "AllowAggregationOverRepeatedValues" to 1
    BTW also search your data and find whether you got NULL values in the aggregated items, if so then wrap the data points with NVL function.

  • Cross tab(matrix) report in XML publisher

    hi,
    i am making a cross tab report (industry,year,amount) with row subtotal='true' (by default). i.e.
    (Industry) 2008 2009 2010 total
    abc ltd. 50 100 160 310
    xyz ltd. 100 200 300 600
    pqr ltd. 10 20 30 60
    after creating cross tab, when i am going to properties of industry this is showing <?./H?> and properties of year this is showing <?./M?> and properties of amount this is showing <?./L?> and properties of total this is showing <?./T?> which i think automatically created.
    then i have to put a condition that, if industry like pqr ltd. then total should be null otherwise this should show the total as it is.
    i.e
    (Industry) 2008 2009 2010 total
    abc ltd. 50 100 160 310
    xyz ltd. 100 200 300 600
    pqr ltd. 10 20 30
    how should i have to write condition for this in total property tag.

    Hi
    the crosstab praser now creates an in memory object to process. To get the total to hide you could use
    <?if:./H != 'pqr ltd'?><?./T1?><?end if?>
    Regards
    Tim

Maybe you are looking for

  • Is it possible to change values in pagination select list for a report?

    The values showing up in my pagination select list for a report are 10,15,20,30,50,100,200,500,1000,5000. Is it possible to not have this list show the 1000 and 5000 values? I've tried setting various row values in the layout and pagination section o

  • Please help to open PDF file in new window

    Hi! I have a My.pdf file, and file Other.pdf located in subfolder Myfolder. For example, my.pdf located on c:\Mydocs\My.pdf and Other.pdf located in c:\mydoc\Myfolder\Other.pdf I try make plugin that open Other.pdf in subfolder Myfolder, no matter in

  • Session value

    hi experts, am using jdev 11.1.1.5.0 - adfbc- oracle db10g. here i what i want. following season class >> scope is session scope..   <af:inputText label="anni" id="pann"                               value="#{season.p_ann}"                           

  • [svn:osmf:] 14444: DVR, CR feedback: change dvrTrait and timeTrait properties on NetStreamLoadTrait into a generic getTrait /setTrait scheme.

    Revision: 14444 Revision: 14444 Author:   [email protected] Date:     2010-02-26 00:38:24 -0800 (Fri, 26 Feb 2010) Log Message: DVR, CR feedback: change dvrTrait and timeTrait properties on NetStreamLoadTrait into a generic getTrait/setTrait scheme.

  • Problems importing a Video

    Hallo! I want to put a video(wich i can see with Quick time player) on my ipod and for that I tried to import it to itunes but when i try too import it it comes an error wich says it is an unknown error and on the end (-50. I dont know what that mean