Running Scheduled Crystal Reports for Multiple Customers!

Hi,
We are trying to accomplish what we felt was a very common practice with reports.
We have CR 2011, CR 2011 Enterprise, CR Server 2011.
What we are trying to accomplish is very simple.
Currently, I have a prompt in my report that prompts me with a dynamic list based on a small sql statement my report, it provides a list of individual customer and their id's. It takes that ID , puts it into another SQL statement in the command and generates just that customers data. it works perfectly!
What we are trying to do is use crystal server 2011 to take that report in question, schedule it, and have it run for each of the dynamic customer id's that I previously used when it prompted the screen.
The reports cannot use multiple values as we only want each customer data to be included in the report.
We need to have the scheduler run this report for our 10 different customer idu2019s and send it to their individual email addresses at a scheduled time each day.
Is this possible? This has to be a very common request of reporting tools.
If SAP software cannot do it, is there a 3rd party software that will allow our reports to be ran in the way I am wanting?

Hi Rsheppick,
Within CR Server you can use the publication functionality to create a publication and schedule this to external customers - for this you would have to use a dynanic recipient list to map the customers email id's to a field in the source report.
The workflow is described in the online Publication document, accessible at the SAP Support site.
I hope this is a very helpful answer to you.
Kind regards,
John

Similar Messages

  • How to schedule one report for multiple company code?

    How you can schedule reports in BW 3.5? Suppose I need to schedule one report for multiple company code, how can you do that and notify the users? I do not want to send multiple emails to the same user if the report runs for 20 times (for 20 different companies).
    points are given for ASAP replies.
    Thanks in advance
    Peter

    Dear Peter,
    Try to restrict the Company Code with  those 20 values and schedule.
    Regards,
    Ramkumar.

  • Scheduling Crystal Report in BO Enterprise -- running Failed with an error

    Hi all,
           I have scheduled a crystal reprt which is published in BO Enterprise. I have scheduled such that it should run right now. when i choose schedule, in the History screen of that particular Report Document, it  is showing the status as Failed.
           I cecked the Instance Details of that particular instance in History Screen, it is giving me this error message:
    " Error in File ~tmp1f905fddf0fb274.rpt: Unable to connect: incorrect log on parameters ".
           I have choose ' set to null ' to all parameters in the Parameteers Screnn while scheduling, as all the parameters are optional.
    Please suggest how to go ahead with this error. I am new to BO Enterprise, I have to schedule crystal report in the Enterprise.
    Thanks in advance !

    hey i got this error resolved by giving server details in Data Base Configuration screen.

  • Opening multiple reports in Crystal Reports for VS causes database connect limit to be reached.  Seems to be no way to force Crystal Reports to close database connection (other than exiting application)

    I am working on upgrading an application that has been in use for many years.  The application is written in VB6 and I have been tasked with upgrading the current application to Crystal Reports for Visual Studio.  I am using Crystal Reports for VS Version 13.0.12.1494.  The system's database is a Sybase SQL Anywhere 16 database with an ODBC connection using integrated login.  Each of the reports has the database connection set up from within the report.  There is only once database server, so each of the reports are pointing to the same DB.  The database server is currently installed as a "Personal Server" with a limit of 10 connections. 
    I have implemented the CR viewer as part of a COM-callable wrapper that exposes a COM interface for VB6 to interact with.  Inside of my viewer component is a Winform that embeds the Crystal's Report viewer.  The COM interface basically maps the basic Crystal apis to methods that the VB6 can call (i.e., Load Report, Set Field Text, Update SQL Query, etc).  This architecture is working as designed and the reports are displaying correctly and responding correctly to changes in queries, etc.
    The issue is that after I open 9 reports, the tenth one will respond with an error indicating that the database connection limit has been reached.  The database connections used by the reports aren't released until after the application is closed.  The application is designed for a secure environment that prohibits the non-administrative user from accessing the systems desktop, so asking the user tor restart the application after 10 reports isn't a viable option.
    I have checked and database connection pooling is turned off for the SQL Anywhere 16 driver.
    I have been digging on this for a few days and have tried adding code in the FormClosed event to close and dispose of the Report Document as follows:
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    reportDoc.Close();
    reportDoc.Dispose();
    GC.Collect();       // Force garbage collection on disposed items
    I have also tried the following (as well as maybe 20 or so other permutations) trying to fix the issue with no success.  
    ReportDocument reportDoc= (ReportDocument) crystalReportViewer1.ReportSource;
    foreach (Table table in reportDoc.Database.Tables)
         table.Dispose();
    crystalReportViewer1.ReportSource = null;
    reportDoc.Database.Dispose();
    reportDoc.Close();
    reportDoc.Dispose();
    reportDoc = (ReportDocument)crystalReportViewer1.ReportSource;
    GC.Collect();       // Force garabe collection on disposed items
    Any ideas or suggestions would be greatly appreciated.  I have been pulling my hair out on this one!

    Hi Ludek,
    Thanks so much for the quick reply.  Unfortunately I did not have time to work on the reporting project Friday afternoon, but did a quick test this morning with some interesting results.  I'm hoping if I describe what I'm doing, you can show me the error of my ways.  This is really my first major undertaking with Crystal Reports.
    If I simply load the report, then close and dispose, I don't hit the limit of 10 files.  Note that I do not logon manually in my code as the logon parameters are all defined within the reports themselves.  The logon happens when you actually view the report.  Loading the report doesn't seem to actually log in to the DB.
    What I did was create a very simple form with a single button that creates the WinForm class which contains the Crystal Viewer.  It then loads the report, sets the ReportSource property on the CrystalReportsViewer object contained in the WInForm and shows the report. The report does show correctly, until the 10 reports limit is reached.
    The relevant code is shown below. More than I wanted to post, but i want to be as complete and unambiguous as possible. 
    This code displays the same behavior as my earlier post (after 10 reports we are unable to create another connection to the DB).
    // Initial Form that simply has a button
      public partial class SlectReport : form
            public SelectReport()
                InitializeComponent();
            private void button1_Click(object sender, EventArgs e)
                ReportDocument rd = new ReportDocument();
                ReportForm report = new ReportForm();
                try
                    rd.Load(@"Test.rpt");
                    report.ReportSource = rd;
                    report.Show();
             catch (Exception ex)
                  MessageBox.Show(ex.Message);
    // The WinForm containing the Crystal Reports Viewer
        public partial class ReportForm : Form
            public ReportForm()
                InitializeComponent();
            private void Form1_Load(object sender, EventArgs e)
                this.crystalReportViewer1.RefreshReport();
                this.FormClosed += new FormClosedEventHandler(ReportForm_FormClosed);
            void ReportForm_FormClosed(object sender, FormClosedEventArgs e)
                ReportDocument rd;
                rd = (ReportDocument)crystalReportViewer1.ReportSource;
                rd.Close();
                rd.Dispose();
            public object ReportSource
                set { crystalReportViewer1.ReportSource = value; }
    Again, any guidance would be greatly appreciated. 

  • 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.

  • Can not view/schedule Crystal Reports in new BOE XI 3.0 Installation

    Hello,
    I'm having an issue on a brand new installation of BusinessObjects XI 3.0 on AIX 5.2 (using WebSphere 6.0). Installation went smoothly and migration went fine. Can log in, pull up CMC, InfoView (all other apps). But scheduled Crystal Reports (as well as viewing Crystal Report thru InfoView) are failing with the following errors (which to me seem interrelated):
    *(1) Error in File ~cec0c55d91e0e015.rpt: The request could not be submitted for background processing*
    *(2) Error in Report XXX: Failed to load database information*
    *(3) An error occurred while creating a subprocess in the processing server. [RCIRAS0604]*
    These three errors indicate to me that the report engines are having issues opening the files, pulling the data and generating the reports. We've checked to make sure that the account that BOE is running under has all the permissions it needs - and it has.
    I just turned on tracing (-trace) on the report job processing servers and I'm watching the logs as I retrace my steps...
    Any ideas? Would appreciate any feedback...
    Thanks,
    Will

    Turns out this is a pretty nasty issue on Unix environments. Being that the BOE application is developed on Windows then ported to Unix environments, the services (daemons) still end up depending on an emulated registry (MainWin) sort of like in a Windows environment.
    For some reason (we're still trying to figure this out), the BOE registry entries got corrupted and then started preventing the processing servers (which in the case of CR ultimately depend on  CRPE - Crystal Reports Print Engine) from opening up and processing CR files.
    We engaged BusinessObjects/SAP support and have been able to resolve this issue on our test AIX system. The resolution included deleting all the mainwin (mw) tmp directories and files in the root temp directory and also in the
    /bobje/enterprise120/aix_rs6000/crpe>
    directory. Then we stopped all BOE services and reran the MW script to regenerate registry entries. This repair was a pretty intricate multi-step process. The SAP Technical Rep who worked on this case is writing a knowledge base article (an SAP note). Once I get details, I'll update this post.
    The good news about this issue is that the upcoming SP1 of XI 3.0 removes the dependency on the mw registries...
    Will

  • Scheduling Crystal report from Infoview portal doesn't show up data

    "The crystal report is based on a SAP BI query. The parameters of the report are basically the parameters(SAP variables) of the SAP BI query. When we run the crystal report in the CR Report Designer tool, it runs fine showing all the data correctly. Then we published the crystal report to the Crystal Enterprise Server from the SAP BI system. Through the Infoview portal, the user clicks on the 'Schedule' link for the report and sets the parameters. When the 'Schedule' button is clicked, it runs successfully but no data is seen in the report except for the template. But under the same report, in Infoview portal, if the user selects "View" link, sets the parameters and then clicks the 'Execute' button, it runs successfully showing all correct data.
    Dont understand why it works for 'View' link but doesn't work for 'Schedule' link. Is there any setting that needs to be made for this?"
    Thanks in advance,
    Sri

    Once you tick the schedule button the History window opens and you should see your instance. Status is usually pending and after a refersh (scheduled for run now) you should get the status running/successfull or failed. What is your status here and what happend if you tick on the instance once you get the status successfull?

  • Publishing Crystal Reports for Enterprise error

    When I try to publish a Crystal Reports for Enterprise report, using Publication options, in order to send it by email to three of my users,  it shows the following error:
    2014-07-03 10:20:32,390 ERROR [PublishingService:HandlerPool-1] BusinessObjects_PublicationAdminErrorLog_Instance_16070 - [Publication ID # 16070] - Scheduling document job "Users - with Logon Events" (ID: 16,077) failed: Exception in formula '{@Record_Selection}' at 'and (
    ({Auditing.Events\User Name} = "Larry") or ({Auditing.Events\User Name} = "Curly") or ({Auditing.Events\User Name} = "Moe")
    The remaining text does not appear to be part of the formula. (CRS 300003) (FBE60502)
    [3 recipients processed.]
    It is weird because the report is one of those that are by default used for Auditing and it runs perfectly when I run it manually or by Schedule. The problem is when I include it in a Publication, so it can be filtered automatically based on the list of users.
    I tried with another of those reports that come with Auditing, and it has the same problem. Is it a bug? Are you able to replicate this error in your environment? I'm using Crystal Reports 2013 sp3.

    Hi Abhilash,
    I am able to open and edit other reports on the server without problem.  I believe that they are the same version and pack.  Here are my versions:
    CR for Enterprise Version 14.1.3.1257, Build 2013 Support Pack 3.
    SAP BusinessObjects BI Platform 4.1 Support Pack 3, Version 14.1.3.1257
    When CRE displays an error like this, is there further information in a log or recorded anywhere else?  How does one go about finding details?

  • Crystal reports for Eclipse (CR4E)  - taking long time to load

    HI
    We have used your Crystal reports for Eclipse (CR4E) but it is taking long time to load if the record count is more than 3 million
    Our architecture is we are using Oracle DB and web sphere application server both are running on SUN server,
    If we buy original version it will work fast?
    Or do you  have alternative solution for this, this one to implement one of our major client

    You have 3 million records, this is going to take time to process.  Also, you don't define what is meant by a long time.  Are we talking a couple of minutes, or something more like 20 minutes? 
    The real question is, do you really need the report to bring back 3 million records?  Could you do any filtering of the data to reduce the number of records being brought back?  Also, 3 million records could vary.  is each record a single field, or is it multiple.   The more fields, the larger the result set.
    Another thing you want to look at, is just how long is the query taking to run against the database.

  • Crystal Reports for VS 2010 corrupts "some" Thai chars on PDF Export

    Any Thai character that contains a symbol above it (like an umlat in English) gets corrupted when exporting a report to PDF, yet the same report can be exported to Excel or Word without any issue.
    See the following character - once with a symbol above one without:
    ล้ ล
    The PDF file will not display the first character - instead it displays the second character overlayed on a box (like you get when the font does not contain the required character)
    If I create a text field in the Crystal designer, it does the same thing - but when I right click and edit, it displays correctly - until I click out of the field when the problem returns. So this suggests the problem is before the PDF export and maybe with the designer - but then why does it work if i export to Word?
    I have tried may different fonts - including those specifically recommended and used by the Thais, but all have the same issue.
    My work around at the moment is to use Word instead of PDF, as I do not believe there is a configuration change I can make that will resolve the issue, but would love to hear otherwise.
    I am using Crystal Reports for Visual Studio 2010 version 13 running on Windows 7 x64. I have a beta 2 download of v14, but it requires a key code which i do not have, so as yet ahave been unable to verify if this issue is resolved in that version.
    if anyone knows otherwise, please let me know
    Cheers
    Jed

    Thanks Don,
    (Good to know that version 13 I am running is the correct one)
    I have tried many UTF-8 fonts, with largely similar results, but this testing here is with Cordia New - a font largely aimed at Thai Language and the one our Thai customers always use.
    I have confirmed that right click and export from the IDE still shows the box on certain characters - but note that the box does not replace these characters (as would be the case if they were missing) but rather overlays them - which is why my subject includes the word 'corrupt'
    All testing so far in on my Windows 7 development machine - so no user issues are involved
    The code if fairly simple at this stage - define and load a data set - then link it to the report and use the built in export to disk functions:
                    OutboundSummary rpt = new OutboundSummary();
                    rpt.SetDataSource(outboundSummary);
                    string tempDir = Environment.GetEnvironmentVariable("TEMP") + "
                    string filename = tempDir + DateTime.Now.ToString("yyyy-MM-dd HH-mm-ss");
                    rpt.ExportToDisk(ExportFormatType.PortableDocFormat, filename + ".pdf");
                    rpt.ExportToDisk(ExportFormatType.WordForWindows, filename + ".doc");
    If anyone wanted to verify, here is a piece of Thai text that will show the problem
    ผลรวมแฟกซ์ที่ยังอยู่ในคิว
    To better illustrate the problem, the attached image will help
    [IMG]http://i55.tinypic.com/hweh42.jpg[/IMG]
    I am coming to the conclusion that perhaps these characters are not single characters - at least do not appear as such with each font - and perhaps Windows does some magic to make them appear correctly. I can see that Word automatically converts them to a suitable font - i.e. a mixed language text file imports into word with different fonts for different languages - and you cannot change the font to one that does not support the language. I can specify Arial from Crystal which does not contain thai characters at all - but export to word and they show correctly.
    Crystal spits the data out and Word converts it correctly, but acrobat does not - so maybe it is their fault?
    I have all language packs on my machine - and doing Chinese next suggests that even if I find a thai font that worked, it would not work in chinese, so am thinking word or rtf might be the winner.
    Cheers
    Jed

  • [CRS2008] Scheduling a report to multiple file output in single schedule

    Hi,
    Is there any way in CRS2008 / Infoview to scheduling one report to multiple file output in one schedule?
    i thought maybe it can, but still not found the way.
    Says,
    I have one report say "Report by Branch.rpt", the parameter prompt is BranchCode.
    I want to generate the "Report by Branch.rpt" for every BranchCode in separate output generate file. Like, "Report by Branch.rpt" for BranchCode A, or "Report by Branch.rpt" for BranchCode B.
    So, if i run the schedule, it will generate several report based on the report parameter given.
    Hope, would find the way.
    Thanks in advance.
    Regards.
    Edited by: fritzwijaya on Sep 20, 2010 3:47 AM

    For anyone still looking, the job can be seen under the Job History option on the home screen, but not on the Job History option under the report in the catalog - i am assuming this is becasue somehow im not referencing the report correctly in the ScheduleReport request message.
    Also, the jobId returned is a parent jobId, which when used to poll the job status, always returns a 'Scheduled' status. Im now adding 1 to this ID to get the status of my job - this returns the correct status of 'Success'.
    Still hoping someone has an idea on the getDocumentData question...?
    Thanks.

  • Scheduling Crystal report from BOE

    Hi,
    I have a Crystal report (based on ECC Function module) which doesn't retrieve data when I schedule it from BOE (infoview).
    I have Integration kit installed, and the crystal report works fine when i execute it manually.
    I think it is an issue with connectivity/authentication or something. I don't have a service user id created. (to run the Crystal report i use my ECC user id which has authorization to S_RFC etc)
    Can you tell me the steps that i need to follow before i am able to run my ECC crystal report from BOE/infoview?
    Thanks, Arka

    Hi,
    the user that is scheduling the report needs to have the same authorization like viewing the report. you can also see the list of detailed authorizations required in the documentation for the SAP Integration Kit in the chapter authorizations.
    all product documentation is available on help.sap.com
    regards
    Ingo Hilgefort

  • Crystal Reports for Eclipse vs. Crystal Reports Developer

    We are developing a Java web application for internal use.  Since we have some people at the company who are familiar with Crystal Reports, we'd like to have them write reports that we can display through our application.  Crystal Reports Server seems like overkill for this project, but the <a href="http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/devsuite.htm#en/JRC_SDK/">JRC</a> sounded like a good fit.
    I have been evaluating <a href="http://www.businessobjects.com/products/reporting/crystalreports/developer/default.asp">Crystal Reports Developer</a> and trying out the <a href="http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_web_samples.zip.asp">JRC samples</a>.  The samples don't use the tag library.  Instead, they show how to set session variables and redirect to a viewer JSP which contains a bunch of Java code to use the CrystalReportViewer.
    The samples are so much more complex than the code created by Crystal Reports for Eclipse, which simply uses the tag library:
    <%@ taglib uri="/crystal-tags-reportviewer.tld" prefix="crviewer" %>
    <crviewer:viewer reportSourceType="reportingComponent" viewerName="myreport-viewer" reportSourceVar="myreport" isOwnPage="true">
    <crviewer:report reportName="myreport.rpt" />
    </crviewer:viewer>
    I assume that I should be able to use the same tag library approach without using Crystal Reports for Eclipse, but I haven't seen any tutorials on it.  I'm trying to understand whether I should purchase Crystal Reports for Eclipse instead of Crystal Reports Developer.
    This is the difference, as I understand it:
    Crystal Reports Developer gives you the stand-alone Crystal Reports Designer and the right to run the JRC on an internal server.  It costs <a href="http://store.businessobjects.com/store/bobjects/DisplayProductDetailsPage/productID.40434600">$595</a>.
    Crystal Reports for Eclipse Standard provides a free report designer built into Eclipse.  It also includes the JRC for use on an internal server.
    Crystal Reports for Eclipse Professional provides "a more powerful runtime engine" with the right to run it on one internal server.  It costs <a href="http://store.businessobjects.com/store/bobjects/DisplayProductDetailsPage/productID.52068100">$495</a>.  Is this the same JRC provided with Crystal Reports Developer?
    If the "powerful" JRC is the same as Crystal Reports Developer's JRC, could I install Crystal Reports for Eclipse Standard to take advantage of the Eclipse integration and the built-in designer, but use the more powerful JRC from Crystal Reports Developer, which would also give me the stand-alone designer?

    <p>Hi there,</p><p>     If you are planning on deploying a JRC application then you should definitely be using Crystal Reports for Eclipse for your runtime engine. It is the latest version of the JRC and includes many updates not available in Crystal Reports Developer.</p><p>As for "power" the JRC included in CR Developer is on par with the JRC available in the Basic edition of Crystal Reports for Eclipse. The Professional edition of Crystal Reports for Eclipse provides the most powerful version of the JRC available.</p><p>With the release of Crystal Reports for Eclipse, Business Objects is setting the groundwork for separating Developer needs from the Report Author needs.</p><p>A professional report author will require a professional report design tool. For these users we are recommending that they purchase Crystal Reports Professional.</p><p>The developer, on the other hand, generally needs the SDKs and a toolkit to assist with building applications. We believe that these should be available at no cost to the developer, only charging when the application is deployed (in this case a CR4E Pro license). This is different from the current model with Crystal Reports Developer where we have combined a professional report designer plus the required runtime.</p><p>So, to summarize, definitely use Crystal Reports for Eclipse for your application runtime and have your report authors puchase Crystal Reports Professional. If you need a more powerful engine, access to technical support or plan to deploy on multiple servers then I would recommend purchasing the Crystal Reports for Eclipse Professional license for your development purposes.</p><p>As for some tutorials on creating viewer pages, the integration in Eclipse provides a very simple way of accomplishing this. I would suggest reading the section titled "<strong>Creating a New Viewer Page</strong>" in our Getting Started Guide found at the following URL:</p><p><a href="/node/320"><strong> http://diamond.businessobjects.com/node/320</strong></a></p><p>Let me know if you have some follow-up questions. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><strong><br /><a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a></strong>           </p>

  • Crystal Reports for VS 2010 "Recent Pages" history is erased in IE 8

    Hi,
             We have a reporting application developed in Asp.Net 4.0 and Crystal Reports for VS2010. When application displays a report and user tries to navigate report pages, for some reason in IE 8 the "Recent Pages" history only keeps 2 most recent pages of the report. The rest of the pages are gone from the "Recent Pages" history in IE 8.
            The "Recent Pages" history is only being erased when navigating report pages using Crystal Reports viewer for VS2010. When I navigate to other pages of the application or any other website, those pages are kept in "Recent History".
            For example if a report contains 10 pages and user goes from page 1 to page 5, only page 5 and page 4 are in "Recent Pages" history of the browser.
            When I run the application in Google Chrome the "Recent Pages" history is not erased and I can navigate to the pages using "Back" and "Forward" buttons of the browser.
    When the application is using Crystal Reports for VS 2005 and .Net 2.0, multiple pages are kept in IE 8 "Recent Pages" history not just the last 2 most recently visited.
    Any help will be greatly appreciated.
    Thank you,
    Vlad.

    OK. Threw a report into a web app and ran it. The only way I can reproduce the behavior is as follows:
    Run a report (mine has 7 pages)
    Page through to page 5
    Go to recent history - I see all pages there from 1 to 5
    Click on page 1
    I get page 1 (but the page counter on the viewer remains as 5 of 5 )
    Page through to page 7 using the forward page button of the viewer
    Now I get the last 2 pages only
    Is this the behavior you are seeing?
    - Ludek

  • Crystal Reports for Eclipse - Licensing

    Hello,
    My company is looking for a reporting solution which can easily be integrated into an existing J2EE web application. CR4E seems to be a very interesting candidate but the license terms are a bit unclear to me.
    It is mentionned on your site that the Eclipse plugins needed for development + the runtime JRC are available free of charge. However, this is contradicting the license terms in section 4.9 (Crystal Reports for Eclipse) of the [Business Objects License Agreement|https://boc.sdn.sap.com/node/449]:
    Crystal Reports for Eclipse may be licensed in one of the following ways: 1) In the form of a no-fee Development License which may be downloaded at www.businessobjects.com/eclipse following completion of the required registration information; or 2) in the form of production use ERE Licenses pursuant to your completion and submission of appropriate ordering documentation and payment of applicable license and Support fees.
    1) This section seems to indicate that the purchasing of an ERE license is required to use the product in production. Could you clarify this?
    2) Assuming that CR4E can be used in development and production free of charge, I have seen that a keycode is required to remove watermarks from the report and to be able to run the JRC. The website mention that a free registration is needed to obtain this keycode. However, I was able to download the keycode from the site without any registration. Can we use the keycode I downloaded for multiple development environments and in the web applications we are going to deploy in production? Can the keycode expires? What is its purpose if it can be obtained without registration?
    Thanks for your help and clarifications

    Did you get the keycode from this page:
    [https://boc.sdn.sap.com/node/462|https://boc.sdn.sap.com/node/462]
    If so, then that's the Crystal Reports for Eclipse - Basic keycode.  No expiry. Licensing described above applies.
    Note that this keycode comes with 2 Concurrent Processing License (CPL), meaning that it services two concurrent report requests simultaneously, and further requests are queued.  A "report request" isn't per-report, per-session or per-user, but any request for processing by the JRC - any clicks on the DHTML viewer for next page, last page, refresh, etc takes up a CPL till a result is returned to the client.
    Note that CR4E version 1 JRC (jar version 11.8) allows you to use the Crystal Reports Developer XI Release 1 or Release 2 keycode.  If you use these keycodes, then you get 3 CPLs.  However, different licensing will apply, as described here:
    [https://boc.sdn.sap.com/node/1523|https://boc.sdn.sap.com/node/1523]
    comparable with licensing for CR.NET
    Sincerely,
    Ted Ueda

Maybe you are looking for

  • Reset previous year cleared item

    Dear experts, i am trying to reset previous year vendor cleared document in transaction FBRA. while doing system is giving message "Archiving has not finished" message no:F5682. is there any transaction code is there to reset previous year cleared it

  • Open a file in a jar file

    Hi, I've an applet (class Cncj.class) that opens a file ex1.txt in the directory examples: getCodeBase().toString() + "examples/ex1.txt"; All works ok if I run the applet without compress but if I make a jar file: jar cvf Cncj.class examples a except

  • 3Gs upgrade to iOS 5

    I still have a 3Gs and planning to upgrade to iOS 5, are there any major issues with the upgrades for 3GS?

  • My Airport Express Won't Work

    I need help! I have airport express and it won't work. I have tried the directions step by step, resetting it, going to admin utility and network assistant, but, to no avail. I do have a secure network set up but airport express can't find it. Questi

  • Canon 5D Mark iii stopped recording video!

    I was shooting on my new Canon 5d Mark iii yesterday, recording to a 16SD card and using a RODE shotgun mic for sound when a weird image appeared on my live view.  Towards the right of the screen these blocks started piling up.  When there were 4 blo