Interface Crystal Report Server with Lotus Notes

Hi,
Does "Crystal Server 2011" or "Crystal Report Server 2008" provides an interface with Lotus Server so that user can schedue and deliver report to end user through Lotus Domino? (ie: user can receive reports in an email through Lotus Notes)
Thanks!
Albert LUO

Moved to BOE/CRS Admin forum

Similar Messages

  • Integrate Crystal Reports 2008 in Lotus Notes 8.x

    We allready use Crystal Reports 2008 with Lotus Notes 8.x trough NotesSQL 8.5. This works fine.
    Now we want integrate Crystal Reports 2008 directly in Lotus Notes 8.x. so that the user can start reports directly from his Lotus Notes Application. Of course, data has to be retrieved in realtime (not with data stored in the report) and he should be able to pass parameters from a lotus notes form.
    All informations we found are quit old (Crystal Reports 8.5 and Lotus Notes R5). Does anyone has an idea how to start and where to find new documentations? Is there maybe even a sample application availabl?
    Any help is welcome!

    Hello Alain, I have the same troubles. I have some databases with Crystal Reports 9. But no solution for Crystal Report 2008.
    Which dll's are needed?

  • After install Crystal Report Server 2011, can not access control tools

    Afte install Crystal Report Server 2011, can not access control tools from web or from application.
    My server OS is Windows 2008 R2 SP1. I follow the default setting. How to fix it?
    Error message is above.

    Is Tomcat started?  On your Start menu you should have an option to get to "Tomcat  Configuration" or, under the CRS menu you can run the "Central Configuration Manager" to start Tomcat.
    What URL are you using to connect to the web app?  By default Tomcat runs on port 8080 so your URL should look something like this:  "http://<servername>:8080/BOE/CMC" or "http://<servername>:8080/BOE/BI".
    If Tomcat is running and you're trying to access it from another computer, check to see if the Windows Firewall is turned on for the server - if it is, turn it off for "Domain" access.
    If Tomcat won't start, go to the folder where Tomcat is installed and then look in the "logs" folder.  There should be a file called "stderr.log" which you can open in Notepad to see what types of errors might be occurring (you can ignore any errors having to do with "persisted sessions".)  If there are other errors, post in the BI Platform space to get assistance.
    -Dell

  • After install Crystal Report Server 2011, can not access control tool

    After install Crystal Report Server 2011, can not access cntrol tool from web or from application. My server OS is Windows 2008 R2 SP1. I follow the fedault setting. How to fix it?
    Error message:

    Seems like webapps are corrupted, Just redeploy the webapps.
    refer the below thread to do the same.
    http://scn.sap.com/thread/3400477

  • Crystal Reports Server 2008 dispose not closing document

    Hey everyone,
    I;m running some reports through Crystal reports 2008 server (no service packs) using the RAS sdk and Java.
    This was working swimmingly for a while until yesterday when the server hosting the RAS and app server fell over. I tracked it down to a problem with the RAS server. The error i got in my logs was General Exception, Report SDK Exception Not enough memory for operation.  I reran the process and when i watched task manager the memory being allocated to crystalras.exe went through the roof! it went from 50k to 1.8g of ram in under 10 minutes.
    I tried lots of the other suggestions in here for the errors about memory that are similar to mine (increasing the heap memory etc.) and none of them worked.
    One thing i noticed though is that when I run the process and watch the metrics page of the RAS server on the management console the number of Open documents does not decrease even though i am 100% totally and utterly calling .close and .dsipose after every report i open. Definitely. Ive debugged it a million times and it is calling these methods. It is successfully releasing the connections fine but does not seem to releasing the open documents. After the Open documents metric went down to 0 (im presuming after a timeout) the memory that crystalras.exe was reduced. I then  changed the timeout tag in CRConfig.xml to 1 minute to see would this help out any but the open documents did not timeout any faster.
    Would i be right in thinking that these open documents would be causing my problem of the aggregated memory? Im at my wits end here so any piece of help is greatly appreciated!

    Hi Ted,
    Thank you for getting back to me, i was on vacation there for a while so that is why i didnt get back to you.
    When I call reportClientDocument.isOpen() just before i dispose of the report it is true and after i dispose of it it correclty returns false.
    I am really stressing out over this as we are reduced to running 500 reports through the server (one after another) and then stopping the process and restarting the RAS server and then running another 500 reports.
    crystalras.exe gets up to about 2g of ram consumed for only 500 reports.
    I even changed some of the timeout settings on the settings page of the management console to see would they timeout and release the memory but alas it didnt release as much as a byte. I left it for 3 days and it didnt deallocate one piece of memory.
    Im currently investigating is there some way from my code that I can restart the RAS server, either through the SDK or through a windows process or scheduled task.
    Ted, as far as i can see there are no service packs for Crystal Reports Server 2008, is that right? when i go to the downloads page there only ones listed for release X1.
    Thank you for your help.
    J.

  • How to use Crystal Report Server with Crystal Reports for Eclipse

    Hi,
    is it possible to use Crystal Reports for Eclipse with the Crystal Report Server
    like i can do it in Crystal Reports.
    For Example open a Report file directly from the server edit and save there.
    Thanks
    Thomas

    Yes, you can use the CR Server product in your Eclipse project.  However, you will need to use the RAS SDK in your project instead of the CR4E SDK. 
    For more information about the RAS SDK, visit the DevLibrary.
    http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm
    -MJ

  • Crystal Report formula with datediff not working as expected

    We need a Crystal Report formula to display the number of seconds the oldest arriving call has been waiting.  Across multiple resources that can each have an "oldest call".  The database stores a datetime value for the time the oldest call arrived.  If there are no waiting calls, then this field is NULL.  (MSSQL database).  It seemed reasonable to implement this in a formula that 1) discovers the minimum of "oldest call" timestamps in the selected records, and 2) to use "datediff" to produce the difference (in seconds) between the "oldest call" timestamp and current time.
    The first attempt at this relied on "implied" iteration that could be done within a formula.  Something like:
    data: OLDESTARRIVALTIME
           null
           '2014-06-14 08:08:08.000'
           null
          '2014-06-14 08:07:55.000'
           null
    whilereadingrecords;
    datetimevar minArrival;
    if isNull({SVCCLASSMEASURES_VW.OLDESTARRIVALTIME}) = False
                   and minArrival < {SVCCLASSMEASURES_VW.OLDESTARRIVALTIME} then
         minArrival := {SVCCLASSMEASURES_VW.OLDESTARRIVALTIME};
    DateDiff("s", minArrival, {SVCCLASSMEASURES_VW.UTCDATE})
    We tried storing the values of OLDESTARRIVALTIME in an array.  We could see it iterating, but the values in the array only contained
    the column value from the first record.
    This was to solve the problem of screening null values and producing the minimum of the set.
    Since that didn't work (and the web articles seemed to imply this would iterate over all the records, we tried another approach.  This
    time we set NULL timestamps in the table to a timestamp far in the future, so that we could directly apply "minimum" to produce
    the correct "begin" for datediff.
    data: OLDESTARRIVALTIME
              '2030-01-01 00:00:00.000'
              '2014-06-14 08:08:08.000'
              '2030-01-01 00:00:00.000'
              '2014-06-14 08:07:55.000'
              '2030-01-01 00:00:00.000'
    datetimevar minArrival = minimum({SVCCLASSMEASURES_VW.OLDESTARRIVALTIME});
    datetimevar minUTC = minimum({SVCCLASSMEASURES_VW.UTCDATE});
    if minArrival < minUTC then
         DateDiff("s", minArrival, minUTC)
    else
         0
    (minUTC would be current time in UTC)
    So, to start things off, the last formula produces negative numbers!  They hover in negative seconds within a negative minute (-33, -45, etc.).
    That's inconceivable, considering the test for minArrival < minUTC.  Both of the fields are "datetime".
    As it turns out, in the near term, it's most important to get the second formula working.  And, of course, insights into getting the first
    formula to work are welcome as well!
    Have we run into some weird behavior of the "DateDiff" function?
    Thanks!

    If DateDiff is always returning a negative number you could try swapping the dates around in the call to DateDiff - it should look like this:
         DateDiff("s", minUTC, minArrival)    
    Or you could use the Absolute Value of the calculation:
         Abs(DateDiff("s", minUTC, minArrival) )
    As for your first formula, you need to initialize the variable to a value prior to using it in the comparison.  If you don't, its value is null and comparing it against a value won't work.  (See What is Null and Why is it Important for Crystal Reports | SAP BI BLOG for a blog that I wrote about working with nulls in Crystal.)
    You should change your existing formula to something like this:
    whilereadingrecords;
    datetimevar minArrival;
    if OnFirstRecord then minArrival := DateTime(2013, 1, 1, 0, 0, 0);
    if not isNull({SVCCLASSMEASURES_VW.OLDESTARRIVALTIME})
                   and minArrival > {SVCCLASSMEASURES_VW.OLDESTARRIVALTIME} then
         minArrival := {SVCCLASSMEASURES_VW.OLDESTARRIVALTIME};
    Note how I changed the If statement.  Also, you want to replace minArrival with the field value if the field is less than the current value of minArrival - so you need to use ">" instead of "<" in the comparison.  Place this formula in the details section.  It will now show anything because of the semi-colon on the end.  This will ensure that it gets evaluated for every record.
    Now, create a second formula that looks like this:
    whileReadingRecords;
    datetimevar minArrival;
    DateDiff("s", minArrival, {SVCCLASSMEASURES_VW.UTCDATE})
    Place this formula in a footer section - it will not work in a header section.  If you need it in a header section you might be able to take the "whilereadingrecords" off of both formulas and use the "Maximum()" summary function to get the correct value.
    -Dell

  • Crystal viewer is empty (Crystal Report Server with Visual Studio)

    Hello everyone,
    I've some issues to display a basic report from a Crystal Server 2013 and Visual Studio 2010
    Below, the code:
    WebForm1.aspx.cs
    CrystalReport's DLL are in revision 14.0.3500
    using CrystalDecisions.Enterprise;
    using CrystalDecisions.Enterprise.Viewing;
    using CrystalDecisions.ReportAppServer.Controllers;
    using CrystalDecisions.ReportAppServer.ClientDoc;
    SessionMgr sessionMgr = new SessionMgr();
    string username = "Administrator";
    string password = "password";
    string server = "server-name";
    string auth_type = "secEnterprise";
    EnterpriseSession enterpriseSession = sessionMgr.Logon(
                     username, password, server, auth_type);
    EnterpriseService enterpriseService = enterpriseSession.GetService("InfoStore");
    InfoStore infoStore = new InfoStore(enterpriseService);
    enterpriseService = enterpriseSession.GetService("RASReportFactory");
    Object psrfObject = enterpriseService.Interface;
    ReportAppFactory psReportFactory = (ReportAppFactory)psrfObject;
    string queryString = "Select * From CI_INFOOBJECTS "
                    + "Where SI_PROGID='CrystalEnterprise.Report' "
                    + "And SI_NAME Like 'TestRapportTexte'";
    InfoObjects infoObjects = infoStore.Query(queryString);
    InfoObject infoObject = infoObjects[1];
    ReportClientDocument client = new ReportClientDocumentClass();
    client = psReportFactory.OpenDocument(infoObject.ID, 0);
    CrystalReportViewer1.ReportSource = client;
    WebForm1.aspx
    <CR:CrystalReportViewer  ID="CrystalReportViewer1" runat="server" AutoDataBind="True"
                            Height="550px" Width="1300px" BestFitPage="False"/>
    The project has 7 references from Crystal:
    CrystalDecisions.CrystalReports.Engine
    CrystalDecisions.Entreprise.Framework
    CrystalDecisions.Entreprise.InfoStore
    CrystalDecisions.Entreprise.Viewing.ReportSource
    CrystalDecisions.ReportAppServer.ClientDoc
    CrystalDecisions.ReportAppServer.Controllers
    CrystalDecisions.Web
    Actually, I have no error and no exception but the 'CrystalReportViewer' is always empty.
    In the C# file, ReportClientDocument client seems OK with the ID and the name of the report.
    Thanks for your feedback

    Hi Marie
    As you are using RAS I'd like you to have a look at a sample application called "NET-CS2003 RAS-Managed BE115 Add Tool-Tip" available for download from here:
    Look at the code as used in the viewer.espx.cs page and pattern your code on that.
    For a summary listing of more sample apps, please see:
    Sample Applications for Business Intelligence Software Developer Kits
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter
    https://twitter.com/SAPCRNetSup

  • Cold Standby Server for Crystal Reports Server...

    Hi there,
    We have the confirmation from Hong Kong SAP that Crystal Reports Server 2008 does not come with any clustering feature as Business Objects Enterprise does. We are to set up a cold standby server for the production server for high availability. Below is our procedures to work it out:
    1) we set up two machines for CRS 2008 with the same licence key and identical hardware; otherwise we clone the production machine to an identical hardware for a cold standby machine
    2) we are using our Oracle instance (same instance for both the production and the standby one) for CRS 2008 repository; we bring the production sever offline and perform the standby server installation of CRS 2008 without resetting the repository Oracle database
    3) we are to use a SAN LUN for storing the reports produced by CRS 2008
    Once the production server does not work properly due to any hardware problem, we switch it off manually and turn on the standby machine and the Crystal Reports service should resume with no repository problem (all the settings) and no loss of printed reports. We would be grateful if you could confirm the feasibility of these procedures. Thanks a lot.
    Regards,
    Jason FU

    Correct, CRS is for a single machine use only, that why it is not as expensive as the full BOE. Talk to Sales to upgrade.

  • Crystal Report Server - SMTP over secured connection (SSL/TLS)

    <p>Hello All,</p><p>Been looking around information on Crystal Reports Server but have not managed to find the information I need. So was wondering if anyone new if it is possible to distribute reports via SMTP over secured connections such as SSL/TLS using Crystal Reports Server?  </p>

    Only if the security is external to BO. our SMPT configuration does not have a built in configuration parameter to encrypt data.
    Regards,
    Tim

  • How to use Crystal Reports XI release 2 Preview with Lotus Notes  Scripts ?

    <br />Hi all,<br /><br /> How to use Crystal Reports XI release 2 Preview with Lotus Notes 7 Scripts ?<br /><br /> <br /><br />Thank&#39;s  <br />

    Hi,
    we are using Lotus Notes and Crystal Reports for preview and printing reports from our Lotus Notes Applications. We use the RDC object model. For previewing the reports we export them in an pdf-file and then start the PDF Reader to show the Preview. This works fine.
    But with Crystal Reports > 11 the RDC Object Model is no longer supportet, so we look for another way to preview and print our reports.
    I try to preview a report build with crystal report XI release 2 in my thick client (Lotus Notes) using java reporting component JRC, this report uses an native xml file as datasource. If the datasource is saved with the report everything works fine, but otherwise I have the following error:
    JRCAgent1 detected an exception: javax.xml.namespace.QName: method getPrefix()Ljava/lang/String; not found
    I also tried the .jars from Crystal4Eclipse. Doesn't work. When I use Eclipse to view the report everything works fine. The class QName exitsts in the jaxrpc.jar and in the xbean.jar, but only in the xbean.jar a Methode getPrefix exists.
    This is what we tried:
    Works fine with RDC. Doesn't work with JRC until now.
    Did this help you ?
    Perhaps you con help me with the JRC, because I'm a java newbee so any ideas could be helpful.
    Oliver
    <p><a href="http://www.cominform.de">www.cominform.de</a></p>

  • Drop down boxes ok in Crystal Reports but not ok in Crystal Reports Server

    I have the following problem with "dynamic dropdowns"
    Initially, I have a Crystal Report (.rpt).  It has two dynamic drop downs. They work
    in both Crystal Reports Designer (preview)  and Crystal Reports Server (right-click-View).
    The first drop down is the result of a rather complex sql query. The second drop down
    is a child of the first.
    I make a small change to the sql "WHERE" clause using the Crystal Reports Designer. It works fine in preview.
    I save (Enterprise mode) to Crystal Server. I use Business View Manager to configure
    the _DC_n object.  (I did notice that the .._DC_n gets incremented by one.)
    The _DF object seems to know about the updated sql so I do not have change it.
    However, when I go to back to Crystal Reports Server, and right-click-View, the
    "dynamic dropdown" is not working properly.  I can not make sense
    of what has been retrieved.
    Please tell me what is most likely to have gone wrong here?  The Business View Manager
    seemed to knew about the sql change. But Crystal Reports Server has
    not responded to the change in the same way as Crystal Reports Designer.
                       ...thank you, Stan

    When you publish a report to Crystal Server, the dynamic prompts are no longer handled in the report itself.  Instead depending on how they're published, they either go away or they're published to the "repository" and managed through the "Business View Manager" (BVM), which is available as part of the Client Tools install.
    To get the dynamic prompt into the repository, you have to check the "Enable Repository Refresh" checkbox at the bottom of the "Save As" screen after you log in to CRS.  However, doing it this way is NOT best practice, especially if you're using the query from the report to provide the data for the prompt.  If you do this for all of your reports, you get a LOT of bloat in the repository objects and it makes the job of migrating from one version of CRS to another MUCH more difficult!
    What I've done in the past to get a simple "sample" prompt published is create a report that just contains the data that I want to have in the dynamic parameter using a single table - this is usually what I call a "lookup" table that has a "code" field and a "description" or "name" field.  I then create a dynamic parameter in that report that just pulls the data from the single table.  I'll publish the report to my favorites with the Repository Refresh enabled.
    I then run the BVM and look for the following objects (default location is under "Cascading Dynamic Prompts":
    <prompt name>_DC - This is the Data Connection for the prompt.  Edit this, enter the password, and set it to "Never Prompt" for the password.  NOTE:  This DC can be reused by multiple prompts.  If you continue to add prompts through publishing Crystal Reports with prompts, you will get MANY of  these that all point to the same database!
    <prompt name>_DF - This is the Data Foundation for the prompts.  When you create a new one, you need to select an existing DC and then either one or more tables or write a command to provide the data for your prompt.  It works much like the Database Explorer in Crystal.  The one that was just saved has all of the information required for the prompt.
    <prompt name>_BE - This is the Business Element.  When you create one, you have to select and existing DF and one or more fields.  You can also create a filter on the data.  This is used to generate the SQL that will be run to provide the data for the prompt.
    <prompt name>_ BV - This is the Business View.  When you create one, you have to select the Business Element.  I'm not sure of the exact purpose of this, but you have to have one in order to set up the "List of Values".
    <prompt name> - This is the List of Values (LOV).  This defines what fields are available for the prompt itself.
    You can create folders to organize these objects so that its easier to maintain.
    To use a LOV that you've defined in BVM to feed data to new dynamic prompts, do the following:
    1.  Connect to CRS from Crystal.
    2.  Create/Edit your prompt.
    3.  Set the prompt to be dynamic.
    4.  Under "Choose a Data Source", select "Existing" and select the LOV from the drop-down list.
    5.  Update the properties in the parameter.
    When viewing or scheduling a report, the dynamic prompts will run through the Crystal Reports 2013 Report Application Server in CRS (it will be named differently if you're not on CRS 2013, but will have "Report Application Server" in the name.)
    -Dell

  • Crystal Reports Server XI R2 - RAS service will not start

    We had a copy of Crystal Reports Server XI R2 running on a Windows 2003 SBS Server and the database running on SQL Server 2000 on the same box. We were forced to upgrade this server Windows 2003 SBS Server 2003 R2 with SQL Server 2005. The upgrade worked fine however after the upgrade we could no longer open reports in infoview.
    We soon realised that the RAS(Report Application Server) service was stopped however we could not start it.
    We tried doing a full uninstall(deleting the directory and registry info) and reinstall several times on the same server pointing to the existing database and trying to create a new database in both MYSql and SQL Server but again the same problem. While our licensing agreement means we can only install it on one server we tried on another and again we had the same issue.
    We see several errors in the event viewer of the server, these are:
    -Unable to create the Corba OSCA factory and register it on the eBus (Source:BusinessObjects_crystalras)
    -Failed to register with the CMS 'Server Name'. Please make sure the CMS is up and running. Attempting an automatic retry. (Source: We see this error show on a fair few of the service after stopping and firing up services, but they seem to disappear)
    -An error occurred while creating a Page Server subprocess.(Source: BusinessObjects_pageserver)
    If I try firing the crystalras executable just for interest sakes I get a "No valid license found for this product" error.
    We thought it may have been a license issue caused by the upgrade but have been told that the license key still appears to be valid.
    Any help is appreciated.

    Hey did anyone ever answer your question, I have exactly the same problem 4 years later, sigh

  • Please help with my crystal reports server 2008 trial setup

    Firstly, if this is in the wrong section feel free to move it. I find this forum is to big to find the information i need, in fact trying to find anything i need on this website is almost impossible. So far not impressed with SAP at all! we download a trial and when we have problems nobody can support us and we have to post in the forums for answers, which i find disgracefull to be honest. So this post is my last attempt of finding the answers to my problems or we are going to forget crystal reports server for good! I was also told that if i wanted help setting this up then i would have to pay, thats not how things usually go when we download a trial of any software!
    Anyway, rant over!!
    Right, we have windows server 2008 and have installed crystal reports server 2008. So far all i have managed to get working is the reports themselves which run and schedule fine. The dashboard and business views are so confusing i just dont get it at all, the manuals dont help either becuase they are rubbish basically. But my first problem is trying to get windows AD authentication working! easier said than done. I have spent 4 days trying to get it working but nothing is happening. this is what i have done so far
    Set up all the options in the CMC to enable AD authentication, mapped a few groups one of which i am a member of.
    Then i setup the krb5.ini file like below (removed my server name and domain name)
    [libdefaults]
        default_realm = DOMAIN.CO.UK
        dns_lookup_kdc = true
        dns_lookup_realm = true
        udp_preference_limit = 1
    [realms]
    DOMAIN.CO.UK = {
        kdc = DC.CO.UK
        default_domain = DOMAIN.CO.UK
    i also have that other file bscLogin which looks like this...
    com.businessobjects.security.jgss.initiate {
    com.sun.security.auth.module.Krb5LoginModule required;
    The server inteligence agent has been set to use the same username as i specified in the CMC which is also the service principal name and the administartion name
    i have set the web config file to use SecWINAD as default, i have also set it to give the option of enterprise, win ad etc in a drop down list
    i have gone round in circles for days following the instructions, and nothing is happening
    Also i dont see any usernames within the groups i have mapped , am i supposed to see any? am i supposed to add them manually?? if so, whats the point in that?
    So now everytime i try to log in i get this error message
    Account Information Not Recognized: Active Directory Authentication failed to log you on. Please contact your system administrator to make sure you are a member of a valid mapped group and try again. If you are not a member of the default domain, enter your user name as UserName@DNS_DomainName, and then try again. (FWM 00006)
    There is also another error message i get, which isnt coming up right now but it says somthing along the lines of could not authenticate at this time (FWM 00005)
    i fail to see what im doing wrong. I shoudl also point out that the username i am using for everything is our own network admin password!
    any ideas on things to check before we give up with this all together?

    Hi Roberto,
    With the changes when SAP took over BusinessObjects the support packaging also changed. It's the way it is now but we are moving to and giving as much options as we can. SAP works on the Self Serve practice. the info is available but you have to find it, which is another thing we are working on to improve for BOE/CRS.
    Best place to start is in the CMS link off the start menu, You'll find the Admin Guide and Setup/Configuration Guides. You can also find all of the latest info and updates to those guides from help.sap.com then click on the SAP BusinessObjects tab along the top and then on the left click on All Products and then filter on your version.
    Once the Firewalls and Domains and your CRS Server is added to the Trusted Domains and ports opened to allow CRS to talk to the DNS Server CRS will begin to load all of the users into it's User Mappings. You still have to add each user or Group of Users but they will be available. Documents does describe how to....
    Once you have the Admin Guide search on Security and it explains in details how to set up and which ports need to be opened etc.
    Thank you
    Don

  • Crystal Report Server XI recurring report instance is not viewable

    I have scheduled a report to be run every morning, and each instance return status is "success". However, I encountered the following problem when I try to view instances of the report: There is a long time period of waiting (seems to be waiting for some kind of timeout), and then eventually the message: "A request was cancelled. The necessary security privileges could not be verified. This indicates a problem with the security server."
    I also noticed that in event viewer (windows server 2003) I see many failure audits to login to the sql database, and the events contain the login used in my data source.
    It's interesting to note, that when I run a single instance of the report "Now" there is no problem.
    Some info about the report which may be relevant:
    The report uses 2 formula fields to auto-parameterize 2 of the 5 parameters used by a subreport. The other 3 subreport parameters are set when scheduling the report.
    The subreport uses a call into a stored procedure in a MS SQL server 2005 database to retrieve its records.
    The 2 fields which are parameterized are datetime fields (StartTime, EndTime), and the main report is basically just a wrapper to only show the previous day.
    JDBC data source to local Sql server instance.
    Also, the crystal report server XI install uses the same sql server instance to store CMS data under a separate database.
    I'm stumped on this.
    Has anybody encountered this problem?
    Is there a simpler way to auto-parameterize the report?
    Why are the failure audits occurring when I view the instance of the report? Is this because the instance is setup to use RPT output format?
    Are there logs I can look into aside from event viewer? I can't find anything that looks relevant under program files, but perhaps I missed something.
    The failure audits would make more sense to me if it occurred with the other report instances, but some instances are shown correctly, and some just do this timeout thing.

    Hello AV,
    please look for the log files here:
    drive:install folder\businessobjectsenterprise11\logging
    by default c:\program files\business objects\business objects enterprise 11\logging
    Please make sure that tracing is switched on for the individual server.
    Please find [online docu |http://help.sap.com/businessobject/product_guides/boexir2/en/xir2_crs_install_win_en.pdf]here
    Falk

Maybe you are looking for