Unable to edit reports in FR Studio

Hi All,
        I'm using Hyperion11.1.2.2 and  getting the error bellow when trying to edit a FR report into FR Studio. Earlier it was working fine but now its not opening the reports
[2013-09-05T17:31:16.747-03:00] [FinancialReporting0] [ERROR] [] [oracle.EPMFR.core] [tid: RMI TCP Connection(7)-X.X.X.X] [userId: <anonymous>] [ecid: 0000K3_XeWz52jF1Z3qYNb1I9^TM000000,1:24762] [SRC_CLASS: com.hyperion.reporting.reportstore.ReportStoreObjectImpl] [APP: FINANCIALREPORTING#11.1.2.0] [SRC_METHOD: getModifiedBy] [[
java.lang.IllegalStateException
at com.hyperion.reporting.jsr283.JCRValue.getString(JCRValue.java:29)
at com.hyperion.reporting.jsr283.JCRProperty.getString(JCRProperty.java:99)
at com.hyperion.reporting.reportstore.ReportStoreObjectImpl.getModifiedBy(Unknown Source)
at com.hyperion.reporting.reportstore.ReportStoreObjectImpl.copyFromNode(Unknown Source)
at com.hyperion.reporting.reportstore.ReportStoreObjectImpl.<init>(Unknown Source)
at com.hyperion.reporting.reportstore.ReportStoreFolderImpl.<init>(Unknown Source)
at com.hyperion.reporting.reportstore.ReportStoreFolderImpl.getChildren(Unknown Source)
at com.hyperion.reporting.reportstore.ReportStoreFolderImpl.getChildren(Unknown Source)
at com.hyperion.reporting.reportstore.ReportStoreFolderImpl.getSerializedChildren(Unknown Source)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:303)
at sun.rmi.transport.Transport$1.run(Transport.java:160)
at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:909)
at java.lang.Thread.run(Thread.java:662)
     Does someone could Help me on that ?
Thanks
Alvaro

Hi Celvin,
        When I try to open any report, the following error pops up :
HARSnapin Initialize () Error-2147467259-;nested exception is : java.rmi.UnmarshalException:error unmarshalling return;nested exception is: java.io.InvalidClassException:com.hyperion.reporting.graphics.GridObject;local class incompatible:stream classdesc serialVersionUID= -1288366423950156093,local class serialVersionUID=-5245705824007679661
       The error at first post was taken from FRLogging file at MIDDLEWARE_HOME/user_projects/domains/EPMSystem/servers/FinancialReporting0/logs
Thanks,
Regards

Similar Messages

  • Can't edit reports in Visual Studio

    <p>I can no longer edit reports in Visual Studio 2003. The reports open properly, but I can&#39;t make any changes. Right-clicking pops up the appropriate menus, but no dialog boxes open from the menu selections. Any ideas on what I can check?</p><p> Thanx</p>

    <p>I can think of two possibilities that I was given. </p><p>1. The install of VS has some how gone bad.  You could try a repair install of Visual Studio.</p><p>2. Opening reports outside of your application can cause problems with the designer.  Make sure you are inside your application before you open your reports.  </p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Now that I have upgraded to Firefox 3.6.7 when I use Business Objects XI R3 I can no longer edit reports.....the window just goes black and nothing happens

    Now that I have upgraded to firefox 3.6.7 I am unable to edit reports in Business Objects XI (release 3) software. This was previously working fine on firefox before I upgraded.
    == This happened ==
    Every time Firefox opened
    == Today

    Now that I have upgraded to firefox 3.6.7 I am unable to edit reports in Business Objects XI (release 3) software. This was previously working fine on firefox before I upgraded.
    == This happened ==
    Every time Firefox opened
    == Today

  • T&E-Unable to edit/print expense report - Page not found or is unavailable

    Hello Gurus!!
    We have some of the users reporting that they are unable to edit/print the expense report. When they try to do that they are getting the error message "page not found or is unavailable". We verified that the URL for the PCD page parameter is being maintained correctly in the Homepage Area framework.
    Could anybody please suggest what else could be wrong?
    Thanks
    ~~MK

    Missing pemissions

  • Logon failed. Unable To Export Report.

    Hi,
    I am running visual studio 2010 ultimate edition with crystal reports for visual studio v 13.0.1.
    I get the following exception when trying to export to PDF where my report has a sub report.
    Logon failed.
    Failed to export the report.
    Error in File temp_04e1d62e-3f2c-4c44-a654-8aaa19d59ac4 {C0ABAF4C-E8A7-4633-A58F-DFAC3443AC58}.rpt:
    Unable to connect: incorrect log on parameters.
    Both the reports are bound to an .xsd file that in turn is hooked up to a stored procedure at design time (returned as a datatable object) which sets the appropriate datasource on the report object.
    If I run each report seperately and export then I can successfully see the data inside the generated PDF document. However as soon as I add a sub report and try and export, bang I get this error.
    I have been through your checklist and can confirm that your suggested settings do fit i.e Save data in report = false, case sensitivity on the db etc (this is proved by each report working when run seperately).
    Any suggestions/solutions greatly appreciated
    Thanks

    yes saving it out seperately works and connectivity appears the same also?
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using CrystalDecisions.Windows.Forms;
    using CrystalDecisions.CrystalReports.Engine;
    using System.Data;
    using System.Data.SqlClient;
    using CrystalDecisions.Shared;
    using System.IO;
    namespace Flovate.CrystalReports
        public class ReportGeneration
            private static string InstructionReference { get; set; }
            public static void CreateInstructionReport()
                try
                    InstructionReport report = LoadReport();
                    SetReportAttributes(report);
                    if (!Directory.Exists(Properties.Settings.Default.ExportReportLocation))
                        Directory.CreateDirectory(Properties.Settings.Default.ExportReportLocation);
                    StringBuilder sb = new StringBuilder();
                    sb.Append(Properties.Settings.Default.ExportReportLocation);
                    sb.Append(InstructionReference);
                    sb.Append(".pdf");
                    report.ExportToDisk(ExportFormatType.PortableDocFormat, sb.ToString());
                catch (Exception ex)
                    throw new Exception(ex.Message);
            public static void CreateInstructionExcessReport()
                InstructionApplicableExcessReport xsReport = LoadExcessReport();
                if (!Directory.Exists(Properties.Settings.Default.ExportReportLocation))
                    Directory.CreateDirectory(Properties.Settings.Default.ExportReportLocation);
                StringBuilder sb = new StringBuilder();
                sb.Append(Properties.Settings.Default.ExportReportLocation);
                sb.Append("Excesses.pdf");
                xsReport.ExportToDisk(ExportFormatType.PortableDocFormat, sb.ToString());
            private static InstructionReport LoadReport()
                InstructionReport report = new InstructionReport();
                report.Load(Properties.Settings.Default.InstructionReportLocation);
                report.SetDataSource(GetInstructionData());
                //sub report
                InstructionApplicableExcessReport xsReport = new InstructionApplicableExcessReport();
                xsReport.Load(Properties.Settings.Default.InstructionExcessReportLocation);
                xsReport.SetDataSource(GetInstructionExcessData());
                return report;
            private static InstructionApplicableExcessReport LoadExcessReport()
                InstructionApplicableExcessReport xsReport = new InstructionApplicableExcessReport();
                xsReport.Load(Properties.Settings.Default.InstructionExcessReportLocation);
                xsReport.SetDataSource(GetInstructionExcessData());
                return xsReport;
            private static void SetReportAttributes(InstructionReport report)
                //these will come from the relevant connection
                TextObject textClientName = (TextObject)report.ReportDefinition.ReportObjects["TextClientName"];
                if (textClientName != null)
                    textClientName.Text = Properties.Settings.Default.ClientName;
                TextObject textClientNamePayment = (TextObject)report.ReportDefinition.ReportObjects["TextClientNamePayment"];
                if (textClientNamePayment != null)
                    textClientNamePayment.Text = Properties.Settings.Default.ClientNamePayment;
                TextObject textClientAddressDetails = (TextObject)report.ReportDefinition.ReportObjects["TextClientAddressDetails"];
                if (textClientAddressDetails != null)
                    textClientAddressDetails.Text = Properties.Settings.Default.ClientAddressDetails;
                TextObject textTradingDetails = (TextObject)report.ReportDefinition.ReportObjects["TextTradingDetails"];
                if (textTradingDetails != null)
                    textTradingDetails.Text = Properties.Settings.Default.ClientTradingDetails;
            private static DataTable GetInstructionData()
                DataTable data = new DataTable();
                try
                    using (SqlConnection conn = OpenConnection())
                        using (SqlCommand cmd = new SqlCommand())
                            cmd.CommandType = CommandType.StoredProcedure;
                            cmd.CommandText = "spGetInstructionData2";
                            cmd.Connection = conn;
                            cmd.Parameters.Add("@InstructionGUID", SqlDbType.UniqueIdentifier).Value = new Guid("9B144C66-849E-4F03-B403-2D041E5AC420");
                            cmd.Parameters.Add("@InstructionTypeGUID", SqlDbType.UniqueIdentifier).Value = new Guid("9E9F21D8-E7BA-424C-8D18-360FDB177404");
                            cmd.Parameters.Add("@UpdateFlag", SqlDbType.Int).Value = 0;
                            cmd.Parameters.Add("@UserAccountGUID", SqlDbType.UniqueIdentifier).Value = new Guid("578BD5FC-B4EC-42E6-8423-3D68F3E77530");
                            using (SqlDataAdapter dataAdapter = new SqlDataAdapter())
                                dataAdapter.SelectCommand = cmd;
                                dataAdapter.Fill(data);
                                InstructionReference = data.Rows[0]["InstructionRef"].ToString();
                catch (Exception ex)
                    throw new Exception(ex.Message);
                return data;
            private static DataTable GetInstructionExcessData()
                DataTable data = new DataTable();
                try
                    using (SqlConnection conn = OpenConnection())
                        using (SqlCommand cmd = new SqlCommand())
                            cmd.CommandType = CommandType.StoredProcedure;
                            cmd.CommandText = "spGetInstructionApplicableExcessList";
                            cmd.Connection = conn;
                            cmd.Parameters.Add("@InstructionGUID", SqlDbType.UniqueIdentifier).Value = new Guid("9B144C66-849E-4F03-B403-2D041E5AC420");
                            using (SqlDataAdapter dataAdapter = new SqlDataAdapter())
                                dataAdapter.SelectCommand = cmd;
                                dataAdapter.Fill(data);
                catch (Exception ex)
                    throw new Exception(ex.Message);
                return data;
            private static SqlConnection OpenConnection()
                string connectionString = @"Data Source=[SERVER];Initial Catalog=[DB];Persist Security Info=True;User ID=[UID];Password=[PWD];Connect Timeout=1200";
                SqlConnection conn = new SqlConnection(connectionString);
                conn.Open();
                return conn;

  • Unable to load Reports on Web

    We are working with Developer6.0,OAS 4.0.7,
    Oracle 8.0.
    We have a static implementation. Initially,
    we had Jinitiator 1.1.7.11. Reports were working fine. Later, We upgraded Jinitiator to 1.1.7.18. From then on I am unable to load reports on the web.
    This is the URL that I am using to connect to my report http://paygoweb.telemedia.co.nz/webreports?server=rep60server.world&report=status.rdf&userid=paygoapp/pg13@paygo1&destype=cache&destype=html
    When I try to connect. IT says web site found,awaiting reply and after 1 minute or so a page is displayed saying unable to service this request please try later.
    null

    Dear Arun ,
    When I execute my query, am getting the below URL....
    http://<Company>/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?QUERY=0TCT_MC11_Q0131&VARIABLE_SCREEN=X&DUMMY=1
    When i tried executing for Web templates we are getting the error " error in Java" .Anyways we have assigned this issue to Basis guys as we don't know much whether Java Stack,FQDN are instaled or not....
    Portal connection is there but we are unable to go to the portal page....
    Thanks for the inputs....will get back to you after the response from Basis.
    Regards,
    Ugendhar
    Edited by: Arun Varadarajan on Mar 3, 2009 3:31 PM

  • Unable to load report error

    Hi
    This started with an asp.net application which I have been maintaining for several years, on an XP 32-bits box. Alas, the box died, and I have acquired a new Development machine, now with Windows 7/64-bits. I have installed Visual Studio 2010 and Crystal reports (13.0.,9), including runtime for 32 and 64 bits.
    I got the "unable to load report" error, and I think I have tried everything I could find on the web related to solving this issue.
    Finally I got Down to creating a new dummy asp.net application with a dummy report just displying the text TEST. This report Works fine when run from within VS, but if I deploy it to the web server on the Development machine I also get the unable to load report failure.
    I believe this is a configuration issue. The application has run fine for years, I just can't get it to Work on the new development machine.
    Please help
    Peter

    Make sure that process has read / write rights to the %TEMP% folder. Process Monitor may help.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • WebElements - Unable to edit WEPlatform

    Hi,
    I am new to WebElements and wanted to have a look at the functions to see how I can use in my reporting suite.
    I am using CR11 and seem to be unable to edit the WEPlatform element to select the Crystal Reports version that I use.
    I notice when I open the WebElements 246.rpt that it advises me that the report was written in a later version of Crystal.
    Is this why I cannot edit the WEPlatform element ? If so how can I obtain a version of the web elements thjat will work with my Crystal version ?
    Any help will be great.
    Cheers,
    Matt

    hi Matt,
    the users guide isn't really clear on this...i will make sure that this gets changed for the next release.
    as webelements are Custom Functions you have to disconnect them from your repository to edit them. if you right click on the platform function and choose disconnect from repository then you can edit the function to match your platform.
    once you've changed the function, you can add it back into your repository overwriting the existing one...that way when you  build a new report using webelements you don't have to keep changing the platform function each time.
    jamie

  • User unable to edit contacts

    I have a user with Outlook 2013 connected to an 2010 Exchange Server. I have a user that is unable to edit any existing contact, getting an error: Your changes cannot be saved because you don't have permission to modify some or all of the items in this folder.
    Do you want to save a copy of this item in the default folder for the item?
    I have checked the permissions on the mailbox folder as well as the Contacts folder. The user has "Owner" permission to these folders.
    No other users report the problem, and loading the users account on another computer demonstrates the same problem.
    Any ideas what I am missing?

    Hi,
    The error indicates that the issue is related to permission. I recommend you use the Get-MailboxPermission -Identity xxx |fl cmdlet to check if the permission is right. What's more, please check if OWA has the same issue.
    If the issue persists, I recommend you remove the owner permission at first. Secondly, use the following cmdlet to add the owner permission and check the result.
    Add-MailboxPermission -Identity "xxx" -Owner "xxx"
    Hope it helps.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • Unable to edit boilerplate text in layout

    After a recent dev 1.6.1 upgrade, I am unable
    to edit boilerplate text in the layout editor-
    my OS - solaris 2.8
    reports version : 2.5.7.17.0
    DB version : 7.3.4.4.0
    It works with Solaris 7.
    Your help is appreciated.

    Hi GJMCMC,
    In the text Determination Procedure for Customer(SD) with t code VOTXN goto change and check one field is Ref/Duplicate, tick it and check if its working with it.
    Thanks & regards
    Deepak Sharma

  • Unable to edit maintenance plan Sql Server 2008R2

    Hi All,
    I am unable to edit sql server maintenance plan and it is failing continuously from job as well.When I try to open the same the throws an error:
    Microsoft SQL Server Management Studio is unable to load this document.:
    Error loading from XML. No further detailed error information can be supplied for this problem because no Event objects was passed where detailed error information can be stored. It used to work pretty well in the past.Throws same error when I try to connect
    remotely.
    Regards
    Rahul

    Has the MP been developed in SQL Server 2008r2 as well?
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Unable to edit parameter in cr viewer

    Hi All,
    I have a report having parameter.I selected show in viewer panel as Editable.
    When I run in cr viewer 2011 But I am unable to edit the parameter value.
    Please suggest

    The Standalone CR Viewer is Not meant to 'refresh' data - it cannot connect to the database to retrieve new records.
    It can only work on 'saved data'.
    This Viewer can only refresh reports that are hosted on the BO or CR Servers.
    If you don't have these products, you can only share a copy of the report 'with saved data' and the users can view it in the free viewer - not refresh.
    If you're trying to refresh data then you have the following choices other than the above:
    1) Build a custom CR Viewer using CR SDKs that can refresh and bring in updated data
    2) Browse the free/inexpensive 3rd-party viewers that can refresh data at:
    http://kenhamady.com/bookmarks.html
    -Abhilash

  • Limited features for crystal reports in visual studio 2005

    Post Author: jag
    CA Forum: .NET
    Hello All,
    I have problems in finding solution for the following problems in line graph in crystal reports in visual studio 2005.
    1)Cant customize the colour of line in the line graph. (line by series only i wanted not by group)
    2)Cant customize the width of line.
    3)Cant customize the line style display.
    4)Cant customize the trend line or target line.
    Can you please help in resolving these problems....
    Do i get any extended crystal report software for visual studio 2005 to get all features in crystal reports 10 r 11 versions?
    Do you recommend 3dgraphics macros is better and economical to get extended features of crystal reports in visual studio 2005?
    Can anyone please help me..iam in need of these solutions urgently....
    Thanks in advance for your time......cheers

    Post Author: Argan
    CA Forum: .NET
    I am not really familiar with all of the options for charting and what is or isnt in the bundled version.
    You can download the CR XI R2 developer edition eval from the website and see if it gives you the graph options that you want.  If it does then I think you can buy it at an upgrade price since you already have the bundled edition.

  • Crystal Reports for Visual Studio 2010 runtime LICENCE

    I want to welcome everyone. It's my first post on this forum.
    I want to provide my Windows Form application to a client. This application was written in VS 2010 and it uses SAP Crystal Reports for generating simple report.
    I've read [Crystal Reports Licensing Explained|http://www.sdn.sap.com/irj/boc/index?rid=/library/uuid/10cd9e15-120d-2c10-3fb5-be299000b6b7&utm_source=crvs2010&utm_medium=lp&utm_campaign=licensing_explained] pdf and I've learnt that in my case redistribution of software that embeds the Crystal Reports runtime engine is free.
    My question is:
    Is there something else I must include in my application package for instance a licence file? Or maybe I just have to include SAP CR runtime or ask user to download it from the SAP web site and that's it?
    Marcin

    Hello Marcin,
    Welcome.
    Please note that whenever you distribute your application (which uses Crystal reports) to others who may not have Crystal designer product, you need to provide the runtimes along with the application. The runtimes provide the necessary dlls in the machine for running Crystal inside the app.
    You can use an exe to install the CR runtimes and then deploy your app. OR you can include the msm files and create a deployment package.
    You will get the runtimes for CR4VS2010 [here|/people/coy.yonce/blog/2010/11/12/crystal-reports-for-visual-studio-2010-production-release-now-availableCystlR%2528SAPWeblogs%253ACrystal+Reports%2529].
    You might want to check [this|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233313335333833323336%7D.do] link for details.
    Forgot to mention:
    we have dependency on C++ runtimes. Please look at [this|Visual studio setup project with merge modules - C++ problem; thread for details or do a quick search, in this forum.
    Hope it helps.
    Thanks.
    Edited by: A G on Dec 2, 2010 6:03 PM

  • How to get Crystal Reports for Visual studio Download

    I'm confused!  All the links seem to take me to this page SAP Crystal Reports, developer version for Microsoft Visual Studio: Updates & Runtime Downloads
    It has lots of fixes and updates but I can't seem to find the actual Crystal reports for Visual Studio 2010 download.  What am I missing?  Am I just blind?
    EDIT - I reread the page "All support packs are full builds of Crystal Reports for Visual Studio 2010/2012, thus it is not necessary to update incrementally"  Does this mean  the update download includes everything I need to integrate CR with my Visual Studio 2010?  If so, is it save to install the update over a previously installed version?  I have one machine that has both CR for VS 2005 and CR for VS 2010.
    thanks for any advise

    Does this mean  the update download includes everything I need to integrate CR with my Visual Studio 2010?
    Yes.
    Follow the below procedure to integrate CR for VS 2010 with VS 2010.
    from the link http://scn.sap.com/docs/DOC-7824 download 'Support Pack 10 Install executable' (first row first column).
    Make sure you have VS 2010 installed. Now install the above downloaded exe on top of VS 2010.
    That is it, above steps should integrate CR with VS 2010.
    Even if you have a previous version of CR for VS 2010 installed, iw ould not make a difference as it is not a incremental build but a full build.
    I hope this clears the confusion.
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

Maybe you are looking for