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]

Similar Messages

  • Unable to Open the Word Document

    Hi Experts,
    I have a scenario to generate word document with the information comming from R/3 into bookmarks located in the document. This we are doing with WordML. We have uploaded WordML templates to server and at the run time we are getting the content from those templates replacing book marks with corresponding data comming from R/3.
    Once we replace all those book marks and we are writing into another ".doc" file and opening the same ".doc" file in another window.
    This functionality (opening document in another window) is working fine in my system (runnig with MicroSoft Word2003). Where as in another systems (runnig with MicroSoft Word2007) is not working, in that system it's opening new window and immediatly it's closing with out waiting to chose either "Open", "Save" or "Cancle" option from user.
    Following is the code used for this purpose:
    IWDCachedWebResource cachedWebResource=WDWebResource.getWebResource(inp,WDWebResourceType.DOC);
    cachedWebResource.setResourceName("XXXXXXXXXX.doc");
    wdComponentAPI.getWindowManager().createNonModalExternalWindow(cachedWebResource.getURL(),"XXXXXXX.doc").open();
    NOTE: inp is the inputstream which contains the content that has to open in the final ocument.
    Please help me out in where exactly it's causing the problem.
    Thanks,
    Udaya Dumpa.

    Hi Udaya Dumpa,
    I am currently working on a project of my own where I would need to open different versions of Word documents using different version of office.
    I am using the method cl_gui_frontend_services=>EXECUTE and just passing the location and file name to the parameter document.
    I have tested this and so far have no problems.

  • Download to PDF - Unable to open the Downloaded Document.

    hi all
    I am reading all the files in a KM repository using webdynpro. I am able to open and save all files except PDFs. However I am able to open the PDF before uploading to KM and also using the KM interface. But when i download it using the Download UI in Webdynpro it fails to open. I understand that it is an encoding problem during the retrieval. I used the Resource property to set the type in the Download UI.
    Can anyone tell me how to get around this?
    Server WAS NetWeaver 2004s.
    NetWeaver Studio 7.0.07.
    thank you.
    reg
    vln

    Hi,
    I am not sure, but i think you should create a Input or OutputStream to upload / download a pdf. Maybe this tutorial is helpful.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/3547e8cd-0401-0010-a4a0-c7667f3263b2">pdf Api</a>
    Kind regards,
    Maarten.

  • Error when opening exported Excel document

    hi,
    i'm using the following to let the user export JSP to Excel file:
    response.setContentType("application/download ");
    response.setHeader("Content-Disposition","attachment; filename=test.xls");
    problem happens only for the first when i try to open the file in excel.
    Excel gives me " 'test.xls[1]' could not be found. Check the spelling of the file name, and verify that the file location is correct. ...."
    Subsequent tries work fine with no problem.
    i noticed that Excel is trying to open a file with a different name, appending [1], which obviosuly doesn't find in its first try.
    i would appreciate any kind of clue.
    thank you.

    I got this from a different post on this forum.
    Basically, on your JSP page which you want to export to Excel, set the content type and header as below. Then the browser(Internet Explorer) will try to open the excel document in itself.
    <%
    response.setContentType("application/vnd.ms-excel");
    response.setHeader("Content-Disposition","attachment; filename=" + "test.xls" );
    %>
    <HTML>
    <head>
    <title>Excel Compatible HTML</title>
    <style type="text/css">
    td.currencyCustom { mso-number-format:"$#,##0.00_);[Red]($#,##0.00)"; text-align: right; }
    td.currencyDefault { mso-number-format:"Currency"; text-align: right; }
    td.integer { mso-number-format:"#,##0_);[Red](#,##0)"; text-align: right; }
    td.percent { mso-number-format:"%0.00"; text-align: right; }
    </style>
    </head>
    <body>
    <table summary="Excel formats supported" width="500">
    <tr><td colspan="2"><h1>Excel Compatible HTML</h1></td></tr>
    <tr><td colspan="2"><p>This is a simple demo of how HTML tables can be extended
    by using CSS styles recognized by Excel 2000. I haven't yet
    been able to find any documentation on these styles. Most of this was
    derived by saving a simple spreadsheet using the <i>Save as Web Page ...</i>
    option then experimenting with formats using the <code>mso-number-format</code>
    CSS attribute.</p>
    <p>Excel will convert unformatted numbers to the specified style so formatting
    them isn't required if the output is only to be used by Excel. Otherwise, they
    should be formatted to display correctly in browsers.</p>
    <!--[if !excel]>  <![endif]-->
    </td></tr>
    <tr><td>12,345.60 with class="currencyCustom":</td><td class="currencyCustom">12,345.60</td></tr>
    <tr><td>12345.6 with class="currencyCustom":</td><td class="currencyCustom">12345.6</td></tr>
    <tr><td>-12,345.60 with class="currencyCustom":</td><td class="currencyCustom">-12,345.60</td></tr>
    <tr><td>-12345.6 with class="currencyDefault":</td><td halign="right" class="currencyDefault" x:num="-12345.6">($12,345.60)</td></tr>
    <tr><td colspan="2"> </td></tr>
    <tr><td>123456789 with class="integer":</td><td class="integer">123456789</td></tr>
    <tr><td>-123456789 with class="integer":</td><td class="integer">-123456789</td></tr>
    <tr><td>123,456,789 with class="integer"</td><td class="integer">123,456,789</td></tr>
    <tr><td>-123,456,789 with class="integer"</td><td class="integer">-123,456,789</td></tr>
    <tr><td colspan="2"> </td></tr>
    <tr><td>%100.00 with class="percent":</td><td class="percent">%100.00</td></tr>
    <tr><td>%43.21 with class="percent":</td><td class="percent">%43.21</td></tr>
    <tr><td>1.0 with class="percent":</td><td class="percent">1.0</td></tr>
    <tr><td>0.4321 with class="percent":</td><td class="percent">0.4321</td></tr>
    </table>
    </body>
    </html>
    Currently, i'm trying a different approach.
    I'm using POI from jakarta site to create Excel file manually.
    here's a snippet of my code in my web request handler that creates an Excel file.
    String exportType =(String) request.getParameter("export_type");
    if(exportType!=null && exportType.equals(WebConstants.EXPORT_TYPE_MS_EXCEL))
    HSSFWorkbook workbook = new HSSFWorkbook();
    HSSFSheet sheet = workbook.createSheet("Test Sheet");
    HSSFCell cell = null;
    HSSFCellStyle cellStyle = workbook.createCellStyle();
    HSSFFont font = workbook.createFont();
    font.setColor((short)0xc);
    font.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
    cellStyle.setFont(font);
    HSSFRow titleRow = sheet.createRow((short)0);
    cell = titleRow.createCell((short)0);
    cell.setCellValue("Order ID");
    cell.setCellStyle(cellStyle);
    cell = titleRow.createCell((short)1);
    cell.setCellValue("Order Time");
    cell.setCellStyle(cellStyle);
    for(short i=0; i<blotterModelList.size(); i++)
    BlotterModel model = (BlotterModel)blotterModelList.get(i);
    HSSFRow row = sheet.createRow((short)(i+1));
    row.createCell((short)0).setCellValue(model.getOrderId());
    row.createCell((short)1).setCellValue(model.getOrderTime());
    ServletOutputStream stream = response.getOutputStream();
    response.setContentType("application/vnd.ms-excel");
    workbook.write(stream);
    stream.flush();
    stream.close();
    Sir: I am having touble with my excel exporting.
    Could you show me what you are doing and I can go to
    school on it? Thanks!

  • 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!

  • I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem.

    I installed Firefox 3.6. Since then, I am unable to open pdf documents in Firefox. I get a black page. I tried opening the same document in Internet Explorer. It worked fine. I recently installed Nuance's pdf reader and thought that might be the problem. Uninstalled it. Still have the problem with Firefox.
    == This happened ==
    Every time Firefox opened

    How about if you right click on the PDF and select Save Link As..., and then open it locally from within Reader? Does it work ok then?  That might be a workaround until the issue within the browser is resolved.
    Rob Jaworski
    Intl Program Manager

  • Error While opening Excel documents in browser

    Hi All,
              I have few documents in my SharePoint 2010 and most
    of them are excel documents.When the users are opening the excel work book in browser i am facing the error as below.Can any one help me how can I over come from this issue
    Thanks,
    Quality Communication Provides
    Quality Work.
    Sid

    Hello,
    I assume that you have Excel installed in your computer.
    So, I think that this error is a problem with your Internet Explorer configuration. 
    Try to open them with IE 32 bits.
    Hope this helps.

  • I am unable to open the microsoft word and excel and pdf files after upgratding to 4.3.3 os version

    I am unable to open the microsoft word and excel and pdf files after upgratding to 4.3.3 os version. I was able to access them in 4.3.1 .
    Can anybody tell when is this getting resolved.

    http://support.mozilla.com/en-US/kb/Recovering+important+data+from+an+old+profile
    Your old Profile is located here in Vista & Win7: <br />
    ''drive'':\Users\''Windows login user name''\AppData\Roaming\Mozilla\Firefox\Profiles\''profile_name''

  • Unable to open the document when combining files.

    We have a user that gets an error when combining files. It says
    Unable to open the document:
    <Filename and path>
    Please check to see if you have read permission for the above file.
    Retry and cancel buttons.
    We get this error on every subsequent file, it works on the first one after the computer starts.
    This computer has Windows Vista Business with SP2, Adobe Acrobat X with the latest patches.
    It doesn't matter if the files are local or on a network drive, the same always occurs. I have cleared
    all user and system temporary files, re-installed, verified the Acrobat Add-In for Word 2010 is active,
    verifed the PDF printer is working fine. It only happens when trying to combine files. I have given the
    user local administrator privilidges, tried with my account that has domain admin priviledges, no luck.
    I really need some suggestions...
    Thanks,
    Tom

    I have found out from Adobe technical support that this is a known issue with Office 2010 SP1 installed.
    This is an FYI for anyone else experiencing this issue, remove SP1 and it will work ok.
    They said an update to correct this issue will be coming within the next quarter.
    TP

  • Acrobat X Pro - Unable to open the document

    I'm having issues testing Acrobat X Pro trial version and Office 2010 on XP Pro SP3.  When trying to convert a Word document I consistently get the message - Unable to open the document.  Please check to see if you have read permission for the above file.  If I hit "Retry" a few times it will eventually convert the document.  If I initiate the conversion from within Word it seems to work fine. I've confirmed that permissions are not the problem.  It doesn't matter if the files are on the C: drive or a network location.  Most of my users use the combine so converting from within Word is not an option.  Any help would be greatly appreciated!

    Sorry but no.  Big bummer.  Keeping me from going to Win7 and Office 2010 on many systems. Honestly,  I haven't looked to see if there are any patches avaliable since I orginally posted.

  • I am using Ubuntu 10.04, when I am trying to open a java dependent browser i am unable to open the content.There is some problem to load Doc,exl files with the content transfer protocol of the linked browser.

    I am working on Ubuntu 10.04,
    Whenever I use to access a site which is java based site I am having problem to see the contents.There are several instants while browsing that we clicks a link & it opens a site which is a Ms DOC/EXL file which should get opened after the click & happens with the help of java script.
    My problem is that I am unable to open the sites which is related to content transfer protocol of DOC/EXL
    Plz do help.
    Regards
    Srijan

    Hi Grace,
    The free app MPEG Streamclip may be able to convert the file to a more suitable format. It can be downloaded from the developer's site here:
    http://www.squared5.com/svideo/mpeg-streamclip-mac.html
    Here's a User Tip by AppleMan1958 that provides some more information about MPEG Streamclip (it's about importing homemade DVDs, but similar principles apply):
    https://discussions.apple.com/docs/DOC-3951
    John

  • XenApp 6.5 and Acrobat issue: "Unable to open the document".

    We are using XenApp 6.5 with a published desktop Windows 7 x64. If we open Acrobat Pro 10.1.5 and Create PDF we get an error "Unable to open the document". If we do the same action directly on the XenApp server then it works as expected. The Word doc in question was created by the test user and is located on their Home drive area so the permissions are correct. If i try to save the Word doc as PDF it works fine directly and indirectly.
    There seems to be lots of people asking similar questions here:
    http://forums.adobe.com/message/4275334
    Thanks
    Gary

    From the link below:
    http://www.adobe.com/devnet-docs/acrobatetk/tools/AdminGuide/citrix.html
    what does: Deploy enterprise files to the product’s directories (rather than per-user directories) so they are available to all users mean in practice...?

  • Excel service and OWA - getting ERROR while trying to open/edit Excel documents

    Hi All,
    We have configured SharePoint 2013 with Excel Service and OWA (Office Web Apps).
    After configuring, we are able to view/edit Word or PowerPoint documents from the browser (as OWA is configured). But we are getting errors while trying to open/edit Excel documents.
    We are not able to view/edit the excel workbook from the browser (through OWA).
    To open the excel in the browser, decision has to be taken at the farm level on what to be used – Excel Service or OWA Server? Is it possible to do setting at site collection level?
    Error details are given below:
    Event code: 3005
    Event message: An unhandled exception has occurred.
    Event time: 3/25/2013 1:29:08 PM
    Event time (UTC): 3/25/2013 7:59:08 AM
    Event ID: fc2e0530f493493896e6c8b6297a0423
    Event sequence: 10
    Event occurrence: 3
    Event detail code: 0
    Application information:
        Application domain: /LM/W3SVC/2/ROOT/x-1-130086717598089315
        Trust level: Full
        Application Virtual Path: /x
        Application Path: C:\Program Files\Microsoft Office Web Apps\ExcelServicesWfe\
        Machine name: VHYDMANTHSTP-02
    Process information:
        Process ID: 1252
        Process name: w3wp.exe
        Account name: NT AUTHORITY\NETWORK SERVICE
    Exception information:
        Exception type: ArgumentException
        Exception message: An entry with the same key already exists.
       at System.Collections.Generic.TreeSet`1.AddIfNotPresent(T item)
       at System.Collections.Generic.SortedDictionary`2..ctor(IDictionary`2 dictionary, IComparer`1 comparer)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.GetInstalledUICultures()
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.IsUICultureSupported(String cultureTag, CultureInfo& cultureInfo)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICulture(String cultureTag, Boolean useOleo, Boolean allowCustomFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICultureFromFrontEnd(String uiCultureTag, Boolean allowFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentCulturesFromFrontEnd(String uiCultureTag, String dataCultureTag)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.SetCurrentCulturesFromContext(HttpContext context)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.PreProcessRequest(HttpContext context)
       at Microsoft.Office.Excel.WebUI.XlPreview.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    Request information:
        Request URL:
    http://mysrevr/x/_layouts/xlpreview.aspx?ui=en-US&rs=en-US&WOPISrc=http://myservernames1/_vti_bin/wopi.ashx/files/f36d669ceb814d67bdad0e1e1f98e466&wdSmallView=1
        Request path: /x/_layouts/xlpreview.aspx
        User host address: 10.81.138.92
        User: 
        Is authenticated: False
        Authentication Type: 
        Thread account name: NT AUTHORITY\NETWORK SERVICE
    Thread information:
        Thread ID: 13
        Thread account name: NT AUTHORITY\NETWORK SERVICE
        Is impersonating: False
        Stack trace:    at System.Collections.Generic.TreeSet`1.AddIfNotPresent(T item)
       at System.Collections.Generic.SortedDictionary`2..ctor(IDictionary`2 dictionary, IComparer`1 comparer)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.GetInstalledUICultures()
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.IsUICultureSupported(String cultureTag, CultureInfo& cultureInfo)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICulture(String cultureTag, Boolean useOleo, Boolean allowCustomFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentUICultureFromFrontEnd(String uiCultureTag, Boolean allowFallback)
       at Microsoft.Office.Excel.Server.ExcelServerRegionalSettings.SafeSetCurrentCulturesFromFrontEnd(String uiCultureTag, String dataCultureTag)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.SetCurrentCulturesFromContext(HttpContext context)
       at Microsoft.Office.Excel.Server.ServiceHost.ServiceHost.Microsoft.Office.Excel.Server.Host.IEwaHost.PreProcessRequest(HttpContext context)
       at Microsoft.Office.Excel.WebUI.XlPreview.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

    I have the same issue while opening the file , i have checked every thing twice. but unable to fix this thing . can any one help.
    One more thing which is i am wondering none of the MS representative replied on this post which is originally posted on March 27-2013.
    is microsoft alive??
    Imran Bashir Network Administrator MCP, JNCIA-EX,ER,JNIOUS +92-333-4330176

  • How do I convert an excel (2008) document to Numbers?  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid"

    How can I convert an Excel (2008) document to Numbers.  When I drag the Excel document onto the Numbers icon I get, "Import error.  The file format is invalid.

    That extension identifies the most current Excel file format, a format that can be opened by Numbers '09 (and by Numbers '08).
    A check with Numbers '09 shows it capable of opening .xlsx files when right-clicked (and Numbers chose as the application to open, when double-clicked (if Numbers has been set as the default application to open this type of file, or when dragged to the Numbers icon in the dock.
    I see two possibilities for Numbers inability to open it and the message you receive:
    1. The file is not actually an Excel file, and the sender has added the .xlsx extension to the filename manually.
    2. The file is an Excel file, but has somehow been corrupted.
    Have you tried opening the file with a different application? The open source Office suites, OpenOffice.org, LibreOffice and NeoOffice can also open .xlsx files. If they're unable to open this one, that would point toward the file itself being faulty. You can download these applications from their rspective websites, linked in the names above. All request a donation to support future development, but only Neo requires one to have been made recently, and that only for the current release (which won't be necessary to open .xlsx files).
    Regards,
    Barry

  • About IRM(WINDOW INTERNET EXPLOER not open the sealed document)

    IE not open the sealed document ,but firefox,google exploer is OK
    for example open the http://127.0.0.1:16200/cs/groups/personalspaces/documents/document/fdsafdsafds.sxls
    the message is Oracle IRM Version 11.1.1.5.0 This file is sealed. You must install the Oracle IRM Desktop version 11 or higher to access this file. If it is already installed, it may not be correctly configured. Open the Oracle IRM Desktop options panel and inspect all settings. See Oracle Information Rights Management at http://www.oracle.com (Sealing engine: C++; 11.1.41.6) 痧痧~ 6.065e2a915-8c2b-4121-8823-27ae7cd9860337c8da32-5420-4146-816c-27f63de27250a1d4496e-ab57-49fa-801c-9eb222fb1b4ahttps://carrierlu-PC:16101/irm_desktop65e2a915-8c2b-4121-8823-27ae7cd98603Book1.sxls2012-03-01T06:48:38Z2012-03-01T06:48:38Zenopenseeedit2012-03-01T06:48:38Z2012-03-01T06:48:38Zapplication/vnd.sealed.xls230401fy7xbq+uQJ1jr77heRCfA==JzqViqSGVIjZwG3Sy2jmHg==016384 oracle.irm.signature.v1I78nGhUuyLczgRABDROVdsOB6L03l7SFEJ63OdLWEvg= 
    this is the way ?
    the irm_server1 log is not error

    Hello again,
    In your original post, you said you were trying to open a sealed Excel spreadsheet. This would not open in a browser. It opens in Excel, so the condition of the browsers is not related to your problem.
    More likely, what is happening is that Windows recognises that the file is coming from an unsafe location and blocking the file from being opened. Save the file locally and try to open it. If it still doesn't open, right click on the file andselect Properties. In the General tab, click the Unblock button if it's present. Then double click the file to open it.
    Let us know how you get on.
    Regards,
    Frank.
    Edited by: Frank Abela on Mar 2, 2012 1:59 PM

Maybe you are looking for

  • How to set user defined type ( SDO_GEOMETRY ) in binded parameter to NULL

    I am trying to send a null sdo_geometry object as parameter to a stored procedure by a call to setNull( paramIndex, oracle::occi::OCCIPOBJECT ) on the statement object, but I am getting the following error: "ORA-24360: Type Descriptor Object not spec

  • How to transfer data from BW to R/3

    Hi Sdn, Here is an urgent requirement for me. The issue is that I need to transfer the data from BW to R/3 system.please give some suggestion, how to do that. thanks & regards hemachandran

  • Library Flamingo Folder?

    Has anyone seen this folder: /Library/Documentation/Resources/Flamingo What is it's purpose or should I remove it? Has an index file that seems not the work. Sniffing around looks to want to get to http://flamingo.is

  • Delete PSA

    Hi guru´s I have a question about delete of psa tables. There are a function to delete all the PSA tables with date parameters?? For example I want to delete al PSA data greater than 8 days. I want to do this for all the psa tables. I know that there

  • IPhoto Won't show nef files

    When I download my raw (nef) files, iPhoto converts them to jpeg.  When I transfer the file to Photoshop Elements 10 it shows up as a jpeg.  I want to edit the raw file.  Help