Crystal Report & Liveoffice connection

Hello,
I am using Xcelsius (2008,sp3,fix pack 5) and crystal report (2008 sp3) along with liveoffice(sp3). But while a crystal report takes 2-3 seconds to execute but when I  map the same crystal report through liveoffice after uploading the crystal report in infoview it takes around 24 seconds to refresh inside xcelsius. Is there any way where I can improve performance? It will be really a greaty help..

Hi there,
If you're connecting to Crystal and refreshing, then you could just use QaaWS (since you're hitting the database anyway). This won't help if you're doing any significant aggregation in Crystal, or can't create a universe on whatever data source your CR is using.
Option 2 might be to use a Webi report instead of a Crystal report (again, you will need a universe). Then publish your Webi blocks as BI Services.
This then allows Xcelsius, through the BI Service, to apply a filter to the webi report without refreshing.
For BI Services you'll need XI3.1 SP2.5 +, but preferably SP4 if you'll have many (more than a hundred) BI Services.
Hope that helps.

Similar Messages

  • How to create a Crystal Report to connect to Oracle

    Hi,
    When I create a Crystal report to connect to SQL Server, I create a stored procedure to get all data I need and connect to it from Crystal Report.(In the stored procedure, I created temp tables, used cusor etc to run data.) But now I need to use a Oracle database. I heard I need to create a package and put this stored procedure in this package. Questions:
    1. if I need to create a package, how can I call the stored procedure from it?
    2. Can I create temp table in this procedure too? I need to create some temp tables to join together to get complex data.
    3. if I want the return data from stored procedure, do I still "select ... from ..." or there is another other ways?
    I am so desperated. Please help. I know this are very silly questions. But please.

    Hi Jenny,
    We are also using Crystal Reports for our Oracle Database, we normally just select the tables we want to use or create our own SQL query.
    However, if you really want to use Oracle stored-procedure (which performs faster than a SQL query because the stored procedure is compiled in advance), you can look at this document:
    http://support.businessobjects.com/communityCS/TechnicalPapers/scr_oracle_stored_procedures.pdf
    Hope this will answer your questions.

  • Crystal Report ADO Connection Error

    I have a Crystal Reports created against an MS SQL Server DB using an ADO Connection (crdb_ado.dll). I am using a hardcoded user ID and password for logging into SQL Server, everything works fine when I log from Crystal Reports client, I am able to connect to SQL Server and refresh the report.
    When I publish to BOE and access from Infoview or CMC I get an error "[Failed to open the connection.
    xxxx report Details:  [Database Vendor Code: 17 ]]". I use the same account for SQL server under database config for Crystal report within CMC.
    Please see release info below:
    BOE XI 3.1 FP 3.1 (Windows 2008 server)
    Crystal Reports 2008 FP 3.1
    I have checked the  ADO dll version, size etc. on both client and BOE XI server and it looks the same.
    Are there any additional configuration required for this connection to work from BOE XI?
    I enabled log on BOE side and could not get anymore information other than the above message. We also tried with the SQL Server SA account to make sure this is not an access issue.
    Thanks.

    Hi Don,
    Please see answers below:
    >
    > What happens if you set the logon over ride properties for each instance?
    >
    I select the option "Use same database logon as when report is run" and get the error mentioned in the first message.
    > Also need to know what version of SQL Server you are using and if you are using the Native Client or the OLE DB for SQL Server driver?
    >
    We are using SQL Server 2008. I have tried with the OLEDB for SQL driver and with the Native client. In both the cases I am getting the same error. I also tried to change the OLEDB.sbo file as mentioned in note 1204488.
    Thanks.

  • Crystal report subreport connect DB Problem

    I have rpt file was set the connect DB(AAAA). This file have two reproject (main report and subreport)
    The subreport parameter is linked to main report.
    These two report will get the data from DB by the parameter.
    Server Name:AAAA, Database Name: AAAA, UserID: AAAA, Password:AAAA
    for testing and save it.
    I am trying to build a MFC project with crystal report 13
    My project call this rpt file and pass a parameter to main
    The crystal report main report and subreport can get correct infomation where connect to the DB(AAAA)
    but when I connect to the other DB.
    My project only the crystal report main report can get the correct infomation, the subreport cannot get correct infomation.
    it show a diolog to ask me "enter the parameter".After passing a corrent parameter, the result also not corrent.
    The program code:
    CrystalDecisions::Windows::Forms::CrystalReportViewer^  crystalReportViewer1;
    ReportDocument boReportDocument = gcnew ReportDocument();
    boReportDocument->Load(strFilePath);
    String^ strUser = gcnew String (ReportPara->strUser);
    String^ strPassword = gcnew String (ReportPara->strPassword);
    String^ strServer = gcnew String (ReportPara->strServer);
    String^ strDatabase = gcnew String (ReportPara->strDatabase);
    boReportDocument->DataSourceConnections[0]->SetConnection(strServer,strDatabase,strUser,strPassword);
    ParameterValues^ pv = gcnew ParameterValues();
    ParameterDiscreteValue^ pdv = gcnew ParameterDiscreteValue();
    pdv->Value =ReportPara->varDate;
    pv->Add(pdv);
    boReportDocument->DataDefinition->ParameterFields[0]->ApplyCurrentValues(pv);
    crystalReportViewer1->ReportSource = boReportDocument;
    I have try to change the subreport DataSourceConnections:
    for (int j; j <boReportDocument->DataSourceConnections->Count;j++)
          boReportDocument->Subreports[0]->DataSourceConnections[j]->SetConnection(strServer,strDatabase,strUser,strPassword);
    but the result is also not corrent
    I have try to pass parameter to the subreport:
    pv->Add(pdv);
    boReportDocument->DataDefinition->ParameterFields[1]->ApplyCurrentValues(pv);
    for (int i; i <boReportDocument->DataDefinition->ParameterFields->Count;i++)
         pdv->Value =ReportPara->varDate;
         pv->Add(pdv)
         boReportDocument->Subreports[0]->DataDefinition->ParameterFields[0]->ApplyCurrentValues(pv);
    but the result is also not corrent
    I have try to set the ReportViewer LogOnInfo
    TableLogOnInfo^ loi;
    loi = boReportDocument->Database->Tables[0]->LogOnInfo;
    oTblLogOnInfos->Add(loi);
    for (int j=0; j<boReportDocument->Subreports[0]->Database->Tables->Count;j++)
          loi = boReportDocument->Subreports[0]->Database->Tables[j]->LogOnInfo;
          oTblLogOnInfos->Add(loi);
    crystalReportViewer1->LogOnInfo = oTblLogOnInfos;
    but the result is also not corrent

    Hi Edwin,
    I assume you are using the runtime for Cr for Visual Studio which is available from the download page correct?
    You don't want to use the .Add method, this actually adds a NEW parameter, you simply want to modify the current parameter value.
    Sorry I don't have and C++ samples.
    Don

  • Crystal Report 9 connectivity with WebLogic 10.3.5

    Hello,
    Is the Crystal Report 9 certified with WebLogic 10.x? Currently WebLogic 8.x is in use. Trying to upgrade the WebLogic.
    Thanks

    What does this have to do with Database Connectivity?
    An I doubt it, CR 9 is about 8 or 9 years old well before 10.3 was released. Check the Platforms PDF's for more info.
    Don

  • Crystal Reports 2008 connecting to R/3

    I have a general question for Crystal Reports 2008 for use with R/3.
    Crystal Reports 2008 with SAP/R3 Enterprise 4.7
    I installed a trial version of Crystal Reports 2008 and connected it to the R/3 instance using a oracle id which has admin rights so the session can see all of R/3 db including 000 client. It can see all tables within the database.
    To deploy Crystal Reporting for an R/3 installation - is it advisable to connect directly to db?  how do you maintain proper data element access?  Do you create views for a oracle user id, or is there a delivered product or method for allowing user access using some other type of security that limits table access to say finance tables?
    John

    Check our site for more info but in general CR fully respects all DB security, if the user does not have permissions on the table used in the report the report will fail to run.

  • Crystal Reports when connecting to SAP ERP gives Logon Failed error

    Hello Friends,
    We are trying to implement the SAP Best Practices Crystal Reports and Xcleisus Dashboards for ERP. We are using BI 4.0 SP2, Crystal Reports 2011 SP2 and SAP ECC 6.0 FP 5.
    We have done all configurations at the SAP end and successfully adpated a couple of Crystal Reports and they work fine.
    My client machine crashed and I had to reinstall my Windows and all Client Tools. After the installation, when I tried to adapt a few more reports, I face the below problem:
    After opeing the Crystal Report, when trying to Set the DataSource location, I select Create New Connection and select SAP Infosets. The SAP logon popup comes and I select the ECC system and enter the logon credentials for SAP ECC, I get an error message saying
    Logon Failed.
    Details: some square boxes.
    The error doesnt really make any sense. Unfortunately, I am not able to test this scenario in any other machine as I am the only developer here. I am almost sure this is because of some configuration set up in my client machine,
    Can some please help?
    Thanks in advance!

    Hello,
    I recommend looking at a couple of things:
    1) Do you have the latest Crystal transports installed with ECC?  SP 2 has new transports.  Check this subdirectory
    Crystal Reports 2011\DATA_UNITS\CrystalReports\Collaterals\Add-Ons\SAP\Transports\unicode_compatible\cofiles
    Use STMS to see if transports are installed
    2) Are you using 3.1 ?  Do you have the Integration Kit installed on ECC and client side?
    Tammy

  • Crystal Reports 2008 connecting to Crystal Server 2011

    Hello SAP Experts,
    I am new with the Crystal Client/Server platform and the only knowledge I have with the infrastructure is from the Crystal Server 2011 documentation I have pulled from SAP's website.  I have looked at a lot of online resources but very few have the answers that I need.
    I built an instance of Crystal Server 2011 running on Windows Server 2008 R2.  Our clients are currently using Crystal Reports 2008 client where they connect directly to a SQL 2008 Data Warehouse to pull reports.
    For security reasons, they want to implement Crystal Server 2011 to connect to the SQL 2008 Data Warehouse as a single point of entry, instead of having several Crystal Reports 2008 clients connecting to the SQL Data Warehouse.
    The idea is to have the clients connect to the Crystal Server; the Crystal Server will then connect to the SQL Data Warehouse so clients can pull reports from it.
    My questions are:
    1.  Is it possible to connect a Crystal Reports 2008 client to Crystal Server 2011?  If so, how do I accomplish this?
    2.  Do I need to create a Universe in order for the Crystal clients to pull data/reports from the SQL 2008 Data Warehouse?  Or is there a way I can create a connection without a Universe?
    Any help offered is greatly appreciated.
    Thank you.

    Check our site for more info but in general CR fully respects all DB security, if the user does not have permissions on the table used in the report the report will fail to run.

  • Crystal Report Universe Connection

    Hello,
    I have a Crystal report developed based on Universe as the data source. Say this report is in Dev environment. Suppose I need to promote this report to Test environment to UAT or production then how is it possible?    
    I have used import wizard using this I am able to move my report from one environment to another. report is successfully moved from source to destination but when I go to refresh the crystal report, an error is thrown (both in Crystal Report designer and Info view) :
    "Failed to open the connection. 
    Details:
    Update of the SQL command from the Universe failed. This report cannot be
    refreshed unless the SQL command is updated from the Universe."
    As such the Dev copy works fine. Please suggest me how to move a report from 1 environment to another.
    If I changes connection manually in UAT Database --> Set Database location -->update then same report work fine,
    But I have multiple reports I cannot manually edit connection of each report.
    Useful details as below.
    Crystal Reports 2008 (Service Pack 1)
    Business Objects 3.1 
    View the connection details in report.
    Set database location
    Expand Universe connection
    Properties - It will show server details of connection- user name - universe name- path of universe
    Kindly advice.

    This is the same as: Migration of Crystal Report
    Please do not cross post as this is against the SCN Rules of Engagement.
    If this is a critical issue, you should be able to create a phone case - I suspect for you this would be free as you have BI / BO(?). If you are not sure how to, see your admin.
    I will be locking this post now. Please continue on the above link.
    - Ludek
    SCN Moderator

  • Crystal Reports data connection using Java beans

    Hi
    My name is Bach Ong, i'm currently perform re-configuring Crystal reports 2008 to connect via
    Java bean to Jboss server, this uses look up service on JBoss server. The connection is using Connect
    look up using the properties:
    java.naming.provider.url=jnp://emgsydapp121:10499
    java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
    java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
    for file CRConfig.xml i put as follows:
    <JDBCURL></JDBCURL>
    <JDBCClassName></JDBCClassName>
    <JDBCUserName></JDBCUserName>
    <JNDIURL>jnp://emgsydapp121:10499</JNDIURL>
    <JNDIConnectionFactory>org.jnp.interfaces.NamingContextFactor
    y</JNDIConnectionFactory>
    <JNDIInitContext>/</JNDIInitContext>
    <JNDIUserName></JNDIUserName>
    Can you advise us if this step is correct, and is there any
    documentation that can guide us to right direction.
    for Java testing in Eclipse using remote call class it is working suing the following code:
            Properties p = new Properties();
            p.put(Context.INITIAL_CONTEXT_FACTORY,
            "org.jnp.interfaces.NamingContextFactory");
            p.put(Context.URL_PKG_PREFIXES, "jboss.naming:org.jnp.interfaces");
            p.put(Context.PROVIDER_URL, "jnp://emgsydapp121:10499");
             InitialContext ctx = new InitialContext(p);
      Date asAtDate = CrystalUtils.convertToDate("2014-01-01", CrystalUtils.relativeToToday(0), false);
         String asxCode = "BHP";
         ClosingPricesReportRequest criteria = new ClosingPricesReportRequest(asAtDate, asxCode);
         InitialContext context = new InitialContext(p);
         ClosingPricesReportService ejb = (ClosingPricesReportService) context.lookup(ClosingPricesReportService.REMOTE_JNDI);
         ClosingPricesReport report = ejb.createMTMClosingPriceReport(criteria);
         System.out.println(report.getClosingPrices()[0].getClosingPrice());
         testval = report.getClosingPrices()[0].getClosingPrice().toString();
         System.out.println(testval);
    when i run the tes code the results as follow:
    10:49:45,244 DEBUG [SecurityAssociation ] Using ThreadLocal: false
    10:49:45,338 DEBUG [MicroSocketClientInvoker ] SocketClientInvoker[709446e4, socket://emgsydapp121:10473] constructed
    10:49:45,338 DEBUG [MicroRemoteClientInvoker ] SocketClientInvoker[709446e4, socket://emgsydapp121:10473] connecting
    10:49:45,338 DEBUG [MicroSocketClientInvoker ] Creating semaphore with size 50
    10:49:45,338 DEBUG [MicroRemoteClientInvoker ] SocketClientInvoker[709446e4, socket://emgsydapp121:10473] connected
    10:49:45,369 DEBUG [ClientSocketWrapper ] reset timeout: 0
    10:49:45,650 DEBUG [InvokerRegistry ] removed SocketClientInvoker[709446e4, socket://emgsydapp121:10473] from registry
    10:49:45,650 DEBUG [MicroSocketClientInvoker ] SocketClientInvoker[709446e4, socket://emgsydapp121:10473] disconnecting ...
    10:49:45,650 DEBUG [SocketWrapper ] ClientSocketWrapper[Socket[addr=/10.137.2.40,port=10473,localport=64150].2cba5bdb] closing
    37.99000000000000198951966012828052043914794921875
    37.99000000000000198951966012828052043914794921875
    Can anyone assist me in convert the above settings to get access by Crystal reports.
    My attemp current are below:
    public class CFDClosingPricesRpt extends CrystalReport {    
        //Constructor
        public CFDClosingPricesRpt(){
            super(ClosingPriceBean.INSTANCE);
         * Returns the ResultSet for this report to Crystal.
         * @param asxCode
         * @param asAtDateString
         * @return
    public ResultSet getNewReport(String asxCode, String asAtDateString) {                     
         try {
             Properties p = new Properties();
             p.put(Context.INITIAL_CONTEXT_FACTORY,
             "org.jnp.interfaces.NamingContextFactory");
             p.put(Context.URL_PKG_PREFIXES, "jboss.naming:org.jnp.interfaces");
             p.put(Context.PROVIDER_URL, "jnp://emgsydapp121:10499");
             //InitialContext ctx = new InitialContext(p);
             clearCachedReportBeans();     
       Date asAtDate = CrystalUtils.convertToDate("2013-01-01", CrystalUtils.relativeToToday(0), false);
          asxCode = "BHP";
          ClosingPricesReportRequest criteria = new ClosingPricesReportRequest(asAtDate, asxCode);
          //ClosingPricesReportService ejb = (ClosingPricesReportService) ctx.lookup(ClosingPricesReportService.REMOTE_JNDI);
          ClosingPricesReportService ejb = (ClosingPricesReportService) ServiceLocator.getInstance().getService(ClosingPricesReportService.REMOTE_JNDI);           
          ClosingPricesReport report = ejb.createClosingPriceReport(criteria);
          // assemble Crystal-friendly DTO
          Collection closingPrices = Arrays.asList(report.getClosingPrices());
          for (Iterator iter = closingPrices.iterator(); iter.hasNext();) {
                    MBLXClosingPrice cp = (MBLXClosingPrice) iter.next();               
                    if (cp==null) continue;               
                    addReportBean(new ClosingPriceBean( report.getSuppliedDate(),
                                cp.getClosingPrice(),
                                cp.getAsxCode()));
      } catch (Throwable x) {     
          saveErrorMessage(x);
      return getAsResultSet();             
    Thanks
    Bach Ong

    Hi Don Thanks for the reply.
    I've was able to connect via Java beans and JNDI. But this one is going the JNDI of JBoss sever, which the JNDI already configure and working for Crystal reports v10.
    Bach

  • Using Crystal Report Data Connection in Xcelcius 2008

    The documentation does not explain how data to populate row, column and details is passed to SWF.
    Can some-one please point how CR Data Connection when created in Xcelcius 2008 is used in Crystal Report Design time ? Is it through Flash variables? Basically more details are needed for "when setup properly" clause. How to map Crystal Reports Fields to Xcelcius Definitions.
    Thanks
    Harish Tejwani
    From Doc:
    "With the release of Crystal Reports 2008, it is now possible to embed an Xcelsius-generated SWF file into a Crystal Report and have the SWF consume data from that report. When set up properly, refreshing the data in your Crystal Report will update the embedded SWF.
    To configure your Xcelsius SWF to consume data from its Crystal Rport source data, you must open the Data Manager in Xcelsius and add a new Crystal Report Data Consumer connection. After adding the connection, bind the following ranges to your spreadsheet:  Row Headers, Column Headers, Data"
    "Using Crystal Reports 2008, embed the SWF file into the Crystal Report source data file. When designing your Crystal Report, you will determine what fields/data populate the Row Headers, Comumn Headers, and Data ranges that were designated in your Xcelsius SWF. When set up properly, refereshing your Crystal Report will also refresh the data being sent to and consumed by the embedded SWF. See"

    <div class="content">
    <p>
    Please check the following post to see if there is a solution to the issue you are experiencing:
    </p>
    <p>
    <a href="/node/19014"><span style="color: #0063af">http://diamond.businessobjects.com/node/19014</span></a>
    </p>
    </div>

  • Crystal Report DB Connection

    Hi,
    I want to design Custtomized reports for SAP Business One in Crystal Report. Please guide me how can I connect with the server and database so that it becomes general and I can use it in any SBO server at different client places without doing any changes in the report. If I use OLEDB provider for SQL then I need to replace the server everytime I change the server.
    Please tell me the way how it is done.

    Hi
    Search SDK forum for "Crystal"... I think so you can find solutions
    For example, I found very usefull this [Thread: How to Change Crystal Report database name from visual basic code?|How to Change Crystal Report database name from visual basic code?; for CR functions...
    Regards
    Sierdna S.

  • *Crystal Reports 2008 connection to oracle 11g database error IM003*

    Hi ,
    I am getting the following error when connecting to Oracle 11 g database using Crystal Reports 2008.
    _Logon Failed:Details: IM003:Specified driver could not be loaded due to system error 127 ( Oracle in OraClient11g).
    Datebase Vendor Code:160.
    The Login and Pw that I am using are correct.
    *Could you please let me know any steps that i need to do to resolve this problem.
    Thanks!*

    Hello,
    I haven't seen that error in years... There was a version of Oracles client that did not put the client install into the PATH statement.
    Add the Oracle ...\Bin folder to your System Environment variables and then it should work.
    Thank you
    Don

  • Crystal reports 2008 connection to universe

    Hi ,
    I am trying to create Crystal Reports using universe as a data source. I am able to logon BOE, select universe and then select the objects that I need to build a query. As soon as I click OK button I am getting "Logon Failed".
    If i use SAP BW MDX Query as the connection it works fine.
    i am able to run a webi report based on the same universe.
    we are using BO XI 3.1 sp2
    thanks

    Hi BO-Experts,
    I have exactly the same problem. However, it seems to be unrelated to the authorizations. The connection works perfectly with one of the sample universes (efashion) which has exactly the same authorizations:
    administrator and universe designer-user have full rights, all has no rights
    I am a comlete novice in BO and very grateful for suggestions.
    Thanks,
    Claudia

  • Passing parameters to a Crystal Reports JavaBean connection

    Hi,
    I'm trying to pass a parameter to a CR XI JavaBean connection. So far I can read and show a String parameter in the report, but I'm unable to pass it to the getResultSet(String aParameter) method that provides the ResultSet.
    The Crystal Reports editor shows a dialog box asking for the "Parameter 1". I've tried with the parameter name and with an arbitrary value, but it just doesn't work.
    Any comment from anyone who has been able to figure this out would be really welcome. The Crystal Reports documentation isn't very useful.
    Best regards,
    - Juan

    I'm about to throw Crystal Reports thru the window. There is no documentation, their knowledge base is a wasteland, the samples included are just the simplest ones, it seems there is nobody from their company colaborating in their forums This company is incredible.
    As far as I can tell, you need to set the parameters for the ResultSet method as if it was a stored procedure, but I found no useful documentation about this for Java / JSP pages.
    So far, my JavaBean method is:
         public ResultSet getResultSet(String minAge, maxAge) throws SQLException {
            // I don't use the parameters yet. I just want to execute this ResultSet
             try {
                  return getConnection()
                       .createStatement()
                       .executeQuery("SELECT * FROM notes");
             } catch (Exception e) {
                 e.printStackTrace();
                 _log.error(e);
                 return null;
         }An the parameters code is:
        public Fields getParameters() {
            if (_parametros == null) {
                 ParameterFieldDiscreteValue val1 = new ParameterFieldDiscreteValue();
                 val1.setValue("100");
                 ParameterFieldDiscreteValue val2 = new ParameterFieldDiscreteValue();
                 val2.setValue("200");
                   Values vals1 = new Values();
                   vals1.add(val1);
                   Values vals2 = new Values();
                   vals2.add(val2);
                   ParameterField field1 = new ParameterField();
                   field1.setName("minAge");
                   field1.setReportName("");
                   field1.setCurrentValues(vals1);
                   ParameterField field2 = new ParameterField();
                   field2.setName("maxAge");
                   field2.setReportName("");
                   field2.setCurrentValues(vals2);
                   Fields fields = new Fields();
                   fields.add(field1);
                   fields.add(field2);
                   _parameters = fields;
            return _parameters;
        }Any comment of any kind about this would be really welcome.
    Regards,
    - Juan

Maybe you are looking for

  • Back to my mac failing after upgrade to 10.10

    Hey guys, I upgraded my home iMac and home MBP at the same time to 10.10.  All went smoothly.  When out of town, my MBP can still see my iMac for Back to my Mac use.  I upgraded my work iMac, which has always been able to see my home iMac, to 10.10 a

  • Maximum size of a virtual pool in SCVMM 2012R2

    I have a Windows Server 2012 R2 running SCVMM 2012 R2 and an over-committed virtual storage pool. In Server Manager the capacity of this storage pool is 128TB which translates to 140TiB which makes sense since the maximum allowed size by the storage

  • Acrobat icons all generic with no preview?

    After reinstalling Acrobat 9 pro on a new machine all adobe pdf icons are the generic Adobe icon with no first page preview on them.  Have tried everying from the forum so far but no success. any help would be greatly appreciated!

  • Browser for low-end laptop

    Hi, my girlfriends laptop is running arch linux (I installed it for her a year ago...). The problem is that it's not a high performance machine but rather low-end instead. It's an "Acer Extensa 5635Z" (Intel Pentium Dual Core T4200, Intel GMA, 2 gig

  • Msi tv@nywhere remote issue

    When I first installed the card it worked perfectly and I was happy. Later I rebuilt ("upgraded") the machine that runs my TV got the tunner working again with the updated drivers from the msi website. but the remote is non-functional. I've tried new