Excel Addin issue

Hi There,
I am wondering if the issue happens to others or not, but some of our excel addin users have the following issue:
They use Excel addin Lock, send and unlock the data, however when they do "Retrieve", there is nothing showing up at excel. (default calculation is executed before the retrieve). However the other users can retrieve from their excel addin.
Sometime when excel is restart then retrieve works.
Any idea?

1.User is able to login to the application but when trying Essbase->retrieve nothing is displayed.So, No problem with the user .... but have you used admin credential and tried?
2. I took some combination and tried to retrieve but nothing is displayed..no data. No error message also. Have you checked the sessions of a user who is unable to retreive the data??What i mean is session created for that user ???
3. Now user is receiving "Runtime error 53". file not found "essxcln.xll"I think the file Essxcln.xll is not there...Check in Hyperion->bin->"Essxcln.xll" it should be there...
if it is available open excel template and goto->tools->addin->Hyperion->bin->select "Essxcln.xll" and click "okay"
1. Which version of essbase are you using ???
2. Have you tried in Different system with similar configuration...??
Edited by: Prabhas on Aug 31, 2011 3:22 AM
Edited by: Prabhas on Aug 31, 2011 3:27 AM

Similar Messages

  • Facing issue with excel addin..

    Hi All,
    Am using excel addin from long back for pulling data from essbase.
    Now am facing issue like when am open excel sheet in can see Addin tab but am opening am not able to see Essbase to retreive.
    I went in to options and replaced with essexcln.xll file and i can able to see eebase and when i close excel sheet again facing same issue again i have replace essexcln.xll file.
    Am not understanding y its happenning pls help me out.
    Thanks,
    SM.

    Hi SM,
    Make sure its not in the Disabled Items of the Excel.
    Click on File > Options > Add-Ins > Manage: Disabled Items > GO.
    A new window will open where you can see the disabled items. There you can see the essexcln.xll file just click on it and enable it. Close your all excel sheet and then reopen.
    Hope this helps.
    Greetings
    SST.....

  • Essbase Excel Addin on 64 Bit Windows 7 and 64 bit Office 2010

    Hi Everyone,
    I have installed 11.1.2.2 on server with Essbase and Shared Services.
    Now, on the client I have 64 bit Windows 7 and 64 bit office 2010.
    I tried installing Excel Addin client only (without Essbase client) and restarted machine after install.
    After install Addin didnt come up automatically and i tried to manually set the add-in, I'm getting an error "This is not a valid add-in"
    Is it because i am using 64 bit of office and have to go back to 32 bit.
    Isnt 64 bit supported for latest 11.1.2.2 Essbase ?
    Any ideas or experience in this regard will be helpful to me as our company is going for Windows 7 and Office 2010 across the business users and if 64 bit Office is not supported or has issues i would have to suggest them to go with 32 bit Office 2010.
    Thank you.

    for 64 bit i guess its not avaiable for 2010 excel
    but you can download 9 version or 11.1.1.3 with patch below is link.. its just a client ~~~
    https://support.oracle.com/CSP/ui/flash.html#tab=PatchHomePage(page=PatchHomePage&id=gj46o799()),(page=PatchSearchResultsHome&id=gj46pr1y(search=%3CSearch%3E%0A%20%20%3CFilter%20name=%22patch_number%22%20op=%22IS%22%20value=%2210383144%22%20type=%22patch_number%22/%3E%0A%20%20%3CFilter%20name=%22platform%22%20op=%22IS%22%20value=%22%22%20type=%22platform%22/%3E%0A%3C/Search%3E&incFamilyProds=false&flag=search))
    ~~~More info from oracle support ~~~~
    Support for Microsoft Office 2010 has been added to the following releases:
    Smart View:
    Essbase v9.3.3 for Client Third Party Software.
    Smart View v11.1.1.3.02. This release is available as Patch 9889521. It offers support for 32-bit Office 2010 for Smart View only.
    Smart View v11.1.2.1. Download the EPM System Release 11.1.2 Smart View for 32 bit Office 2010 from Oracle Software Delivery Cloud. Select the Product Pack "Oracle Enterprise Performance Management System" and the appropriate Platform.
    Excel Add-in:
    Essbase v9.3.3 for Client Third Party Software.
    The Support Matrix and documentation for 9.3.3 can be found at: http://download.oracle.com/docs/cd/E10530_01/doc/nav/portal_1.htm
    Oracle Hyperion Essbase Client 11.1.1.3.500.. This release is available as Patch 10383144.
    Essbase v11.1.2.1. Download the EPM System Release 11.1.2 Excel Add-In for 32 bit Office 2010 from Oracle Software Delivery Cloud. Select the Product Pack "Oracle Enterprise Performance Management System" and the appropriate Platform.
    Note: 64-bit Office is not currently supported as of December 2011.   However, it is planned to be supported with SmartView only in the next release which is due early 2012.  The classic Excel add-in will not support 64 bit Office regardless of version

  • How to check from code in Excel Addin that Excel is embedded in Microsoft word

    We've developed an Excel Addin in C# for Excel 2010 and it works perfectly OK. But one issue is reported very recently as below.
    1. Microsoft word document is created with an embedded excel work sheet.
    2. Save the document and close.
    3. Open the word document and try to edit the work sheet there.
    4. Following error comes.
    "The program used to create this object is Excel. That program is either not installed on your computer or it is not responding.
    To edit this object, install Excel or ensure that any dialog boxes in Excel are closed."
    5. This is because, our Addin is initialized and one excel process is running.
    6. If the Excel Addin is disabled, above work flow works correctly.
    Please let me know how to determine from the Excel Addin that the excel worksheet is embedded in another applicatoin. Because I want to disable the Addin in those cases and enable it if the Excel is opened standalone. The Addin is developed in C#.

    Hi,
    Since the error message, please try to install this Hotfix test if it works:
    http://support.microsoft.com/kb/2596494
    Note: Delete the Excel instance running in the background(Go to your task manager and delete it) before opening your Word document and edit your embedded Excel.
    If the issue still exists, please see the article and try the solution which I copied here:
    "The basic simple answer is to place a Marshal.ComReleaseObject(Wb) at the end (or better, in the Finally block) of your event handlers. This will properly allow Word and excel to handle the OLE communication by not having VSTO hang on to an instance
    handle of the workbook, therefore causing the error.
    And this is not carte blanche to start placing ComReleaseObject() all over your code. I have found VERY VERY few limited cases where using ComReleaseObject() in an add-in necessary. And this is one of them."
    http://davecra.com/2012/10/09/vsto-and-comole/
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    George Zhao
    TechNet Community Support

  • Is it possible to add Attribute(column) to entity via Excel addin?

    I can create an entity via the excel addin and update data in it but i cannot add additional columns (attributes)  to it via the excel addin once its created. am i missing something or is it just not possible?

    Winston, is this still an issue?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!
    I worked around it using the excel addin, but the question is to see if its possible to do this in teh MDS web UI, without using excel, as its not very good design to have to jump from the browser based designer to excel and back in order to manage an MDS model.

  • Excel Addin or SmarView showing #MIssing

    Hi There,
    I have my outlines and cube built and data load is successful, I only load one month of data for testing, in my statistics tab, it shows no. of existing blocks has 20,878, however, when I preview data or use either SmartView or excel addin, it always #Missing, I also run the default Calc, it is still showing this.
    Anything I can check on this issue?
    Thanks

    if/when I have a problem like this I start with something very basic and work backward.
    Get a single row from your load file(sql) and in excel enter all the values to try to pull that intersection of data. I'll assume it is at the lowest level of all the dimensions (If not, you have a different problem). If the data exists for that intersection, I would start zooming out one dimension at a time until you do not have data. The first piece will prove you loaded values, the second that you aggregated the database (yes a calc all should have done that, but if you had intelligent calc on, in some instances it might not. ).
    If you do not have data, I would try to load the data again and pull it before you aggregate the database, its possible something in the calc wipes out the data. check to make sure all the data is loading at the lowest level

  • Unknown server error in Bi Excel addin

    Hi All
    Recently we have developed some reports for excel addin and when we are trying to run we are getting an error "Unknown Server error" , where if we run different report from the same folder , we are getting the prompts and were able to run them.
    In the newly created report , we have used reference filters , that are filters which are saved and used in different reports , we have added them in this report. Is this issue ? I have shared those filters for a sect of groups which run these reports , even then we are getting the same issue.
    Can somebody help me on this?
    Regds
    Mano

    Mano,
    Can you enable tracing (Oracle BI -> Prefrences -> Advanced ->Check all boxes in the Advanced tab for tracing.Navigate to Drive\Program Files\Oracle\BIOfficeExcel\Log ) and paste the log error here?
    Also make sure "Access SOAP" privilege is granted to everyone.
    Regards,
    Dpka

  • HttpWebRequest_WebException_RemoteServer error when opening MDS Explorer and Excel addin also throws an error

    HI,
    I am facing a big problem every now and then and  It is intermittent is what i have seen.
    I keep getting be bleow error messare on my MDS Explorer. I am having MDS2012 installed both UI and excel addin gives error 
    My machine is a 2008 R2 Enterprise Web Server x64
    I have checked my Authentication settings, and Windows Auth is enabled for the site and for Services folder and so is Anonymous on Services folder.
    The error happens both on the machine itself and from a client machine.
    The Same time excel addin throws the below error
    But when do a complete  Restart of the server or Do a IISRESET on the server by going to >> RUn >> IISRESET ,
     it starts working back normally. But this keeps happening very often. How to solve this . It is getting irritating for customers to use it. Please help.
    This is the log details say:
    ===================================
    The requested service, 'http://ausapexweb01:81/service/service.svc/bhb' could not be activated. See the server's diagnostic trace logs for more information.
    Program Location:
    Server stack trace:
       at System.Runtime.AsyncResult.End[TAsyncResult](IAsyncResult result)
       at System.ServiceModel.Channels.ServiceChannel.SendAsyncResult.End(SendAsyncResult result)
       at System.ServiceModel.Channels.ServiceChannel.EndCall(String action, Object[] outs, IAsyncResult result)
       at System.ServiceModel.Channels.ServiceChannelProxy.InvokeEndService(IMethodCallMessage methodCall, ProxyOperationRuntime operation)
       at System.ServiceModel.Channels.ServiceChannelProxy.Invoke(IMessage message)
    Exception rethrown at [0]:
       at Microsoft.MasterDataServices.AsyncEssentials.AsyncResultBase.EndInvoke()
       at Microsoft.MasterDataServices.AsyncEssentials.AsyncExecuter`1.EndExecute(IAsyncResult ar)
       at Microsoft.MasterDataServices.ExcelAddInCore.ConnectionManager.<>c__DisplayClasse.<TestConnectionAsync>b__c(IAsyncResult ar)
       at System.Threading.Tasks.TaskFactory.FromAsyncCoreLogic(IAsyncResult iar, Action`1 endMethod, TaskCompletionSource`1 tcs)

    Hi Tejaswini,
    Please refer to the following article to troubleshoot this issue:
    http://blogs.technet.com/b/beatrice_popa/archive/2013/01/31/master-data-services-issue-with-https-error-message-httpwebrequest-webexception-remoteserver-arguments-notfound-debugging-resource-strings-are-unavailable.aspx
    Regards,
    Elvis Long
    TechNet Community Support

  • Every time i open excel i have to add Excel addin manually

    Hi All,
    Every time i open excel i have to add Excel addin manually is this a know issue.
    Excel Addin 11.1.1.2
    OS : Windows Vista 64 bit
    Office 2007 32 bit
    Regards,
    Mink

    I'm guessing you did an uninstall, right?
    If not, please try it. If so, take a look at the penultimate post in this thread: http://www.network54.com/Forum/58296/thread/1214384130/Disabling+Excel+Add-in+from+Excel+Startup. It will show you the registry settings for 11x add-in. I would make sure those were gone as well.
    Then the old reinstall game under an admin id.
    And this is so stupid, it probably doesn't bear mentioning, but be sure that no instances of EXCEL.EXE are running when you do all of the above.
    Regards,
    Cameron Lackpour

  • Excel Addin stops working when an other excel spread sheet is open

    Hi,
    I'm sure many would have faced this issue of,excel addin retreive either gets no results or gives an error message when an other spread sheet is active.
    Is there a work around or any option set up to get over this isssue. The version of essbase 11.1.2.1
    Thanks
    SC

    it happens when you open many excels ..and which u cant see in ur own desktop ..where when u go to task manager u can see excel process running at back end by killing those u can overcome the issue
    more over some time .xla gets corrupted or disabled which can be solved by going to excel help >about excel u can find disabled .xla files which u can refresh ...
    l..
    And some time u can see u try to retrive data in one sheet where data will be retrieved in another sheet ...like this there are many where the list is endless .. so mostly restarting excel will do ..Hope this gives u some workaround :)

  • Regarding connectivity to IR studio after installation of excel addin

    Hi Frnds,
    Iam facing a issue i have installed interactive reporting for a user and then later i have installed excel add in.
    Before installing excel addin user was able to connect to essbase cubes before through brio but later installing excel add-in he was unable to connect essbase cubes through.
    What would be the issue
    Thanks,
    KRK

    Hi,
    You may try the following---
    Go to 'My Computer'---> Right Click----> Properties---> go to 'Advanced'---> in that, open 'Environment Variable'---> In the list, find 'ARBORPATH' which should only contain value '<<Drivename>>:\Hyperion\AnalyticServices'
    If there is any other value, you may remove and save it and come out of that.
    After that, please check whether the IR and Excel add-in both working fine. Please let me know it works or not.
    Thanks & Regards.

  • Problems with running excel addins

    Hi,
    I use ActiveX to store measurement data aquired from LV in an Excel
    spreadsheet, which works fine so far. In one of the data columns though
    I wanna use an Excel Addin to automatically calculate and update the
    values.
    However, opening the Excel spreadsheet from LV does not start up the
    AddIn at all, though it works correctly whenever I start up Excel
    manually.
    I realised there's an object AddIn in the property node of
    "_Excel.Application" and I can invoke a method "Add Excel.AddIns",
    which has a file name as an input. I tried to connect the
    AddIn-Filename *.xla to that input which results in an error message:
    Error -2146827284 occurred at Exception occured in Microsoft Office
    Excel, Die Add-Methode des AddIns-Objektes konnte nicht ausgeführt
    werden
    (translated: Add method of the AddIn-object could not be executed)
    How do I start up the AddIn correctly? Im a newbie with AcvtiveX and
    grateful for any easy to understand support on that issue. Can anyone
    recommend me some useful literature to learn more about ActiveX?
    Thanks for your help...

    Hi r_keller,
    could you tell me a little bit more about your application? Which AddIn do you wanna use? What do wanna calculate?
    Here is a link regarding ActiveX:
    http://msdn2.microsoft.com/en-us/library/default.aspx
    Go to (from the menu to the left):
    Office Developement >> Microsoft Office 2003 >> Office 2003 >> VBA Language Reference >> Microsoft Excel Visual Basic Reference >> Reference >> Properties/Methods.
    Maybe you wanna install the Office Help, as well.
    Location of ActiveX Object Model Documentation for Microsoft Office:
    http://digital.ni.com/public.nsf/allkb/29CDE4332C4E6A27862570AE006ECBF4?OpenDocument
    Here is the documentation regarding AddIn from the Office Help:
    AddIns Property
    See AlsoApplies ToExampleSpecifics
    Returns an AddIns collection that represents all the add-ins listed in the Add-Ins dialog box (Tools menu). Read-only.
    For information about returning a single member of a collection, see Returning an Object from a Collection.
    Remarks
    Using this method without an object qualifier is equivalent to Application.Addins.
    Example
    This example displays the status of the Analysis ToolPak add-in. Note that the string used as the index to the AddIns collection is the title of the add-in, not the add-in’s file name.
    If AddIns("Analysis ToolPak").Installed = True Then
        MsgBox "Analysis ToolPak add-in is installed"
    Else
        MsgBox "Analysis ToolPak add-in is not installed"
    End If
    Is that what you wanna do?
    Bye
    Daniel
    NIG

  • Excel Addin and SmartView disappear from excel

    Hi There,
    We use Excel 2007, Excel Addin and SmartView have been working fine, but it "disappear" from the ribbon or menu all of sudden, I check Excel Addin, it shows Essexcln and Oracle Hyperoin SmartView for office under "Active Application Add-ins".
    Any advice?
    Thanks

    I had the same issue once. It turned out that some SAP query addins did not get along with essbase add-in and bullied it out of the playgroud. You might want to check on that.

  • How to retrieve sharepoint list data and show it on excel-addin using C#

    Hi,
    we have a sharepoint list where all students are present. we wanted to get the data from the list and show it via excel addin (VSTO) (something like save,retrieve buutons) . we have some more business logic which need to be performed before the data is retrieved
    . once data is shown on excel , user modifies it and update/save the record back to sharepoint.
    can you please give some samples and suggest any links to start with development.
    Thanks
    chaitu

    Hi chaituatp,
    For this requirement, I would suggest you to get familiar with how to create VSTO applications, and how SharePoint object model works. Here are some sample code about this:
    How to: Retrieve List Items using JavaScript:
    http://msdn.microsoft.com/en-us/library/hh185007(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/office/ee534956(v=office.14).aspx
    VSTO application show data in datagridview:
    http://stackoverflow.com/questions/16926275/simple-example-of-vsto-excel-using-a-worksheet-as-a-datasource
    Thanks,
    Qiao
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Qiao Wei
    TechNet Community Support

  • Export to excel - Formatting issue - OBIEE 11.1.1.5

    Hi All,
    When an analysis is exported to Excel, some of the values are showing some strange behaviour i.e. some values are multiplied by some huge number as you can see in the excel screenshot below.
    BI Analysis Screenshot:
    http://i44.tinypic.com/331eopf.jpg
    Excel Screenshot:
    http://i44.tinypic.com/34snqko.jpg
    Is this BI issue or an Excel setup issue? And how to fix it?
    Thanks in advance.

    Hi,
    We too faced the similar issue.
    We tried ROUND function and it was coming with proper formatting.
    Try and let me know further.
    Regards,
    MuRam
    NOTE: Please mention if this resolved your problem/still facing and close the thread to assist others with similar problems.

Maybe you are looking for

  • Dynamic Parnter links in SOA 11g

    Hi, Can some one help me.? here is my requirement My process has to call 1 to N number of webserivces parallelly based on the user selection. Each Webserivce will have different input payload , output payload and endpoints. Is anybody know how to ach

  • Random Numbers Using Dashboard Widgets

    I'm developing a widget and I've noticed that the javascript call Math.random() returns the same sequence of values every time I place the widget. This seems to only be a problem in the dashboard, because when I load the widget in safari (or any othe

  • Can't connect to windows sbs 2003 using Leopard...

    Hey there... I'm one of 3 Mac users at our office. We use Windows Small Business Server 2003. Since upgrading to Leopard, I can no longer access the network shared folders. Didn't even think about this when upgrading. Our IT guy is strictly a Windows

  • Will my data  be in roaming in the florida panhandle? i am on an alltel plan from north louisiana

    i was with alltel when verizon bought it and though i tried to change to verizon plans twice at contract renewal i am still on my original alltel plan and coverage area which results in roaming charges when i leave north louisiana or south arkansas a

  • Backing up 200Gb

    Does anybody know how many hours take backing up a database with 200GB of data with RMAN? What do you think is the more efficient way for baking up 200Gb of data? Thanks