Crystal Reports Capability

Hello everyone,
I need your help in order to know if Crystal Reports is the right solution for creating a Report with more than 50 tables related and more than 170 columns, many of them are financial ratios calculated! I was wondering if Crystal Reports has the capability for supporting this processing.
Thanks a lot for your help!
Best Regards!

It should be fine if you don't have any inline joins, unions or selection criteria against cascading left joined tables.  That's a lot to ask, though, with that many tables.  You might be better served writing SQL (view, command or stored procedure) and using the SQL object as the data source for your report.

Similar Messages

  • Using Crystal Reports for Ad-Hoc reporting

    Is Crystal Reports capable of ad-hoc reporting? If so what of the myriad of products is the minimum that I would need to get started?

    There are a few ways to get close to what you need.  The easiest way is to use Crystal Reports for Eclipse which is the product that contains an embedded version of the Cystal Reports designer.  This would allow users to design and connect the reports to datasources in a similar manner to Crystal Reports.  It isn't a fully featured version of CR, more of a basic version.  It will allow you to add charts, and you can open an already created template; the connectivity is limited to JDBC, JavaBeans, POJO classes, XML and Web Services.
    You can also use the Crystal Report Java SDK to create your own adhoc pages that will allow you to perform the functionality you designer.  The API will allow you to do nearly anything you can do within Crystal Reports.
    The above downloads are can be obtained freely from the Crystal Reports for Eclipse portal on SDN.  To distribute web applications internally, you do not require any additional licenses.  To sell your application or to distribute it externally, you require a Developer Advantage license.  See this link for more information about that:
    http://www.sap.com/solutions/sapbusinessobjects/sme/reporting/eclipse/technicaldetails/index.epx
    For more information about the SDK and Embedded Designer, have a look at the Crystal Reports for Eclipse 2.0 Developer Guide AND API reference documentation in the SDK Library, the Business Objects Portal, on http://www.sdn.sap.com .

  • CR2008 Not enough memory while exporting reports from Crystal Reports 2008

    I have recently upgraded our Crystal Reports version from Crystal Reports Basic for Visual Studio 2008 to Crystal Reports 2008. After upgradation I am facing the problem "Memory full.OtherErrorFailed to export the report. Not enough memory for operation" when I am trying to export the report from Crystal Reports 2008 Report viewer, or directly from the code behind. The application is hosted application. The problem occurs in our production environment.
    Server details:
    OS: Windows 2003 Enterprise Edition R2 with SP2
    IIS: IIS 6
    .Net Framework: 3.5
    Application details:
    Hosted application using Crystal Reports 2008 SP 3
    Crystal Reports Viewer version: 12.0.2000.0
    The data binding of the report object is done through an ADODB dataset.
    Web.Config:
    <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
      <configSections>
        <sectionGroup name="businessObjects">
          <sectionGroup name="crystalReports">
            <section name="printControl" type="System.Configuration.NameValueSectionHandler" />
            <section name="crystalReportViewer" type="System.Configuration.NameValueSectionHandler" />
          </sectionGroup>
        </sectionGroup>
      </configSections>
      <businessObjects>
        <crystalReports>
          <printControl>
            <add key="url" value="http://myserver/mysite/PrintControl.cab" />
          </printControl>
          <crystalReportViewer>
            <add key="documentView" value="weblayout" />
          </crystalReportViewer>
        </crystalReports>
      </businessObjects>
      <appSettings>
        <add key="CrystalImageCleaner-AutoStart" value="true" />
        <add key="CrystalImageCleaner-Sleep" value="60000" />
        <add key="CrystalImageCleaner-Age" value="120000" />
      </appSettings>
      <system.web>
        <httpHandlers>
          <add path="CrystalImageHandler.aspx" verb="GET" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
        </httpHandlers>
        <compilation debug="false">
          <assemblies>
            <add assembly="CrystalDecisions.Data.AdoDotNetInterop, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692FBEA5521E1304" />
            <add assembly="CrystalDecisions.Shared, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.ReportAppServer.ClientDoc, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.Enterprise.InfoStore, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.Enterprise.Framework, Version=12.0.1100.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.ReportSource, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
            <add assembly="CrystalDecisions.CrystalReports.Engine, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" />
          </assemblies>
      </system.web>
      <system.webServer>
         <handlers>
             <add name="CrystalImageHandler.aspx_GET" verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" preCondition="integratedMode" />
         </handlers>
      </system.webServer>
    </configuration>
    Sample Code:
    Report = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    Report.Load(Server.MapPath(strReportPath));
    Report.SetDataSource(dsReport);
    Creportviewer.ReportSource = Report;
    For exporting the report to PDF
    string Filename = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.InternetCache).ToString(), Guid.NewGuid().ToString() + ".pdf");
    Report.ExportToDisk(ExportFormatType.PortableDocFormat, Filename);
    Clean Up Code: (Page_UnLoad event)
    if (Report != null)
         Report.Close();
         Report.Dispose();
    Creportviewer.ReportSource = null;
    Creportviewer.Dispose();
    dsReport = null;
    GC.Collect();
    GC.WaitForPendingFinalizers();
    Can someone help me resolve the issue.

    The .rpt file size is 14MB with the Data Save option enabled, 12MB without Data Save.  Presumably the 12MB file size is because of the 24bit PNG we have as our background.
    The Designer executes the report in less than a second and we can scroll through all pages and see the image fields perfectly.
    When we Export to PDF, the Designer takes a long time, eventually gets to the 77%, the 7th record and returns "Export report failed" followed by "Memory full".  If we export only page 1 of the 3 pages, it also returns a Memory full error.  However, when the same report is run with only 1 page, that page exports to PDF but with a ridiculously large size and export time.
    The machine has 2GB of physical memory with an 8GB pagefile with Windows 2003 (latest everything).  The process runs up to about 1GB before reporting the memory full error.
    We've also tried a variety of other suggestions posted in the other thread with no success.
    We're happy to provide the RPT file to the Report Team to diagnose the problem.  Ultimately, we need to be able to produce a 15 page report with approximately 45 images.
    Our preferred scenario is fixing problem 2.  The CR Designer seems quite capable of rendering our report and printing it to our third party PDF printer in a timely manner with small size.  However, the API reports memory full.
    The API resides in a dedicated reporting web service with NO other code except for loading the report, setting parameters and printing.  When executing, it uses up to about 1.1GB before reporting the error.
    Are there any other suggestions for fixing what we have?  Are there known problems with large images in reports?  Do we need to lodge a formal support request?
    Regards,  Grant.
    PS.  Grr and my message formatting is lost when I edited this message!!!
    There is a 1500 character limit and then all formatting is removed to save space. Break you posts into separate entries.
    Edited by: grantph on Sep 30, 2009 2:49 AM

  • SOAP Messaging Using Crystal Reports Web Services To Return Report in PDF or Excel Format

    All,
    I am trying to use SOAP messaging to fetch a Crystal Report through a Managed repository and getting back either a PDF or Excel file. For some reason, any reference to web services on this site I cannot access. Like thread, "Using Web Services on the Crystal Report Server XI to return reports".  Can anyone point in a direction to Web Service Calls API documentation or does this not exist ?????? I would hope this product has this capability.
    Thanks In Advance,
    Tom

    XI Release 2 Service Pack 2 introduced the Business Process BI Web Services, that allow you to retrieve reports using SOAP messaging.
    It's documented here:
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/WS_SDK/wssdk_portal/doc/wssdk_bpbi_doc.pdf
    Sincerely,
    Ted Ueda

  • Use of Grid in crystal report designer

    Hello,
    I have a simple question in regards to data grid in crystal report designer. Crystal report designer has a capability to show grid in both design and preview mode, can we make use of any other grid in crystal, how can I make my report look more professional like the text box alignment and placed objects based on using grids?

    I am confused as to what you are asking.  You can align text boxes and lines/linear boxes using the grid in the report design tool just like other report objects.  You can achieve some very crisp looking report designs this way.  There are also tools available when you right-click one or more objects to size and/or align those objects within the page.
    Fuskie
    Who notes you can also change the spacing between guidelines and grid points to provide more control over layout...

  • Seeting Custom Page in Crystal Report 2008 Issue

    We were using crystal report from a long time, our application uses crystal report (version 11 & 12)  & Visual Studio (VS 2008) I am using a separate crystal report 12 not the version coming with VS 2008. and recently we upgrade our application from VS 2005 to VS 2008 and upgrade crystal report from 11 to 12, The problem is we print a report in a custom page (height 20.40 cm  , width 38.10 cm) we use a dot matrix printer Epson LQ 2090 and the page orientation is portrait  and the report prints fine In crystal report 11 without any issues, but after we upgrade to crystal report 12 we are unable to get the printout in portrait even we save the crystal report page with the custom page still it?s prints in landscape. 
    The issue is in crystal report page setup when we select landscape  the horizontal  = 38.10 cm & vertical = 20.40 cm but since I print the report portrait when I change it portrait the values change into Horizontal = 20.40 & vertical = 38.10 but that?s not needed because our printer & the page is capable of printing 38.10 cm wide and 20.40 height , I don?t understand why the values get change when we change the page orientation it didn?t happen in crystal report 11.

    Hi, Rodney;
    I believe there was a known issue in the released version of CR 2008. Install the Service Pack 0 for CR 2008, that should take care of the issue.
    https://smpdl.sap-ag.de/~sapidp/012002523100007528552008E/cr2008_sp0.zip
    Regards,
    Jonathan

  • Crystal Reports 9 Export To Excel 2007

    Hi All,
    We are using Crystal Reports 9 designer in VB6 to create our reports.
    When report is generated and siplayed on the screen, the option to export the report to Excel only gives the option of Microsoft Excel 97 - 2000. We are looking to upgrade to Microsoft Office 2007.
    Question: Is there any way to update Cyrstal to allow the ability to export the Crystal Report to Excel 2007?
    Is there any dll that can be applied to present the Office 2007 export option capability?
    I am doing this to determine if Crystal Reports 9 would be able to ulitize Office 2007.

    Hello Don,
    The problem is that Excel 2007 is not offered as an option to export to to. If we upgrade to Office 2007, we need to be able to select this. The Microsoft 97 - 2000 would not work as Excel would be 2007. We don't want to have to created as Excel 2000 and then have Excel 2007 convert it. We are looking for a way to have Crystal 9 have the ability to export to Excel 2007 directly.
    Is there any upgrade to Crystal 9 that would allow Excel 2007 as an export option or would we have to upgrade to a different version of Crystal? We are trying to avoid upgrading Crystal since this would require purchasing multiple developer licenses and the report would have to be recreated using the upgraded version report designer in VB6.
    Edited by: cpscott on Feb 20, 2010 12:44 AM

  • CRVS2010 Beta - Problems with printing Crystal Reports for VS 2010

    Good afternoon,
    We have the following problem, we used the version of Crystal Reports that came integrated with visual studio for several years. But we are migrating to the version of Visual Studio 2010, and we are using the version of Crystal Reports for this same version, running on screen is correct, and run all the reports, but in print there is a failure we could not solve. Our customers use printers dot matrix as the "Epson LX300 +", but when you print the report leaves the impression defective in the previous version of Visual Studio 2005 "The impression is quite clear, we have attempted to overcome this problem with the options of PrintMode with activex and pdf in the CrystalReportViewer, and RenderingDPI option with multiple values. Obviously when using other types of printers such as laser or inkjet printing is perfect, but due to cost our customers use the printers mentioned. The server where the application is Windows server 2008 and client computers are windows xp, windows 7, windows vista. As network hardware and printers are working properly, and from other applications and from the other server with versions of Crystal Reports If anyone knows how to solve this problem I would like to receive support and ideas.
    Thanks
    Subject modified as per the sticky post at the top of this forum; [Crystal Reports for Visual Studio 2010 Beta - read before posting|Crystal Reports for Visual Studio 2010 Beta - read before posting;
    Edited by: Ludek Uher on Oct 11, 2010 3:42 PM

    I have a question about printing reports. We are using VS2008 and the CR reportviewer with printmode = ActiveX. Many of our users absolutely hate the number of steps they must go through and the time it takes to print a Crystal Report when printmode = PDF. In our environment several times per day, we need to produce hard copies of reports for legal reasons. Making the users first render the report, then had it off to Adobe to print simply takes too much time which is why we are using the ActiveX print control.
    We recently started looking at VS2010 and discovered the issue with the unbundling of Crystal Reports. We have not downloaded CR for VS2010 yet.
    My question is this: for VS2010, what happened to the ActiveX print control? I read somewhere that it was going to become some WPF-type thing but there weren't many details about that. So when a user clicks on the print button in the Crystal Report Viewer intended for VS2010, what can they expect? Can they still print straight to a printer (is there something that gives them this capabitliy like the Active X print control did?), or has that capability been deprecated and they have to go through PDF? Thanks in advance for any information you can give me.

  • Trouble migrating Crystal Reports Custom Functions from BOXI R2 to BOXI 3.1

    I can't seem to migrate the custom functions from the custom function repository in my R2 environment to the 3.1 with FP 1.3 environment.
    When I migrate Crystal Reports using the Import Wizard, they all come over and they retain their custom functions, however, they don't bring over or create a new custom function repository. 
    When I do run the import wizard I have selected the repository radio button, but it does not have any affect .
    How can I migrate all of these custom functions without having to manually open up reports and placing them back into the repository on the new server?
    Thanks,
    Randy

    Hi,
    so if they are published to Rel.2 this looks different.
    Just to clarify it a bit more...these Files are no Datasources for Reports and Universes and your Users dont consume them via InfoView?!
    Whats the purpose for these Files? If they have none, you can de- select them in the UMT and dont migrate them (or better said move them cause you wont actually migrate .csv files). But if nobody touches them, you can move them with the UMT during daily business...how long it will take i cant estimate it. But 65GB for .CSV files is a huge amount.
    But you are correct, to move them from Rel.2 to BI4 you have to use the UMT.
    If you have the ressources and time i would recommend the following (Thats what i usually do with my customers):
    1. Setup a Machine (could be a VM) with the same OS and BOE Version (included SPs and FPs) as your production Rel.2
    2. Schedule a half day or day Downtime to copy the content 1:1 from the production Rel.2 to the VM Rel.2 with the IW or CMS DB Copy. Or do this after Business Hours.
    - With this Size of your FileStore i would recommend the CMS DB copy way.
    - Now you have a 1:1 Testing Environment of your Production Environment
    3. Use the UMT to migrate from your VM Rel.2 to your BI4 installation
    - Here you can see how long it takes
    - You can check if the UMT is capable for this 65GB transfer
    - Can sort out other possible issues
    - Do some other Testing
    After you did that you have a perfect estimation on how long the Migration will take and what for issues you are facing. With this information you can decide if you need a downtime or can do it after Business Hours f.e.
    Regards
    -Seb.

  • Drill Down Arrow error in Crystal Report. Authorization Path

    hi all,
    i made a report in crystal report with drill down capability with the ff formula:
    'http://$b1$/link?table=OPCH&key='&totext(({OPCH.DocNum}),0)
    pls see image below for the error display:
    http://i264.photobucket.com/albums/ii184/abing430/DrillDownArrowError.jpg
    when i run the report in SBO the report display with no problem but when i click the drill down arrow it says "You are not permitted to perform this action : Authorization path". i am using the Manager account w/c is a super user.
    pls. help.
    thanks
    Fidel

    hi Gordon,
    thanks for the reply.
    now i use the ff. Formula as what u have instructed.
    'http://$b1$/link?table=OPCH&key='&({OPCH.DocEntry})
    this returns an error in formula
    'http://$b1$/link?table=OPCH&key='&totext(({OPCH.DocEntry}),0)
      this line does not returns an error in formula workshop but i still have the same error....
    addtitional information: this is my SBO version
    SBO: 8.8
    PL: 18
    best regards.
    Fidel

  • Build a data warehouse for crystal report use

    OS: AIX 5.3 with Oracle 10g R2/Baan 5c
    I proposed my colleage to create a data warehouse for his heavily use of crystal report activity, so that his activites will not drag the normal database performance. The data will collect from the current Oracle 10 g database. Because I have never physically worked on the data warehouse, where should I start to look for information to proceed? I have an extra Sun Solris 8 box with a spare HD. I think it will be better to build the warehouse on that server, am I right? or the 10g R2 provides the capability to host another warehouse activity -- create a materialized view within? Thanks,

    Thanks for the help Ted
    Works like a charm now.
    Or atleast my very very simple XML report works.
    Now I just need to play around and see what I can do and what I cant.
    I just want to make sure I understand how this works.
    1) I start of with a XML file (or URL or other data source as explained in your BLOG)
    2) I then have to create blank report which will have its data source set to my XML file.
        This report (rpt file) will always have its data source set to the original XML location
    Can this be dynamically changed, or does a new rpt file need to be created each time
        (or atleast I will have to re-run "CreateXMLInlineSchemaReport" from your BLOG)
    3) I can now use this rpt file as I would any other rpt file but its data source will be the original XML file
       - If I update or change the XML file, the report will dynamically reflect these changes.
    4) To change the data source, I need to recreate a new rpt file as per point 2. Which will now be blank.
    5) Filtering.... if I want to filter the XML data do I use normal parameters. If I want to filter the data before
        I pull it do I need to change anything. In otherwords if I have a XML file with 1000 records, but I only want say
    5 of them, how do I only pull those 5 without first pulling the whole 1000 records. Hope that makes sense.
    As I said I am very new to this so some things still fly over my head, but I do play around abit so hopefully
    will find what I am looking for.
    Cheers
    Darren
    PS any other links to info on creating and running reports of XML data sources would be greatly appriciated

  • Scheduling of Crystal report or allowing user to refresh

    I am the only person in my organization that has Crystal Reports. Normally I just develop and run the reports for my users. I have a report I have developed that one of my users needs to be able to refresh and update the parameters. I am trying to come up with the simplest, least expensive way to make this possible. It is my understanding that Crystal Reports Viewer will only let him look at the report, not refresh it, unless I have Crystal Reports server. I saw some other products on the Internet that say they would provide the capability I need, but are pretty expensive. The only other option I can think of is getting his own copy of Crystal, save my report definition onto a folder on our server, and just let him run it with his own desktop copy of Crystal.  Anyone have any better ideas?  Thanks.

    Please re-post if this is still an issue to the Business Objects Forum or if you have a valid support contract create a case on line.
    You can set the option for the users not to be able to hit the refresh button or export to any format will also not give them the option to refresh

  • Converting a Crystal Report with Many Sub-Reports into CF Report Builder

    I am trying to rewrite a Crystal Reports report which has 11
    subreports in CF Report Builder. In the CR report, each subreport
    has it's own report footer seciton. I have not been able to find
    anything in CF Report Builder that allows me to do the same. Is CF
    Report Builder capable of producing a report with multiple
    subreports?

    Having successfully created a report with 5 or 6 subreports
    (with each sub-report containing a multiple sub-sub reports) I can
    say with confidence, "Yes you can." However the real question you
    should ask is, "
    Should I create a report with multiple sub-reports in CF
    ReportBuilder?" And the answer to that is.... NO, WHAT ARE YOU
    CRAZY!
    If you have something that works in Crystal Reports I would
    suggest you stick with that. Otherwise you're setting yourself up
    for a lot of headaches. Now maybe it was because I started using
    the report builder that came with MX7, but it seems there are still
    quite of few bugs that will leave you shaking your fist at your
    computer. If however you do continue and do the CF Report Builder
    route, be prepared for your application to crash unexpectedly, and
    for many things to not work they way you expect them to. And if you
    ever need help good luck. Take the fact that you had difficulty
    finding good documentation as a sign of how little Adobe supports
    this product.
    CF Report Builder is fine for very simple reports, but don't
    get fancy with it, you'll only regret your decision in the
    end.

  • Can IBM Tivoli Scheduler be used to schedule the crystal report?

    Hi,
    Can any one help ime resolve this query???
    We need to sechedule crystal report on Tivoli Scheduler...
    1) Is it possible.
    2) If YES,what will be the format ??? will it accept the .rpt format.
    Thanks,
    Samundar

    Haven't used Tivoli but it's probably safe to assume that scheduler is capable of triggering a batch file or a command line.  If so, then there are several 3rd-party Crystal Report Managers (see list at: http://www.kenhamady.com/bookmarks.html) that can be called via a command line.

  • Crystal Report or WebI

    I have to develop few reports. Most of the reports are like bar chart with count on Y axis (Vertical) and month of  X axis(Horizontal). The report is very simple. Can some one please help me to  understand if I should develop the report in Crystal or WebI. What is the advantage of one over the other?
    I know that WebI helps in better adhoc capabilities. But what adhoc capabilities can some one have with this simple report or what can I suggest clients?

    To provide charts, both WebI and Crystal can do the job.  But besides the differentiation the other posters have already mentioned, there are a few more factors you need to consider.
    WebI can easily be learned and used by business users. Crystal on the other hand requires some technical knowledge. The learning curve of Crystal report is steeper than WebI. That's why most WebI reports are developed by business analysts and most Crystal reports are normally developed by IT developers. Last but not least, the licensing of Crystal are typically more expensive than WebI.
    It is the "textbook" definition that WebI is for adhoc reporting and Crystal is for formatted reporting. But that definition is beginning to blur as WebI is getting more and more capable on every new release. We have developed many highly formatted reports using WebI alone.
    Therefore, when you decide on which tool to use, do not just focus on the "adhoc vs formatted". You need to consider all other factors as well.
    Hope this helps.

Maybe you are looking for

  • 802.1x problem

    Need a help 1) We have implementing 802.1x authentication( MAC authentication) for central location,each user need to be authenticate through Laptop/desktop MAC address based on 802.1x. after authenticating user have received IP address from DHCP ser

  • Finding BPM of audio imported into project

    Hello all-- I bet there's an easy answer to this, but as a noob I'm not finding it in searches (though I find lots of related stuff). I'm trying to tempo-sync imported audio to a midi tempo in a project. Is there an easy way to analyze the tempo of t

  • Microsoft Outlook Hotmail Connector

    We are installing this connector by default on our machines, so the people have the ability to add a live/hotmail/outlook.com account to their outlook 2010. On first start up, it is asking "Would you Like to add an hotmail account", which is a small

  • JMS Drivers for Webshere MQ series 7.0.1

    Hi Experts, I am trying to connect to Websphere MQ series via PI, Websphere MQ series is running on Linux environment and PI system running on AIX operating system, i got the drivers from linux environment where queue is running, can i deploy those d

  • Will Logic pro 9 work on Macbook Pro 10.8.3 ?

    I have just got a new Macbook pro and want to install Logic 9 on it as my old Logic 8 discs do not install. Are these two compatible? Thanks