Error opening a Manage Report template with Formulas and Summation

Hi Expert,
My j2ee web application is setup is such a way that when there is NO connectivity to the Crystal Report Server XI, it will use the Crystal Report for Eclipse functionality and opening report templates located in the relative path - This works fine.
But when there is a connectivity to the CMS Server, I have this error when opening a manage report in Crystal Report Server XI that contains formulas and summations. But for other reports like chart and listings no problem.
This code triggers the error:
ReportClientDocument clientDoc = reportAppFactory.openDocument(infoObject,0, java.util.Locale.US);
I found out there's a conflict between CR libraries  for Eclipse and libraries for RAS Enterprise Server XI.
How can I solve this issue so that I can support the two scenarios - with or without CMS connectivity, I can still view reports.
Error Stack Trace:
com.crystaldecisions.sdk.occa.managedreports.ras.internal.a: Cannot open report document. - Unable to connect to the server: gdcextrp.RAS.rptappserver. cause:com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: gdcextrp.RAS.rptappserver.-- Error code:-2147467259 Error code name:failed detail:Cannot open report document. - Unable to connect to the server: gdcextrp.RAS.rptappserver. The exception originally thrown was com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: gdcextrp.RAS.rptappserver.-- Error code:-2147467259 Error code name:failed at com.crystaldecisions.sdk.occa.managedreports.ras.internal.RASReportAppFactory.a(Unknown Source) at com.crystaldecisions.sdk.occa.managedreports.ras.internal.RASReportAppFactory.a(Unknown Source) at com.crystaldecisions.sdk.occa.managedreports.ras.internal.RASReportAppFactory.openDocument(Unknown Source) at com.crystaldecisions.sdk.occa.managedreports.ras.internal.RASReportAppFactory.openDocument(Unknown Source)
Hoping for your answers.
Regards,
Rulix Batistil

You must isolate the CR4E and RAS SDK jars using separate classloaders - simplest is have separate apps, if rolling your own class loaders is out of project scope.
They do not work together.
Sincerely,
Ted Ueda

Similar Messages

  • Custom report templates with the help of BI Publisher.

    Hi All,
    I have created custom report templates with the help of BI Publisher it is working as we excepted.
    refered : https://blogs.oracle.com/kyle/tags/reports
    But our requirement want to change the color of heading and include filters in output report, It is possible, if yes pls share you comments?
    Best Regards
    Pradeep

    how silly of me!
    just restarting the tomcat sorted the problem!!!

  • How to deal with "There was an error opening this document, the file is damaged and could not be"

    Hello, everyone:
    I open one pdf document with Adobe Reader 9.3, but it appeared that "There was an error opening this document, the file is damaged and could not be repaired".. and I found that another several pdf document in the same folder that I have not opened for a long time is also "damaged and could not be repaired".
    But in the same folder, other documents of different types are ok, does that mean there is something wrong with my hard drive?
    Has anyone else run into this issue or have any suggestions?
    Thank you very much

    It could be that the directory is damaged. It could be that at one time you had a virus that did damage, it is hard to say. Do you have a good backup?

  • Acrobat 11 there was an error opening this document. the file is damaged and could not be repaired

    we are receiving an error when opening certain pdfs saying "there was an error opening this document. the file is damaged and could not be repaired"
    i've tried a few things to fix this issue with no luck
    tried on a brand new windows 7 install without any added software like anti-virus software, etc
    tried on my home pc (I forwarded the document from my work pc to my home pc and still receiving the same error)
    don't think it's anything related to the computers, thinking it's more an issue with the pdf. i've tried the basics like deleting temp files from IE, going to %temp% and deleting that out, doing an acrobat repair, trying in reader instead of acrobat, updating users from acrobat 10 to 11, and still receiving the same issue. the odd thing is, some people can open this document and some receive the error. the other thing is i've tried alternative pdf programs with no avail, same errors from those as well
    i work on the helpdesk with one other person  for the company and not sure what else we can try
    don't think this is a pc issue - tried on pcs in the company, home pcs, personal pcs and all get this error
    got to be an issue with either the pdf, or the way its being sent
    i did reach out to OUR e-mail team here (lotus notes admin) and they've ruled out anything as far as an encryption causing the conflict may go, so notes isn't the issue either
    would it be possible it's on the persons end that's sending the file?

    Unfortunately, CR 10.5 is not supported on WIN 2012 Server. See this wiki for more details. In order to work in a supported environment you will have to upgrade to CR 2008 Service pack 7, or SAP Crystal Reports, developer version for Microsoft Visual Studio (2010 / 2012 / 2013).
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Which version doesn't produce this error: "there was an error opening this document. the file is damanged and could not be repaired"?

    This error message occasionally occurs with Acrobat 5 on XP 2.  However the same files can be opened with Acrobat 6.0.4 on Win98(se2).
         "There was an error opening this document. the file is damanged and could not be repaired."
    I'd like ot upgrade 5 on my XP system, but have read many posts complaining about the same error with newer versions.
    Is there a version that never produces this error on files that aren't actually damaged? And has anyone figured out what produces this error? (The posts I've seen suggest solutions that don't seem to work.)
    Thanks.
    Ellen

    Thanks, Prasanth.
    I've read posts about this problem happening on all versions, and wanted to see if it was least likely to happen in one version.
    I just need the basic function - the ability to read a pdf file.
    Of course, it seems to be a problem only for some, and there's no way of knowing the extent, so I will try an upgrade or two.
    Ellen

  • There was an error opening this document. the file is damaged and could not

    Dear all, I am simpley reading pdf file & producing to browser with this servlet
    ( which i got this from same forum)
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class Isotest2 extends HttpServlet
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, java.io.IOException
    //String file = request.getParameter("file");
    String file = new String("d:/xyz.pdf");
    if (file != null)
    File f = new File(file);
    if (f.isDirectory())
    //Do something that identifies the file as a directory...
    } else
    //otherwise, open a stram, and begin the download...
    InputStream input = new FileInputStream(f);
    response.setContentType("application/pdf");
    response.setBufferSize(8192);
    response.setHeader("Content-Disposition","attachment; filename=\"" + f.getName() + "\"");
    OutputStream output = response.getOutputStream();
    int count = -1;
    byte[] buffer = new byte[8192];
    while((count=input.read(buffer))!= -1)
    output.write(buffer, 0, count-1);
    output.close();
    input.close();
    but it is unable to open pdf file giving error
    "There was an error opening this document. the file is damaged and could not be reapired"
    what is the problem? [ PDF  file is not damaged !]
    pls help me out
    thanks

    Probably because you aren't writing the last byte read every time through the while loop.

  • I shall open delete my present account with iTunes and open a new one - but I do not have the password. How can I then delete the present account??

    I shall open delete my present account with iTunes and open a new one - but I do not have the password. How can I then delete the present account??

    Since you can't delete Apple IDs and having multiple Apple IDs can cause confusion, what you may want to do is rename your existing Apple ID to the new email (desired Apple ID).  That would in effect do what you want, get rid of the old and give you the new.
    See "Apple ID: Changing your Apple ID"
    ivan

  • Difference between Report Template "Standard (PPR)" and "Standard"?

    What is the difference between Report Template "Standard (PPR)" and Report Template "Standard"? What does PPR mean and what makes it different? Why would you use PPR rather than just standard?
    Thanks,
    Linda

    Hello,
    PPR (Partial Page Refresh) is just a term used to describe some AJAX pagination and sorting functionality, it's just a holdover from before the term AJAX existed.
    You can just change the template and on your report to enable that functionality. In 3.0 it will just be on off switch in your pagination options.
    Carl
    Message was edited by:
    Carl Backstrom

  • Can someone please help, I have a dvd disk containing lecture videos, on a Windows pc it works fine, and the disk opens to the dvd menu. However on my macbook pro running Mountain Lion, it opens as a data disk, with video and audio in two seprate files??

    Can someone please help, I have a dvd disk containing lecture videos, on a Windows pc it works fine, and the disk opens to the dvd menu. However on my macbook pro running Mountain Lion, it opens as a data disk, with video and audio in two seprate files??

    You may need a 3rd party application to view the DVD in a wWindows format such as
    http://flip4mac-3.en.softonic.com/mac
    https://www.macupdate.com/app/iphone/5758/vlc-media-player

  • How do I sync Google contacts.I've tried opening Address Book, clicking "sync with Google"  and clicking onSync icon. But no luck

    How do I sync Google contacts.I've tried opening Address Book, clicking "sync with Google"  and clicking Sync icon. But no luck

    just enable iCloud sync and then configure, setup and then disable it. Re-setup Google and it will work

  • Missing points + error when attempting to report them with form

    Heya, I made a substantial purchase (multiple appliances) on the website on June 15 and the points aren't showing up in any way (pending or other). When I try to fill in the form for missing points, I get this message "The information entered doesn't match our records. If the purchase was made in the past few hours, please try again later.". And, obviously, the purchase was made many weeks ago, so that's not the problem.  Where do I go from here?  Thanks.

    Good afternoon jblob, and welcome to the Best Buy forum,
    After looking over your information using the email address you registered with the forum, I can confirm that the purchase in-question is attached to your My Best Buy account.  That is why you have been encountering errors while trying to report it as "missing" on BestBuy.com.  You will not see points emerge as pending until after the items you purchased have been shipped or delivered, and once those points are pending, they should officially post within 20 days.
    If points have not officially posted to your My Best Buy account 20 days after the final delivery or if you have any additional program related questions, then please do not hesitate to send me a private message and I will see what I can do to help.  You can send a private message by clicking on the blue button in my signature that is labeled "Private Message."
    Thank you for posting and for being a My Best Buy member.

  • Can't open profile manager for mac with terminal command

    i have tried to open profile manager version 0.3.0 11/4/11 3:31 PM
    with every command that an extensive search has revealed. each attempt yields a "no such file or directory response"; e.g.,Last login: Tue Nov 29 00:26:23 on ttys000
    Welcome to Darwin!
    r-c-wolins-computer:~ rcwolin$ /Functions/firefox.app/Contents/MacOS/firefox -profilemanager
    -bash: /Functions/firefox.app/Contents/MacOS/firefox: No such file or directory
    r-c-wolins-computer:~ rcwolin$. i'm using a macbook 3,1 with os 10.6.8 and ff 4.0.1. what am i doing wrong and how can i rectify it?
    thanks for your help. this is making me crazy.

    yes i did. it is in the applications folder. however, the default path when i open a shell won’t get me there and i don’t know how to change it. it should be /don’t forget to smash the state [my computer’s name]/macintosh hd/applications/browsers/firefox.app [or something to that effect].
    also, when i drag profilemanager .app into terminal shell i get
    r-c-wolins-computer:~ rcwolin$ /Applications/ProfileManager.app
    -bash: /Applications/ProfileManager.app: is a directory
    does this mean that profilemanager.app is a directory? if it is, how do i access it?
    further, if /Firefox.app/Contents/MacOS/firefox-bin -profilemanager is supposed to be where the command indicates, it isn’t. how do i get it there?
    thanks for your help. you bailed me out before when i was perplexed about .sqlite files. i appreciate it.

  • How to setup the email service & report template with BO XI3

    Hi,
    I'm new to BOBJ. Can anyone share your experience and guidelines on setting up the email server? I tried to do it in CMC, yet it doesn't works.
    My requirement is that :
    1. I need to send the WebI report to a group of users in a specific datetime(scheduler). Can BO XI3 works in this way?If yes,then how?
    2. Is there a way to configure the WebI report with Company Logo and Company Name? Maybe we can called it as a report template, so the Company Logo and Company Name will appear whenever the user create any new report. How should I handle this?
    Please advise.
    Much appreciation for your help!
    Best regards,
    Tee

    1. There are a few steps to set up an email server. The best guide to this is the BOE administrators guide, which you can access at help.sap.com or try this link http://help.sap.com/businessobject/product_guides/boexir31/en/xi3-1_bip_admin_en.pdf
    You will want to go the section on Email destination properties.
    Basically you will need the details of your SMTP server, and enter details for the appropriate job server(s).
    2. To setup a Webi template you create a report off of a Universe, format it so it displays your company logo in your header (look at the properties tab), and hard-code your company name, or use a dimension object with your company name in the query.
    Do your formatting on this simple report how you want it, i.e. fonts, borders, shading, page margins etc. Then in your query strip out all query objects apart from at least one, which is common between all your universes (i..e you could define a dummy variable like Today's date in all your universes).
    Save this report as 'Template Report' or similar, and ask all your users to use that as the starting point. So they would edit the template report, re-point the report to whatever universe they wanted then save it as a different name. Make sure they don't overwrite the template report.
    Good luck!

  • Need photo management template with search and browse capability

    Dear all,
    I want to develop a photo organiser with search and browse capability as a fundemandal features. I'd like to know wether there are any source code or template available as I dont want to start from zero.
    Thanks for your help.
    Sengly

    Because i am anxious to get an answer and I am not sure which forum is the most suitable one.
    Looking forward to have some ideas from all of U. ;)

  • Report writing with Department and Accounts in rows

    My client, BPC 10 MS, has a reporting need both Departments and Accounts being in the rows.  For example, in the photo below the first two rows are departments, the third is a group of accounts and the fourth is a department.  And then a subtotal is needed.
    I am thinking a heirarchy will help but this is accross dimensions.  Then I thought maybe copy the data to a different grouping of accounts to facilitate.
    Any ideas or suggestions.

    The report will not be static.  Here is what I did for one section of the report. And may have to do it for others as well.  Their are additional requirements that will make this a challenging one as well.
    I made two reports: One with projects in the row axis and one without.  I then used the formula in the function bar (as a local member) to summarize the data.
    What do you think?
    An additional requirement is that in one section I will need to have NET_SALES projects as ALL and the license revenue expanded.  Can this be done in one report?

Maybe you are looking for

  • Problem with HP Universal PCL5 and W7x32

    Hi, if i try to connect my Network Printer i get the following error message and my spooler service crashes serveral times a day. The Printer is a HP LJ 2300 The Printer Server is SBS2003 (all Updates)  it is the actual universal printer driver / plz

  • Server monitor broken after upgrade to 10.4.11

    I have a Macbook client which was running 10.4.10 I also had the server admin tools installed to monitor approx 30 servers, some PPC, some Intel, OS's ranging from 10.4.7 to 10.4.11. I have upgraded my MacBook to 10.4.11 The server monitor tool is 1.

  • I can't access folders in my e-mail client with FF4 or FF5

    My e-mail client is eircom.net. Up to Firefox v4 I neevr had a problem using this service. The service also works fine in IE. However, with FF4 and, now, FF5 it is impossible to access folders within the e-mail database. This means that, if I have e-

  • Upgrading from OS 10.5.8

    I have a 2009 Mac mini (2GHz Intel Core 2 Duo with 4GB DDR3 memory) running Leopard (Mac OS 10.5.8).  Can I upgrade directly to Mountain Lion (I suspect not) on the hardware and, if not, what interim steps are needed?  Is 4GB suffucient to run Mounta

  • Why on earth is my (fairly new) mbp slowing down

    I purchased 15" mbp last September... am running 10.6.6 it's always slowing dow now..  and I get that **** color wheel that spins and spins...  and while it's spinning I can't switch apps or do anything else.. this really drives me nuts -- and ******