Webi documents get corrupted

Hi all,
I'll try to explain the situation and hope anyone can help on it.
I am at a customer with verson 3.1. Thery are using liveoffice and xcelsius and they call webi documents from xcelsius. The strange thing is that after a while the webi document get corrupted, the universe assigned to the document seems to be missing and all the documents give up working. If you copy the universe and reassing the universe to the document it works again.
The errors we are getting are WIS 30270 processDPcommands and also with the API getblob. I have been looking but did not find any solution.
Has anyone faced something like this?
Thanks a lot

Hi Jaun,
Following information might help you to resolve the issue.
1.Business Objects Enterprise provides thresholds to protect the Web Intelligence report server and the Web Application servers from processing large chunks of binary and character data and avoid crashing.
Maximum Binary File Size: Maximum size of a binary file (for example: PDF, XLSu2026) that can be generated by the Report Server. If a binary file generated from a Web Intelligence document is greater than this limit, the generation is stopped to protect the server and an error is returned. Increase this limit if the server has to generate large binary files (for example, if Info View users view large documents in *.PDF format).
Maximum Character File Size: Maximum size of a text stream (for example: HTML, XML) that will be transferred to the application server. If a text stream sent to the application server is greater than this limit, the generation is stopped to protect the server and an error is returned.
In CMC, under Servers>Web Intelligence Report server, you can possibly set both the above values to 50MB, but you have to ensure that the application server can handle the increased load multiplied by the number of simultaneous connections. If not, it can crash and block all access to applications.
2. Ensure that the Web Application servers have enough memory available to process incoming requests. Usually the -Xmx value for java process is set at 256Mb, which is recommended to be at least 1024Mb or more depending on your Export requirements and application server limitations.
Regards,
Sarbhjeet Kaur

Similar Messages

  • WebI reports getting corrupted after pointing to different version of the Universe

    Post Author: Sujitha
    CA Forum: WebIntelligence Reporting
    Hi
    I am facing a very difficult and weird problem ..plz help !!!
    I am curently working in a project which has different phases of testing.While migrating my reports from Dev environment to SYS, I had to change the database connection in the Universe to SYS.After doing so,I point the reports (webI reports) to this new universe.
    All my report variables are getting corrupted and automatically appended with a " " in the formulae of the report
    for eg if my report variable is =if([dimension object];" ";" ")
    the variable becomes "=if([dimension object];\" \";\" \") "--- plz note that a \ gets appended in front of the " within the formula!!!
    This problem repeated when i had to migrate the reports from UAT back to SYS!!!
    I have a report which is fullly hard coded(business wants so!!) and has some 300 report variables... so I cannot manuaaly edit them in each migration
    Can you please help me if you have a work around for this issue??
    I read in BOB that its a BO bug,it it true?
    Thanks in advance

    Post Author: Sujitha
    CA Forum: WebIntelligence Reporting
    Thanks a lot for ur quick reply
    The objects in the universe are just teh same,I just import the existing universe,change the connection to SYS and then export it to a new folder.
    Its behaving weird,yesterday i createda  new folder instead of using the existing SYS folder for universe,i exported the universe.NOw I pointed the report with 300 variables to this new universe and it was working fine... and then when i did the same for the remaining reports..all got corrupted like stated before... i had to manuaaly go and esit every variable cause it was urgent for me to migrate to SYS.
    I was saved cause my report with large variables got saved!!!

  • How to get the filters of Webi document/Report using Java code in XI SDK.

    Hi All,
       I have a requirement where i have to extrcat filters from the Webi Document.using java SDK.
    I am trying to find the class called "filterable"but not able to use in my java code and will get always
    "java.lang.ClassCastException  com.businessobjects.wp.om.OMDocument cannot be cast to com.businessobjects.rebean.wi.Filterable"
    I am using the below java code like
    ReportElement re=document.getStructure()
    FilterContainer flt=((Filterable) re).getFilter()
    I am stuck and need this in uregent.
    Please help.

    Hi Rajeev,
    To retrieve a FilterContainer you will need to traverse the report structure:
    ReportStructure boReportStructure = boDocumentInstance.getStructure();
    ReportContainer boReportContainer = (ReportContainer) boReportStructure.getReportElement(0);
    FilterContainer boFilterContainer = null;
    if (boReportContainer.hasFilter()) {
         boFilterContainer = boReportContainer.getFilter();
    } else {
         boFilterContainer = boReportContainer.createFilter(LogicalOperator.AND);
    Calling boDocumentInstance.getStructure() will retrieve the entire structure for the document.
    Calling boReportStructure.getReportElement(0) will retrieve the structure for the first report of the document.
    Hope this helps.
    Regards,
    Dan

  • Scheduled Webi Report in PDF Format gets corrupted

    Hi Experts,
    When a webi report is scheduled the users that gets PDF format instance is getting corrupted intermittently.
    Error:
    Any help regarding this issue will be appriciated.
    Regards,
    Veer

    Hi Veer,
    What is the BO version and Adobe Reader version?
    Is it occuring on all machines or specific machines?
    Does same issue exist when the report is saved to PDF and not scheduled?
    Do other PDF files (not scheduled from Webi report) work fine?
    Are you using supported Adobe Reader version? Are the users using any other PDF tool to open the PDF files?
    Have the users installed any plug-in over PDF tool?
    Please provide this information in order to narrow down the issue.
    Regards,
    Yuvraj

  • After upgrading to FF7, I get Corrupted Content Error on certain web pages, Why?

    After upgrading to FF7, I get Corrupted Content Error on certain web pages, Why? When I try to log in to certain sites to get email or when I try to access a few sites I get a Corrupted Content Error message. If I use Internet explorer the sites work fine. I disabled my entire Norton internet security program and there was no change. Current OS is windows 7 on a hp platform.

    You can get such an error if there are multiple location redirects send via the HTTP response headers.<br />
    Firefox doesn't allow that for security reasons.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=681140 bug 681140] - Corrupted Content error due to multiple Content-Disposition header field instances
    ''(please do not comment in bug reports)''

  • PDF file getting corrupted while creating document

    Dear experts ,
                               we are creating DMS document using  BAPI_DOCUMENT_CREATE2 , its all working fine in DEV and Quality system but in production system in case of PDF file bapi is returning success message , but user is not able to display or see the document , getting an error saying 'There was an error opening this document. The file is damagedand could not be repaired'.
    my fuction module getting call from java webdynpro application , I have doubt on the OPEN DATASET statments
    I am using below code to transfer data to application server ,
      IF iv_file_path IS NOT INITIAL.
        SPLIT iv_file_path AT '.' INTO lv_filename lv_ext.
        CALL FUNCTION 'CV120_DOC_GET_APPL'
          EXPORTING
            pf_file   = iv_file_path
          IMPORTING
            pfx_dappl = lv_file_type.
        TRANSLATE lv_file_type TO UPPER CASE.
        OPEN DATASET log FOR OUTPUT IN BINARY MODE
        TRANSFER lv_ext TO log.
        ls_documentfiles-wsapplication = lv_file_type.
        TRANSLATE ls_documentfiles-wsapplication TO UPPER CASE.
        CONCATENATE
                           lv_filename
                            lv_ext
                            INTO lv_file_name.
        CONDENSE lv_file_name  NO-GAPS.
        TRANSFER lv_file_name TO log.
        OPEN DATASET lv_file_name FOR OUTPUT IN BINARY MODE MESSAGE lv_msg.
    **Transfer Attachment Content to Application Server
        TRANSFER iv_file_data TO lv_file_name.
        CLOSE DATASET lv_file_name.
    Please help

    After convert PDF file  you have to use following FM the u send file.
    DATA: pdf TYPE REF TO cl_hrasr00_pdf_generation.
      DATA : lt_data            TYPE solix_tab.
      OPEN DATASET filename FOR INPUT IN BINARY MODE.
      IF sy-subrc EQ 0.
        READ DATASET filename INTO filex.
      ENDIF.
      IF filex IS NOT INITIAL.
        CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
          EXPORTING
            buffer        = filex
          IMPORTING
            output_length = file_length
          TABLES
            binary_tab    = gt_objbin.
      ENDIF.
      CLOSE DATASET filename.

  • Excel files getting corrupted when editing locally

    We are getting corrupted files when using "edit locally". Editing seems to work fine, but when the next user tries to open the file it is corrupted. This error only occurs intermittently. When checking the logs I found below error message:
    #com.sapportals.wcm.repository.service.appproperties.PropertiesManager#irj#com.sapportals.wcm.repository.service.appproperties.PropertiesManager.handleCheckout(431)#System#0#####Client_Thread_13##0#0#Error##Plain###Failed to handle checkout for rid /ithw/it hw documents/Inventory/MU_Inventory.xls: com.sapportals.wcm.repository.service.appproperties.persistence.PersistenceException: [SAP_Portals][Oracle JDBC Driver][Oracle]ORA-00001: unique constraint (SAPWCM.WCM_AP_PROP_PRIMARY) violated
    ORA-06512: at "SAPWCM.WCM_AP_COPY", line 1
    ORA-06512: at line 1
    Does this have anything to do with my problem? What do I do about it?
    We're using KM Docuserver Control 6.1.5.1
    Regards
    Carl Schultze

    TSM:
    Thanks for the reply. I'd be "LOST" without you!
    Anyway, the camera only came with a Windows disk. Per the manufacturer, it doesn't need mac drivers, and the windows drivers are only for the web cam function (which i don't use.)
    The camera is formatted under FAT32 (Windows) format. I couldn't run permissions repair. I did do a repair disk under disk utility. Still having the issues.
    I tried iMovie. I can import the avi file from the camera, and it works!!!!
    So it would appear that there's a bad codec in QT/Perian/VLC?

  • WIS 30902 Error when opening a webi document from Rich client

    Hi ,
    When I try to open a webi document from local folder or import from CMS in Webi Rich client, I get the following error message.
    "An error occured while checking the document security. (WIS 30902)"
    Has any one come across this issue?
    Thanks,
    KartheeK

    In our case, we could initialize Webi Rich Client (Webi RC) successfully , but later we found that any disruption in Webi RC client connection will corrupt the client ..\LocData files used by client to dock to the CMS, causing WIS 30902 error.
    At first we thought just deleting the ..\LocData Client .lsi files fixed it. Unfortunately, there are a collection of files and folders in ..\Loc Data involved in the authentication. We already found that complete deinstall of Webi RC didn't work. Now we know the problem is in the \My Business Objects Documents\LocData values.  Deinstall of Webi RC does not delete them.
    It sounds scary, but isn't. The Webi RC will download the refreshed files it needs automatically from the CMS. However, it won't overwrite the old bad ones, and you have to do that manually.
    Solution.
    1. Logout of Webi RC. Make sure it is not running in taskmgr.
    2. Go to the client ..\My Business Objects Documents\LocData folder.
    3. Delete all the files and folders, or rename by adding .bak extension.
    4. Logon with Webi RC
    5. Corrupt files will now be resynchronized to CMS
    -Doug Grant, Haworth BI / Business Objects Architect

  • Calling up a Performance Manger SPC Chart from a WebI document

    Post Author: satwar
    CA Forum: Performance Management and Dashboards
    Please forgive my terminology, as I'm only a superuser of B.O. not a computer trained person.I have put a few years into configuring WebI document reports in InfoView of B.O. XI 2.  Our company is getting into SPC in a big way, hence my attention has turned to Performance Manager.  I was disappointed to learn that I have to create a whole new Universe of objects in Performance Manager in order to conduct SPC analysis on the variables I have been reporting in tables & graphs in WebI documents in InfoView.I can learn to accept that aspect of B.O. but I am a little concerned about my users having to navigate through Performance Manager to view SPC analytics.  My users have put up considerable resistance just navigating to WebI documents in InfoView.Hope seemed to be around the corner when I read about calling up Performance Manager analytics from WebI documents.  Having read the details it seems like these WebI documents are created in the Performance Manager Universe, not in the Infoview WebI documents that I have already developed in InfoView.If anyone can explain and clarify how this feature works, I'd be eternally grateful. 

    Post Author: jezbraker
    CA Forum: Performance Management and Dashboards
    You can Link any documents that are stored as objects in the cmc, regardless of the universe or way in which they were created.openAnalytic.jsp will allow you to open pretty much anything much as does openDocument  int the webi world.Once you create the SPC chart in process analysis youll need to view it in the control chart screen then click save as and save it into one of you folders in the corp repository. When this is done you can quickly get an example of the URI syntax by going to create new document in dashboard manger, selecting interactive metric trends, expanding navigation and legend opions, clicking browse, selecting your newly saved analytic and clicking ok.  This will but a url into the text box which you can copy and paste into your webi doc links - here's an example of the kind of thing... openAnalytic.jsp?DocumentName=MySPCanalytictest&RepositoryType=C&RepositoryName=SPCTest&DocumentExt=afd&DocumentId=AadTAN28x6lMpTxxlAhW09s&mode=full You may need to stick the odd ../../ or /jsp/ etc in front of the url depecing where you plan to call it from of course. You'll find descriptions of parameters etc for openAnalytic in the product docs. cheers,jez.  

  • Extracting SQL statement from a Webi document's data provider using SDK.

    Hi all,
    Is it possible to extract the SQL statement from an existing Webi document's data provider using BO SDK?  I've searched through the class library but haven't found any information on this yet.  If you have done it, could you provide some guidance.  Many thanks.

    I found the following Java code that might be of some help to you. I realize you are using .NET but this might push you down the right path.
    The trick here is to use the Report Engine SDK to get the DataProvider of the DocumentInstance. Then, look at the SQLDataProvider to get your SQLContainer.
    My apologies for the poor formatting. This didn't copy and paste over to the forums very well. I've cleaned up as much as I could.
    <%@ page import="com.crystaldecisions.sdk.framework.*" %>
    <%@ page import="com.crystaldecisions.sdk.exception.SDKException" %>
    <%@ page import="com.crystaldecisions.sdk.occa.infostore.*" %>
    <%@ page import="com.businessobjects.rebean.wi.*" %>
    <%
    boolean loginSuccessful = false;
    IEnterpriseSession oEnterpriseSession = null;
    String username = "username";
    String password = "password";
    String cmsname  = "cms_name";
    String authenticationType = "secEnterprise";
    try
    //Log in. oEnterpriseSession = CrystalEnterprise.getSessionMgr().logon( username, password, cmsname, authenticationType);
    if (oEnterpriseSession == null)
    out.print("<FONT COLOR=RED><B>Unable to login.</B></FONT>");
    else
    {  loginSuccessful = true;
    catch (SDKException sdkEx)
    { out.print("<FONT COLOR=RED><B>ERROR ENCOUNTERED</B><BR>" + sdkEx + "</FONT>");}
    if (loginSuccessful) { IInfoObject oInfoObject = null;
    String docname = "WebI document name";
    //Grab the InfoStore from the httpsession IInfoStore oInfoStore = (IInfoStore) oEnterpriseSession.getService("", "InfoStore");  //Query for the report object in the CMS.  See the Developer Reference guide for more information the query language.   String query = "SELECT TOP 1 * " +        "FROM CI_INFOOBJECTS " +        "WHERE SI_INSTANCE = 0 And SI_Kind = 'Webi' " +        "AND SI_NAME='" + docname + "'";
    IInfoObjects oInfoObjects = (IInfoObjects) oInfoStore.query(query);
    if (oInfoObjects.size() > 0)
    //Retrieve the latest instance of the report  oInfoObject = (IInfoObject) oInfoObjects.get(0);
      // Initialize the Report Engine  ReportEngines oReportEngines = (ReportEngines)
    oEnterpriseSession.getService("ReportEngines"); 
    ReportEngine oReportEngine = (ReportEngine) oReportEngines.getService(ReportEngines.ReportEngineType.WI_REPORT_ENGINE);
      // Openning the document  DocumentInstance oDocumentInstance = oReportEngine.openDocument(oInfoObject.getID());   
    DataProvider oDataProvider = null; 
    SQLDataProvider oSQLDataProvider = null; 
    SQLContainer oSQLContainer_root = null; 
    SQLNode oSQLNode = null;
    SQLSelectStatement oSQLSelectStatement = null; 
    String sqlStatement = null;
      out.print("<TABLE BORDER=1>");
    for (int i=0; i<oDocumentInstance.getDataProviders().getCount(); i++)
    oDataProvider = oDocumentInstance.getDataProviders().getItem(i);
      out.print("<TR><TD COLSPAN=2 BGCOLOR=KHAKI>Data Provider Name: " + oDataProvider.getName() + "</TD></TR>");
       if (oDataProvider instanceof SQLDataProvider)
    oSQLDataProvider = (SQLDataProvider) oDataProvider;
        oSQLContainer_root = oSQLDataProvider.getSQLContainer();
        if (oSQLContainer_root != null)
    for (int j=0; j<oSQLContainer_root.getChildCount(); j++)
    oSQLNode = (SQLNode) oSQLContainer_root.getChildAt(j);
          oSQLSelectStatement = (SQLSelectStatement) oSQLNode;             
    sqlStatement = oSQLSelectStatement.getSQL();     
    out.print("<TR><TD>" + (j+1) + "</TD><TD>" + sqlStatement + "</TD></TR>");   
    else
    out.print("<TR><TD COLSPAN=2>Data Provider is not a SQLDataProvider.  SQL Statement can not be retrieved.</TD></TR>");   }  }  out.print("</TABLE>");
      oDocumentInstance.closeDocument(); }
    oEnterpriseSession.logoff();}%>

  • How to add a new filter in an existing web service method (BIWS - WEBI document)

    Hello Experts, we have 7 web service query's connected to a dashboard. Basically it is one WSDL URL and 7 Get Methods...Web service queries are BIWS (via WEBI document instance). There are filters setup for each of these web service methods.
    Recently there was a request to add 2 new fields to the webi document and also the 2 fields need to be included as filters in the 7 methods. I know there is an option to edit the method, but when i edit the method, i cannot find the 2 new fields in list to set as filters.Can anybody help me understand how to add filters to an existiing web service method? I do not want to delete the method and republish the block as web service.
    Any help will be great and points rewarded.
    Thank you
    Ann

    Hi Ann,
    The reason you are not able to see any of the new columns as a option to select in your web service block is because when you have published that block, they were not present. Add these two new objects in your block and publish it again. You will be prompted for duplication content. Select the highlighted block for duplicate and now you can see the new added objects in the filter option. Update and this will overwrite your published block. Please note, web services do appear to behave weirdly when used with dashboards so I request you to please try it in a separate test report first.
    Hope that helps.
    Regards,
    Tanisha

  • WebI document output

    Hi
    I have a question.
    Whenevr a WebI document is refreshed or run manually in InfoView, and saved on the repository, is there a way to get the output file from the server?
    Does  BO save a copy of the file anywhere on server?
    I dont want to schedule the report ans store the output/mail the output. This is a report with prompts and the user needs to change the values each time he/she runs the report and thus cannot be scheduled.
    This has to be on a manual basis.
    Please help. Please let me know if the question is unclear.
    Thanks in advance.

    Thank you Kuldeep for your response.
    But i guess this is not exactly what i am looking for.
    The scenario is, the user needs to inout the values for prompts, which you rightly said can be achieved via refresh on open option.
    Now after this report is saved, there can be 2 options, either just save it to repository(which would save the structure and the last refreshed report output). Or save it to the computer as a local copy(xls or pdf).
    We actually want to use this file as a parameter file for an ETL process and thus dont want it to save to personal computer as a lcoal copy.
    I want to know if the last refreshed report is saved somewhere on the BO server, or if it can be saved to some location? And what format would this report  be in? So that the output file can be taken from server and used as a parameter file for an ETL run.
    Thanks again

  • Cannot open Webi documents from Sharepoint integration portal

    We have installed Sharepoint integration portal integration kit for BO. But when the web part is included into the page to a particular Webi document we are getting the page not found error! The document is not diaplayed.
    Also when we select a report / webi document from the report explorer web part, the opendoument method fails to display any document.
    Are we missing something here. Need some help.
    Thanks
    Edited by: Bhaswar Ghosh on Oct 22, 2008 8:00 PM

    Hi
    Did you receive any error message when you try to open the documents?
    We recommend you start your Internet Explorer in compatibality mode, and follow the advice in the article below:
    http://blogs.technet.com/b/asiasupp/archive/2011/06/13/error-message-quot-your-client-does-not-support-opening-this-list-with-windows-explorer-quot-when-you-try-to-quot-open-with-explorer-quot-on-a-sharepoint-document-library-in-office-365-site.aspx
    In addition here's a thread for your reference:
    http://social.technet.microsoft.com/Forums/en-US/3cbe6b22-e307-485b-a1af-1699cdf5ba86/office-2013-applications-are-not-able-to-open-sharepoint-2007
    Thanks,
    Tylor Wang
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here
     

  • Not able to open a webi document in java

    final String CMS = "pundl10492:6400";
              final String userID = "administrator";
              final String password = "";
              final String auth = "secEnterprise";
              IEnterpriseSession enterpriseSession = null;
              try
                   ISessionMgr mySessionMgr = CrystalEnterprise.getSessionMgr();
                   enterpriseSession = mySessionMgr.logon(userID, password, CMS,auth);
                   System.out.println("Session created : "+ enterpriseSession.toString());
                   if (enterpriseSession != null)
                        IInfoStore iStore = (IInfoStore)enterpriseSession.getService("InfoStore");
                        ReportEngine reportEngine = (ReportEngine)enterpriseSession.getService("WebiReportEngine");
                        final String query = "SELECT SI_ID, SI_NAME FROM CI_INFOOBJECTS WHERE SI_KIND = 'Webi' " +
                                                      "and SI_NAME like '%Least Accessed Documents%'";
                        IInfoObjects objInfoObjectsWIDs = (IInfoObjects) iStore.query(query);
                        IInfoObject objInfoObjectWID = (IInfoObject) objInfoObjectsWIDs.get(0);
                        int docId = objInfoObjectWID.getID();
                        System.out.println("docID : "+docId);
                        DocumentInstance doc = reportEngine.openDocument(docId);
                        FileOutputStream l_fos= null;
                        String fileName = "morcom" + "_" + userID+ "."+"xls";
                        l_fos = new FileOutputStream("D:\\_workarea\\MORCOM_POC\\reports\\"+fileName);
                        BinaryView docBinaryView = (BinaryView)doc.getView(OutputFormatType.XLS);
                        byte[] b = docBinaryView.getContent();
                        l_fos.write(b);
                        System.out.println("File created");
              catch(Exception e)
                   e.printStackTrace();
    I am trying to open a document and the code iam using is given above. I am using BO XIR3 and i get
    Exception in thread "main" java.lang.NoClassDefFoundError: com/crystaldecisions/celib/trace/h
         at com.businessobjects.sdk.plugin.desktop.webi.internal.d.<clinit>(Unknown Source)
         at com.businessobjects.sdk.plugin.desktop.webi.internal.WebiFactory.makePlugin(Unknown Source)
         at com.crystaldecisions.sdk.occa.pluginmgr.internal.PluginMgr.getPluginInterface(PluginMgr.java:291)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects.continueUnpack(InfoObjects.java:409)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoObjects.startUnpack(InfoObjects.java:361)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.queryHelper(InternalInfoStore.java:712)
         at com.crystaldecisions.sdk.occa.infostore.internal.InternalInfoStore.query(InternalInfoStore.java:566)
         at com.crystaldecisions.sdk.occa.infostore.internal.InfoStore.query(InfoStore.java:167)
         at BOTest.main(BOTest.java:42)
    error at this line:-
         IInfoObjects objInfoObjectsWIDs = (IInfoObjects) iStore.query(query);
    Can anyone give a code snippet for opening a webi document in release3. The same code works in release 2.
    Thanks
    Shruti

    You have a "NoClassDefFoundError", so a code snippet won't help.
    XI Release 2 -> XI 3, then jar files have been renamed and object files refactored.
    You've ended up with mixed XI Release 2 and XI 3 jars.  
    Remove your jars and re-add from XI 3.
    Sincerely,
    Ted Ueda

  • Saving webi document from BOXI 3.0 in excel with special character

    Issue :Saving webi document from BOXI 3.0 in excel with special character as report name then file name in excel is not correct.
    This happens only with Mozilla, get correct file name in IE.
    Steps to Reproduce:
    1)Create a simple XI3.0 webi report through mozilla browser
    2)Save the webi report with special character name for e.g øäåýþ.
    3)Open the webi report and save it as excel or pdf file.
    4)Report name øäåýþ saved, displays with other junk characters instead of actual reporta name( øäåýþ)
    5)When saving the save report through IE browser in excel or PDF  display correct report name øäåýþ in excel and PDf file.
    Even after making changes in character encoding to UTF in the Firefox options (Content tab-> font & colors : advanced button -> Character encoding does not make any  difference.
    Has anyone came across such type of issue?
    Whether this is limitation of Firefox or bug.
    Regards,
    Ketki Fadnavis

    Issue :Saving webi document from BOXI 3.0 in excel with special character as report name then file name in excel is not correct.
    This happens only with Mozilla, get correct file name in IE.
    Steps to Reproduce:
    1)Create a simple XI3.0 webi report through mozilla browser
    2)Save the webi report with special character name for e.g øäåýþ.
    3)Open the webi report and save it as excel or pdf file.
    4)Report name øäåýþ saved, displays with other junk characters instead of actual reporta name( øäåýþ)
    5)When saving the save report through IE browser in excel or PDF  display correct report name øäåýþ in excel and PDf file.
    Even after making changes in character encoding to UTF in the Firefox options (Content tab-> font & colors : advanced button -> Character encoding does not make any  difference.
    Has anyone came across such type of issue?
    Whether this is limitation of Firefox or bug.
    Regards,
    Ketki Fadnavis

Maybe you are looking for

  • Report to check authorization object used in customized programs

    Hi Guys, An auditor came and he raised a question to us, he asked whether all of our customized transactions and programs are maintained with authorization checks? The question is how can we check what authorization objects are used for our customize

  • Select file one at a time

    I just created my first automator plugin to sort and rename video files from a JVC Everio camera. Once I have the .MOD files, I am using MPEG Streamclip from www.squared5.com to convert those files into a .DV file for iDVD or iMovie. The problem is t

  • Updated to lion usb devices not being recoqnized

    After going to the apple store in Cardiff  Wales i had a fresh computer OS wise ( its a early edition 2008  mac book pro )but cant seem to get the usb to pick up my Nikon camera. found the devises in Finder but it is not showing any thing plugged in

  • Group by in Interface

    Dear all, how we can use group by in interface thanks Naseer

  • Single table Backup FND_STATS_HIST in Oracle11i

    Hi i need to purge FND_STATS_HIST table before purging i need to take backup of FND_STATS_HIST table . what is best practice for backup of single table FND_STATS_HIST ? Thanks With Regards A-Z