Upgrading from CR 10 Embedded Edition to Crystal Reports (server) xi

We recently upgraded from CR10 Embedded edition to Crystal Reports Server Xi. In our application the users access the reports via a web page (where they enter the paratemeters) and the report is displayed using the Crystal Reports viewer. The CR server xi was recently installed and all the SDK references have been as mentioned in this document: https://boc.sdn.sap.com/node/724. But now when the reports are accessed via the web page we are encountering the error 'All of your system's 0 Concurrent Access Licenses are in use at this time or your system's license key has expired. Try again later or contact your administrator to obtain additional licenses.---- Error code:-2147217397 Error code name:enterpriseLogonFailed'
Can anyone share your thoughts or provide suggestions?
Thanks,
in advance!
SG.
Edited by: Shekhar Gorthy on Aug 4, 2008 10:58 PM
Edited by: Shekhar Gorthy on Aug 4, 2008 10:59 PM

Hello SG,
A common issue that arises when migrating from Crystal Enterprise 10 Embedded to Crystal Reports Server XI applications that use the Report Application Server (RAS) SDK.
The RAS supports two modes of operation - "Unmanaged" and "Managed" reporting.
With CE10Embedded, you'd be using Unmanaged Reporting, where you'd copy the Crystal Report rpt file to the RAS server, and reference it by path when opening it in the ReportClientDocument class instance.
With Crystal Reports Server XI, you can use either Unmanaged Reporting, or Managed Reporting.  Managed means you'd publish the rpt file to be "managed" by the CR Server Central Management Server (CMS).  In code, you'd log onto the CR Server, retrieve the ReportAppFactory from the CMS, retrieve the report from the InfoStore, and pass it into the ReportAppFactory to create the ReportClientDocument.
I'm assuming you're still using "Unmanaged Reporting" with Crystal Reports Server.
If so, each report request will be authenticated in the CMS using the "Guest" account, and each request will use up a Concurrent Access License (CAL).
If you're getting the exception on the first report request, then that likely means you have the complimentary copy of CR Server XI, that comes with zero CALs and five Named User Licenses.
You won't be able to use unmanaged reporting with the complimentary version.  You may want to modify your code to use managed reporting.
If you're getting the exception on the sixth or subsequent request, then that likely means you've purchased CR Server XI, and the base edition comes with 5 CALs.
If you contact sales, you can inform them of the number of users you have, and how frequently they request reports, and sales can recommend a license to match your requirements.
Sincerely,
Ted Ueda

Similar Messages

  • Copying objects within Crystal Reports Server produces an error

    When trying to copy an object from one folder to another within Crystal Reports Server XI R2, I encounter the following error:
    There was an error while writing data back to the server: Two destination property bags exist. Use the bag that is appropriate for your client's version number: SI_DESTINATION (version XI and earlier) and SI_DESTINATIONS (version XI Release 2 and later).
    I did have a copy of BOE XI installed however, this was removed prior to installing CRS XI R2
    fyi - The 'Move' of objects works fine

    Hi,
    The issue you are facing is because there are still some registry entries left behind by XI. It is always recommended to do a clean install.
    For now, you may > back up the registry > run regedit > search for traces specific to XI > delete the keys.
    hope it helps.
    Cheers,
    Subhodeep

  • Upgrading from Oracle 10G standard edition to Oracle 10G enterprise edition

    Hi
    I want to upgrade from Oracle 10G standard edition to Oracle 10G enterprise edition. Is there any script provided by oracle which I can run on existing Oracle 10G standard edition to upgrade to enterprise edition after completing the licensing formalities or do I need to install Oracle 10g Enterprise edition from scratch and then migrate my data.
    Ramanbir S

    You will not need to perform any data migration to upgrade to EE. The diffetence between standard en enerprise editions are the features offered. When you upgrade you can use the same set of files you used to install standard edition and just add the enterprise edition features you want to use in the 'Custom' section of the Universal Installer.

  • Upgrading from Crystal Reports Server V0 to V1

    We're looking into upgrading Crystal Reports Server V0 to V1.  According to the upgrade guide we have to do a complete uninstall of our V0 before installing V1.  It seems risky to uninstall before we have a working version of the upgrade.  Wondering if anyone out there has gone through this process and if so what were your experiences?  Did you have a method to test the upgrade process before uninstalling V0?
    Thanks!

    Ajith,
    Thanks 4 ur response, but when I ge there, all i could see is web page with the following
    SAP BusinessObjects packages and products
    >Address Directories
    >SBOP EDGE INTEG. FOR SAP SOL.
    >SBOP INTGR. FOR SAP
    Unable to find the Business Objects Product Version you require?
    As part of the migration from the legacy ESD site, every effort has been made to ensure all legacy products have been transferred from the ESD site to the SAP Support Portal.
    There are exceptions where some products are now only available in physical format. These products are outlined below:
    Crystal Reports Visual Advantage 2008
    Crystal Enterprise 10
    Crystal Enterprise 8.5
    Crystal Enterprise 9
    Crystal Reports 10
    Crystal Reports 8.5
    Crystal Reports 9
    Crystal Reports Server XI
    SECAM 6.5
    WAREHOUSE
    If you require any of the above, you can request a copy of the media using the message component XX-SER-SWFL-SHIP.
    If you identify other products that you feel should be visible in your SMP account, but are not, you can also raise a message using component XX-SER-SAPSMP-SWC.
    BusinessObjects Temporary License Keys
    Find all the necessary information on how to receive temporary license keys on the Licence Keys page of the SAP Service Marketplace.
    On the License Keys page you will also find all the requirements that need to be fulfilled for obtaining a license key.
    The temporary license keys will be valid for four weeks.
    What do I do from here? Do i have to raise a message ?
    Thanks

  • Migrate from Crystal Report Server XI R2 to new Eclipse RAS SDK Question

    Hi,
    I am migrating Crystal Report Server XI R2 RAS SDK to Eclipse RAS SDK which seems to be quite easy.
    I have the following old code which basicly programmaticly creates a Report from scratch adds a Table and then
    populates the Report with a Pojo Collection.
    <br> <br>
    Now before I would have : <br>
    <br>
    Table oTable = new Table(); <br>
    oTable.setName("reportTable"); <br>
    pbConnAttributes.putStringValue("QE_DatabaseType", "Java Beans Connectivity"); <br>
    pbConnAttributes.putStringValue(PropertyBagHelper.CONNINFO_DATABASE_DLL, "crdb_javabeans.dll"); <br>
    PropertyBag pbLogonProperties = new PropertyBag(); <br>
    pbLogonProperties.putStringValue("Java Bean Classes", className); <br>
    pbLogonProperties.putStringValue("SSOKEY", ""); <br>
    pbConnAttributes.put("QE_LogonProperties", pbLogonProperties); <br>
      pbConnAttributes.putBooleanValue(PropertyBagHelper.CONNINFO_SSO_ENABLED, false); <br>
    oTable.getConnectionInfo().setKind(ConnectionInfoKind.CRQE); <br>
    oTable.getConnectionInfo().setUserName(""); <br>
      oTable.getConnectionInfo().setPassword(null); <br>
      oTable.getConnectionInfo().setAttributes(pbConnAttributes); <br>
    //following statement throws Exception <br>
    doc.getDatabaseController().addTable(oTable, null); <br>
    <br>
    getDatabaseController().setDataSource(pojoCollection, pojoClass.class,"reportTable", "reportTable");
    <br>
    <br>
    Now wenn using the c <br>lient eclipse RAS SDK which pbConnAttributes should I use? <br>
    No matter which ones I choose I get a Bad Driver Exception or Named Exception. <br>
    Can anybody help?
    Edited by: snake-john99 on Aug 11, 2010 10:35 AM
    Edited by: snake-john99 on Aug 11, 2010 10:39 AM

    Hi Mikael,
    Since you're already on CR Server XI R2, you can use the Upgrade Management Tool to migrate all the content to CR Server 2013.
    Anwers to your questions:
    1) Yes, the Upgrade Management Tool does support this kind of migration
    2) It does seem that the UMT allows you to move all report instances as well as the scheduled jobs over to the new server
    3) I've always had issues with Business Views when using Import Wizard however I'm not sure whether they work well with the new UMT. In any case, I always prefer to export the LOVs and BVs from within the Business View Manager to a .xml file and then import them in the higher version of the Server, again, from within the Business View Manager.
    -Abhilash

  • Migrating all configuration  from Crystal Reports Server XI R2 to Crystal Server 2013

    Hi,
    We're running an old Crystal Reports Server XI R2 SP version (boe 11.5)  and we're planning to start using Crystal Server 2013
    As far as I know no upgrade is possible and that's not needed either.
    Instead I'm interested in the migrate possibilities. I saw this thread but it doesn't answer all the questions https://scn.sap.com/thread/3462417
    So first I will install Crystal Server 2013 on a new server and then I use some migrate tool.
    Questions:
    - does the migrate tool support migrating from my version CR server XI R2 SP1  to  Crystal Server 2013 ?
    - does the migrate tool copy all report schduling information (recurring schedule, destination etc)? We have ~1000 scheduled reports so doing manually is not an option
    - does the migrate tool copy Business views/Business view connections ?
    (- odbc data sources are probably not copied but that's ok)
    -Mikael

    Hi Mikael,
    Since you're already on CR Server XI R2, you can use the Upgrade Management Tool to migrate all the content to CR Server 2013.
    Anwers to your questions:
    1) Yes, the Upgrade Management Tool does support this kind of migration
    2) It does seem that the UMT allows you to move all report instances as well as the scheduled jobs over to the new server
    3) I've always had issues with Business Views when using Import Wizard however I'm not sure whether they work well with the new UMT. In any case, I always prefer to export the LOVs and BVs from within the Business View Manager to a .xml file and then import them in the higher version of the Server, again, from within the Business View Manager.
    -Abhilash

  • Crystal Report Server XI R2 - Upgrade MySQL to 5.0 or 5.1?

    Although SP4 for Crystal Report Server XI R2 contains mySQL v 4.1.23, there are security vulnerabilities which are only addressed in 4.1.24 and 4.1.25.  These versions are not in release in binary form from mysql.com, as 4.1 is no longer supported.
    To address the security vulnerabilities, an update of mySQL to 5.0 or 5,1 may be required, but a straight upgrade from 4.1 to either of these versions does not seem to work - CMS cannot connect to the new database version.
    Can anyone provide some guidance on how to patch mySQL from 4.1 to 5.0 or 5.1 for Crystal Report Server XI R2, or whether there is another way of addressing the security vulnerabilities in 4.1.23?
    Thanks
    Paul

    Answered my own question.  Managed to upgrade to 5.0 following this process, but follow these instructions with care...
    1.  Stop all CMS services in Config Manager.
    2. Go to Add/Remove programs and click "change" for Crystal Reports Server XI.  Click on "Modify" then change the entry for MySQL4.1.13a to "Entire Feature will be unavailable" (from Enterprise -> Server Components -> Servers - > Central Management Server).  This will remove the existing mySQL version and any data/license key information/customisation, so be wary.
    3. Install the desired version of mySQL.
    4. Use the MySql command line to create a new database - "create DATABASE BOE115;"
    5. In the Central Config Manager, select the CMS and display its properties.  Select the Dependencies tab and remove the old version of mySQL and add the new version.  Click on the Config tab, then Select Datasource.  Select mySQL driver, then complete the details for the newly created database.  Once complete it will still produce an error, at which point you need to select the options to Re-create the Current Datasource.
    6. Once the datasource is sucessfully recreated, restart the Crystal service in the Config Manager.
    7. Open the Config tool, and add your license key. Then Re-Enable all the servers within the Servers page.
    8.  Any other customisation or preferences would need to be re-applied.
    This worked for me, but obviously take care as your existing mySQL database will be completely removed during the process.

  • Crystal Reports Server XI upgrade to Crystal Reports Server 2008

    I have downloaded the Crystal Reports Server 2008 upgrade from the portal.  Questions:
    The "Upgrading Your Crystal Reports Server Delpoyment from XI or XI Relase 2 to Crystal Rpeorts Server 2008" (simple install) documentation mentions that the installer should recognize my installation and prompt to upgrade.  Instead, the first prompt that I get is for a license key.  Is this normal, or should the application be seeing my existing install?
    If I do indeed need a 2008 license key, how do I obtain one?  It will not accept may CRXI Server keys, and I cannot see anyplace to download the new keys.
    Any help would be appreciated.
    Jeff

    Hi,
    I think you can request for new keys:
    For a new key:
    Request key codes for new orders via SAP Marketplace (SMP), will receive a download letter on new purchases providing them with their SMP login credentials. Using these credentials you can login and click in the "Keys & Requests" tab > Request a License key.
    If your Key code does not work
    You need create a customer message https://websmp107.sap-ag.de/message using component XX-SER-LIKEY-BOJ.
    Regards,
    Deepti Bajpai

  • Crystal Report Server XIR2 upgrade to CRS 2008V1

    Hi,
    I am planning to upgrade my Crystal Report Server XI R2 to CRS 2008 V1. I was thinking of testing in separate machine as a fresh installation and migrating everything using the Import Wizard. I have one concern on this- after I test everything on that new machine, the existing Crystal Production Server machine will no longer be used right? I was wondering if my boss wants me to use the same old machine for production. If so then would I be able to migrate everything from that new test machine to the existing Production machine without affecting the old version in production. For that do I have to install a fresh copy in existing production and then migrate from test machine?

    Hi,
    well you will certainly affect the old version in production.
    Cause when you initially migrated from Rel.2 to 2008 you cant go back. So unfortunalty you have to install 2008 on the old server.
    Regards
    -Seb.

  • Crystal Report Server Upgrade XI R2 SP2 to XI R2 SP5, setTableLocation fail

    I upgraded Crystal Report Server Crystal Reports Server (Enterprise) XI R2 SP2 to Crystal Reports Server (Enterprise) XI R2 SP5.
    Before Upgrade, Reports were generated properly, but after that, I got the following Error.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: The table 'AP_GL_R216' could not be found.     
    Error in File C:\WINDOWS\TEMP\{325E2C60-E2FE-4E1B-9291-E607283AE07A}.rpt:     
    The table could not be found.---- Error code:-2147482939 Error code name:failed     
    at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
    at com.crystaldecisions.proxy.remoteagent.r.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.cd.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.z.a(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.ak.if(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.ad.int(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.bj.for(Unknown Source)
    at com.crystaldecisions.proxy.remoteagent.u.a(Unknown Source)
    at com.crystaldecisions.proxy.remoteagent.u.if(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.DatabaseController.if(Unknown Source)
    at com.crystaldecisions.sdk.occa.report.application.DatabaseController.setTableLocation(Unknown Source)                                                  
    at com.iflex.fcr.bh.reports.FCRJReporter.setReportDB(FCRJReporter.java:945)
    FCRJReporter.setReportDB Code is as follows.
    Table oldTable = (Table)tables.getTable(x);
                             Table newTable = (Table)tables.getTable(x);
                             //create a new ConnectionInfo object
                             ConnectionInfo conInfo = new ConnectionInfo();
                             conInfo.setKind( ConnectionInfoKind.from_int(5) );
                             conInfo.setUserName(db_username);
                             conInfo.setPassword(decrPassword);
                             //create a Property Bag for the Connection Info attributes
                             PropertyBag pBag = new PropertyBag();
                             //          set the property bag values
                             pBag.putStringValue("QE_ServerDescription",serverName);
                             pBag.putStringValue("QE_SQLDB", "true");
                             pBag.putStringValue("QE_DatabaseType", "ODBC (RDO)");
                             pBag.putStringValue("QE_DatabaseName", "");
                             pBag.putStringValue("SSO Enabled", "false");
                             pBag.putStringValue("Database DLL", "crdb_odbc.dll");
                             //          create a property bag for the 'QE_LogonProperties' key
                             PropertyBag logonProps = new PropertyBag();
                             //          set the properties for the logonProps PropertyBag
                             logonProps.putStringValue("DSN", databaseName);
                             logonProps.putStringValue("UseDSNProperties", "false");
                             //          add the logonProps PropertyBag to pBag
                             pBag.put("QE_LogonProperties", logonProps);
                             //          set pBag into the conInfo attributes
                             conInfo.setAttributes(pBag);
                             newTable.setName(oldTable.getName());
                             newTable.setAlias(oldTable.getAlias());
                             newTable.setQualifiedName(db_username.toUpperCase()+"."+oldTable.getName());
                             newTable.setConnectionInfo(conInfo);
                             System.out.println("Start TableLocation" + newTable.getQualifiedName());
                             report.getDatabaseController().setTableLocation(oldTable, newTable);
    In last line this is failing to Execute, with SP2 there has been no problem.
    Thanks,
    Jitendra
    Edited by: JitendraS on May 26, 2010 3:10 AM
    Edited by: JitendraS on May 26, 2010 3:10 AM
    Edited by: JitendraS on May 26, 2010 3:15 AM

    I found two documents on SAP website for Supported Platforms of both CR XI R2 SP2 and CR XI R2 SP5.
    CR XI R2 SP2u2013
    Link:  http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/00225757-ab5c-2c10-c1a8-fb9f9f0f4ac2?quicklink=index&overridelayout=true
    Page 7
    Supported Application Servers>> Details
    Oracle Application Server 10gR3 (10.1.3)
    JDK 1.5.0_xx
    CR XI R2 SP5u2013
    Link:  http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10ca2a2b-e478-2c10-53bf-9534ee116522?quicklink=index&overridelayout=true
          Page 5
    Supported Application Servers
    Oracle OAS 10G Rel.2 (10.1.2)
    JDK 1.4.2_xx
    why Supported Application Server Version downgraded in SP5?

  • Crystal Report Server embedded 2008 SP3 - Reporitng

    Hi, i have aquestion about Crystal Report Server embedded 2008 SP3.
    I am currently going to start some development work to use this reporting technology, (usng C# .NET)
    Ho can i do server side reporting with out haveing to use a .NET web application that uses IIS.
    I want to be able to run a ,NET application from the client that tell my server whic report to process and return back an object.
    Is there something where you logon or give it the credentials and returns back an object.
    Also to do this will there have to be a client runtime?
    I am not sure of how the technology works, so please excuse me if i asked something that does not make sense.
    Thanks in advance.

    Hi Mithal,
    You should have an OEM contract so create a case in Service Market Place and a Rep will work you through how to create and use the various options etc. when using CRSE.
    Thank you
    Don

  • How to Migrate Crystal Report Server XIR2 from Tomcat to Websphere.

    Hi Experts,
    I'd like to know how to migrate a existed Crystal Report Server XIR2 from Tomcat to Websphere.
    I don't want to upgrade the Server version, just want to deploy it from Tomcat to a new Websphere.

    Hi
    https://bosap-support.wdf.sap.corp/sap/support/notes/1219131
    Regards
    Roland

  • Linking to a report on Crystal Report server from Adobe 6.0

    Hello,
    I am trying to link to a Cystal report on the Crystal report server.  I just want to be able to connect directly to a report using Adobe Go-Live page. Right now... The only way I can find the address for the report is to get it from a Sharepoint site where I have it linked.  Is there an easier way too find the web  address of a cystal report on the Crystal report server?
    Thanks,
    Jason

    I have checked the following directories and I haven't been able to see any errors related to my problem. I checked C:\Windows\system32\logfiles and C:\Program Files\Business Objects\BusinessObjects Enterprise 12.0\logging. However, if I schedule the report, it works just fine. I just can't run the report on demand without receving the "Stop Running Scripts" error.

  • Transfer reports from Crystal Enterprise 9 to Crystal Reports server 2008

    Hello,
    a decision was made to stand up our new Crystal Reports Server 2008 box and only load new reports to it that were created in Crystal Reports 2008, or ones that were modified in CR 2008.
    Now I have all of my users set up and some reports loaded on the new server. There has been a new decision to now move a couple hundred reports off the old server onto the new and also have the same folder structure and schedules as exists on the old CR 9 server.
    Is there an export/import tool that will allow for this?

    Hi,
    i`m not quite sure if you can do this from CRE9 to CRS2008 with the Import Wizard. I think its only supported beginning with CE10.
    Check the Import Wizard Guide from:
    http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_bip_importwiz_en.pdf
    Regards
    -Seb.

  • COM dlls in the Standard and Professional Editions of Crystal Reports

    Post Author: enz0
    CA Forum: Deployment
    Hi.
    Do the Standard and Professional editions of Crystal reports install all the com dlls?
    thanks

    Hi,
    The crystal reports trainign for SAP Business One is designed for partners and customers and provided for free to them.
    It's not available to non-customers. You will need to have a login to the partner or customer portal to use it.
    Alternatively you can use the regular Crystal Reports training resources or available books to get yourself skilled for Crystal Reports. Being able to work with Crystal Reports is 90% of the work where as the SAP Business One specific's are in the area of ....
    - Release 8.8: the datasource connections; working with variables in the report; intergration and distribution of reports
    - Release 2007: linking the reports into the SAP Business One menu and making them secured available to the end users.
    Best regards,
    Peter

Maybe you are looking for

  • CURRENTPHASE MAIN_NEWBAS/STARTSAP_NBAS

    Hello There, We are doing an Upgrade from BI 3.5 to 7.3 and ran into a problem during my MAIN_NEWBAS/STARTSAP_NBAS phase (downtime Phase). SAP is unable to start the shadow instance I think, (error below). This trouble ticket was created by SAPup on

  • Report on activities linked to custom object

    Hi, Is there a way show on a report each activity linked to a custom object record? e.g. Custom Object name 1 , Activity 1 subject Custom Object name 1 , Activity 2 subject Custom Object name 1 , Activity 3 subject When i use the Custom Object 1 repo

  • PreparedStatement and LIKE

    Can I use LIKE in a preparedStatement? String selectTwo = "SELECT zip_code " + "FROM alk_zip " + "WHERE zip_code LIKE ? " + "ORDER BY zip_code"; PreparedStatement stmtTwo = con.prepareStatement( selectTwo ); // loop starts here stmtTwo.setString( 1,

  • Oracle 11g Form/Reports Server - Stable Version 11.1.1.7 (or) 11.1.2.1.0?

    Hi Friends, We are using Oracle 10g Forms and Reports with 10g Database. We would like to upgrdae 10g Forms/Reports to 11g Forms/Reports and Database to 11g. Please let us know which version of Forms/Reports is stable. 11.1.1.7 (or) 11.1.2.1.0 What i

  • How to see errors after compilation.

    Hello, I am new to SQL/Developer. How do we check the errors after running the script in sql/developer. Warning: execution completed with warning. I tried show errors but its not working. Please help. Thanks, Srikanth