Unable to open a Webi document : 'alertDlg' is undefined

Hi,
Since few days, I have the following warning "alertDlg is undefined" when I try to open a Webi document.
The only way to see my document is to see him in modification mode.
My environnement : Bo Xi 3.1 SP3 + IIS 6.0
Somebody has already had this probleme?
Thanks

Hi,
For this, if the user is added in admin group the reports will open. Otherwise assign admnistrator privileges to the mentioned Id and check.
If you don't like to do so try this 'move the report to another folder and then move it back, it works'.
All the Best
Madhu....

Similar Messages

  • I am unable to open attachments (Word Documents, Excel file, Adobe) from my Gmail with Firefox.

    I am unable to open attachments (Word Documents, Excel file, Adobe) from my Gmail with Firefox. My computer freezes when I try to open the (email attachment) file. Task Manager says "not responding".
    You can respond to [email protected]

    You may first want to look into Safari's "Installed Plugins" section within the browser. This is (usually) found under the Safari Help header in the top of a browser. I say usually, because I don't use Safari often and mine is an older version. They handle applications and plugins like most others, to a point.
    I see in Safari Installed Plugins that mine would use
    application/pdf
    Acrobat Portable Document Format
    Acrobat Reader & reader plugin v9.5.5 for web browsers
    (in Safari 5.x, where I looked into this)
    While I use FireFox, SeaMonkey (Mozilla) and others, where I can choose in preferences the helper applications to open from the browser, Safari has different methods; so if you can change this in the preferences or settings of Safari in a later version I am not certain.
    You could see what the defaults are by using Safari help menu to open the Installed plugins, and maybe find out what happend to Adobe reader plugin. Could be it was 'sandboxed' in a later OS X and needs to be installed differently to be accepted as safe.
    It is easier to set how a file type is handled once it is inside the computer and not held in the browser; by file type in general or specific to each single document. I do both, and seldom let an a browser do these things due to security considerations. I download and open them, only then if I feel they are safe.
    Sorry to not have a specific answer for that anomaly.
    Good luck & happy computing!

  • Unable to open the Excel document in browser

    Hi,
    I have configured excel service in CA, and i started Excel calculated service. but
    unable to open the excel document in web browser. getting below error message.
    ULS LOG
    Excel Services Application Web Front End acbd
    Critical Unable to reach Excel Calculation Serviceshttp://SHAREPOINT:32843/cc8a18cec8c74085b5ea7e4167b48acc/ExcelService*.asmx.
    [Session: User: Domain\sp_webapp] 7574e2c9-a664-46e2-9e43-4a3a0f1f290a
    04/13/2015 12:04:18.38 w3wp.exe (0x1FA4) 0x0468 Excel Services Application Web Front End accf Medium ServerSession.ProcessWebException:
    A Web exception during ExecuteWebMethod has occurred for server:
    http://SHAREPOINT:32843/cc8a18cec8c74085b5ea7e4167b48acc/ExcelService*.asmx,
    method: GetHealthScore, ex: System.Net.WebException: The remote server returned an error: (503) Server Unavailable. at System.Net.HttpWebRequest.GetResponse() at System.ServiceModel.Channels.HttpChannelFactory.HttpRequestChannel.HttpChannelRequest.WaitForReply(TimeSpan
    timeout), response: 'System.Net.HttpWebResponse', status ProtocolError, user name: Domain\sp_webapp. 7574e2c9-a664-46e2-9e43-4a3a0f1f290a
    04/13/2015 12:04:18.38 w3wp.exe (0x1FA4) 0x0468 Excel Services Application Web Front End
    acco
    Critical There was an error in communicating with Excel Calculation Services
    http://SHAREPOINT:32843/cc8a18cec8c74085b5ea7e4167b48acc/ExcelService*.asmx exception: The remote server returned an error: (503) Server Unavailable. [Session:
    User: Domain\sp_webapp]. 7574e2c9-a664-46e2-9e43-4a3a0f1f290a
    I have verified in IIS , excel service related Application pool has started . and unable to recycling, throwing error message not possible
    Is it requried to restart the server???

    Hi,
    Please check your event log and see if there is relevant error message.
    If you have observed event id 5021 like this "The identity of application pool 625dfcc8e4054c7d8da14feaca288250 is invalid. The user name or password that is specified
    for the identity may be incorrect, or the user may not have batch logon rights".
    Then the error indicates the issue is caused by either of these:
    1. The account doesn’t have user rights to to “log on as a batch job” and “log on as a service” in group policy.
    2. The account permission is out of sync between SharePoint database and AD.
    If not, let me know the event id.
    Regards,
    Rebecca Tu
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Unable to open any PDF document in Windream using Adobe Reader (11.0.9)

    Our company uses a document management system for storing and archiving important documents. Since updating to the latest version of Adobe Reader (11.0.9) last week, we are unable to open any PDF document using Adobe Reader. An AcroRd32.exe*32 process is launched, but the document will not open or display. Eventually we suffer a system crash. Opening any other PDF document (not stored in the archive management system) using Adobe Reader is fine. Documents can also be opened in the archive management system using Adobe Acrobat.

    Try disabling Protected Mode (see Pat's response here: Anyone having problems with the Acrobat Reader 11.0.9 update on Win7 X64?) and see if that helps...
    -Mike

  • 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

  • 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

  • Unable to open older pages documents

    hello
    i've got a problem with the pages software.
    i've got the older version of 'pages' (4.3) and i've installed just recently the new version.  at least i think i have.  when i go to apple store and see recent downloads, i can see the new version of pages has been installed/bought (although i don't recall paying for it or receiving an invoice??)
    however, i'm now unable to open any pages documents that i created in 4.3.   i keep getting the message 'a new version of pages is needed to open this document'.
    when i click on 'more info' i get the apple pages site and i click on 'view in apple store' but from the apple store the new pages is 'installed'.
    so i'm stuck and typically, like today, i reeeeeeeally need this file.
    i've got a basic mac (bought in 2010) - i'm running os x 10.9.2.  there's no updates currently available.
    any ideas anyone?? 
    many thanks
    liddy17

    You have Pages 5 in Applications folder and Pages 4.3 in Applications/iWork 09 folder.
    Pages 5 is taking command and it seems you have opened the documents in PAges 5 without knowing it though they do not look quite the same when opened. See if you can open the document in Pages 5 and then go File > revert  or File > export > Pages 09

  • Unable to open a PDF document.

    Have Adobe Reader XI.  Am unable to open PDF documents and forms that are posted on-line.  A small black square appears in the upper left corner of the screen.  Have tried suggested fixes found on your website and nothing works.  I am becoming extremely frustrated with this software.  Is there a real live person I could talk with about this problem?

    Please don't post the same question multiple times!

  • Unable to open a Page document on another computer

    I used Page to create a document and then emailed it to my home to continue working. I have Page on this computer, but when I try to open I get the message -- Unable to open “Gardiner List.pages” because it isn't a valid Pages document.

    I have just had the same problem. Another Mac user sent me a Pages 09 file that had been saved in Pages 08 format, but I could not open with my Pages 08. Then he sent me a Pages 08 file he created and I could not open that either. He also sent me a DOC version of the file, which I could open in Pages 08. Also, he had no problem opening a Pages 08 document that I sent him. Help.

  • Firefox 3.6 will not open, uninstalled & reinstalled but still unable to open any web browser except IE8

    Firefox 3.6 will not open, uninstalled & reinstalled but still unable to open Firefox or any other web browser except IE8
    == After Java update ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.4; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    Sorry Chris but I don't even get that far - after download latest Firefox - I cannot get the installation to work. I get dialogue box with "0% extraction" then nothing also cannot get Opera to install. The installation stalls at the same point of extracting the download. The only browser to work is IE8. I think it is more a Java problem as everything worked Ok until I took a Java upgrade.

  • Opening .pdf web documents with Acrobat XI Standard

    After installing Acrobat XI, when I click the hyperlink "view" for .pdf statements in either of my two brokerage company accounts, or click on a hyperlink to open a .pdf document in a web document, the .pdf gets downloaded but not opened.  So I have to view .pdf documents from my "Downloads" folder, rather than having them simply open in a new page or tab when I click on them.  (The new tab either quickly disappears or stays open, but is blank.  Only the Download location works to open the .pdf file.)  I don't know whether this is an Adobe issue with Acrobat XI or something else causing my computer not to open the .pdf files.  I am running Acrobat XI Standard in the Windows Vista Home Premium OS on a Gateway GT5678 PC.

    Many thanks for the quick response, Bill. On your hunch that the browser
    might make a difference,  I tried clicking on the same sites' .pdf files in
    Chrome and IE, rather than my normal Firefox browser. They opened on-screen
    without a problem.  Looks like I may have a Java plugin problem in Firefox,
    rather than an AA XI issue.  Also looks like Windows Vista supports AA XI
    without a problem.

  • Unable to open a link document

    Dear All,
    In test workbench , in the test case attributes tab
    there is an option for opening the linked document which is linked to test case which is not working for us and we are getting following error.
    Error message.
    no info object found for the specified context
    SAP note checked
    976971
    but it is old note....and we are solman 7.0 SP18
    Can anyone help me

    Dear Raghu,
    my ST version is SAPKITL426
    which is much higher than the one mentioned in this note.So this note cant be implemented
    can any1one help me
    Regards
    Prakhar
    Edited by: Prakhar Saxena on Nov 14, 2008 5:08 PM
    Edited by: Prakhar Saxena on Nov 20, 2008 11:11 AM

  • Unable to open a Word document?

    Hey,
    Was wondering if someone can provide me guidance as to why I cannot open a Word document sent to me (the file is received and downloaded by email).
    The error message that I get whenever trying to open the document is as follow:
    Tried opening the document using other software but without success. Also tried the suggested in the error message (i.e. repaired the file, open with text recovery... no success)
    I previously used PCs to open the same document. I notice that PCs from Asia are able in opening the file, while PCs in North America weren't... Very confused about the file type.
    Appreciate all your help!
    Peter

    Hi Csound1,
    I do agree that it has to do with the file itself. As far as I can see, the file itself is a .doc (Word document).
    I attached a document info screen shot here:
    Thanks again.

  • Unable to open WAD (Web Application Designer) SAP BW 3.x

    Hi experts
    In my computer I don´t open WAD (SAP BW 3.x)
    i make click start-> programs -> Business Explorer-> Business Explorer(SAP BW 3.x)-> Web Application Designer(SAP BW 3.x)
    appears following error:
    This application requires Internet Explorer 5 or higher
    but I have installed the Internet Explorer 8 version
    then I do not understand because can´t run the WAD 3.x
    Can anyone help me? please
    Thanks

    Hi ashutosh
    the following information of SAP GUI:
    Component: SAPLogon for Windows
    Release: Final Release 720
    Fichero: saplogon.exe
    vers.Fichero: 7100.4.17.1045
    Build: 1147943
    Patch Level: 17
    whether if it is which version of WAD but I am interested in running and to open the Web Application Designer in any of the versions: 3.x or 7.0, but the important is that can be work with some WAD model     because in version Web Application Designer 7.0 is enable pero when i search some WAD model (I know that it exists in the system) The system search says it  does not exist or no found. 
    I can't try uninstalling because I'm not a support person so I have not authorization, I'm a consultant and only want to work with  WAD models

  • Unable to open any adobe document

    After the adobe security breach I cancelled my credit card and allowed my subscription to Adobe XI Pro to cancel.  Since then I have not been able to open ANY adobe document.  This means that I get stuck in a loop and the only thing I'm getting from Adobe is high blood pressure!!!
    Any chance someone out there can tell me what to do?
    frassled

    Thanks Claudio,
    I have attempted to open adobe documents sent as attachments.  Once I click on them I am brought to an Adobe pop up which asks me to renew my subscription or manage my subscription.  Once I choose manage my subscription I am brought in to my Adobe account and see that the subscription has been cancelled.  I have found my way in to a 'loop' in which I can get no further. On one occassion I was given the option of clicking a link to allow me Chat to an Agent but there was no link.
    What other information do you need?
    regards
    Carmel

Maybe you are looking for

  • Textarea: strange vertical scroll bar

    Hi, everyone I implemented textarea with JTextPane, code is below. The problem is that, when there is only one pane in the content of HBox, the vertical scroll bar runs normal; but when there is 2 panes, the vertical scroll bar changes between visibl

  • Off-Cycle Payroll Error for Bonus

    Hi Experts, I am getting one error while i am running the off-cylce payroll live run for the employees. Current payroll payment date 31.03.2009 less than last payroll payment date 31.08.2009 I maintained the payment date as 31.03.2009 in Employee mas

  • Why the name Reverse Telnet ?

    Forgive me for this simple ( and to some, stupid) question. Why is reaching the console ports of devices attached to a terminal server called Reverse Telnet. I am confused about the "Reverse" part. 1. You reach "terminal server" by some suiteable mea

  • Burning a playlist to cd

    I've got (in my opinion!!!) a wicked playlist I want to burn to cd. I've inserted a blank Sony cd-r disk (similar to those that my mates have used before) then clicked on the playlist as instructed. The playlist is only 60.9 MB long and the cd is 700

  • Cannot sync iPhone or iPad over WIFI

    Since upgrading to Yosemite, IOS 8.1 and iTunes 12, I can no longer snyc over WiFi both iPhone 6 or iPad Mini. Both devices do not show up in iTunes toolbar over WiFi. For a brief moment after IOS 8.02 upgrade to  8.1, I was able to both connect and