Installing Essbase 11.1.1.2 Excel Add In - Help needes as getting error

Hi,
I have done these steps:
1 - Unzipped the V15966-01 file into install directory.
2 - Unzipped the V16855-01 file into the install directory.
3 - Unzipped the V15981-01 file into the install directory.
When I goto run the install and I get to the screen to choose Essbase 32bit Client. It does not allow me to install and comes up with this error:
Assemblies missing: Component required next assemblies to be installed: commonComponents.
Any idea what I'm missing?
Thanks

Resolved.. Had incorrect file listed.
Correct files should be:
1 - Unzipped the V15966-01 file into install directory. (Installer)
2 - Unzipped the V16851-01 file into the install directory.(Foundation Services #1)
3 - Unzipped the V15981-01 file into the install directory.(Essbase Client)

Similar Messages

  • Installing Essbase 11.1.1.2 Excel Add In (Client) and EAS on remote laptop

    Hi,
    Just got done installing Essbase 11.1.1.2 on a single Win 2003 server. Everything is installed EAS and Essbase Client. However, I need the Essbase Client to be ported to many users that are running Excel 2003. Also, i need EAS client to run from a laptop as instead of having to remote login to the server. My question is do I go through the same install process as I did for Essbase server? Or is there a smoother less complicated way to install. I think for the EAS client, it's ok but trying to roll the Excel Add In to hundreds of users, this could get messy.
    Thanks

    Systems management software like Microsoft SMS, Landesk or Radia should be able to help you to deploy software to many PC.
    You can ask your IT whether they have this in place.
    Otherwise, you can consider to use Smartview instead of Essbase Add-Ins, Smartview allow you to deploy the software to many PC and future upgrades.

  • ITunes 10.5.2 failed on my Windows XP system.  Now my phone is not recognized.  I tried installing manually.  I tried to repair using Add/Remove programs.  Still get errors.

    Attempted update to iTunes 10.5.2 failed on my Windows XP system.  Now my phone is not recognized.  I tried installing manually.  I tried to repair using Add/Remove programs.  Still get errors.

    Try doing it in a WIndows Safe mode - Restart computer and hit F8 key right after your see BIOS check and choose "Safe mode with networking"
    Do the SFC /SCANNOW again.
    If that does not work, whilst in safe mode, download Free Malwarebyte software from CNET's Download.com.  Install, update virus definition then perform a full scan.  Remove if it did find some viruses or trojans.  Restart computer.
    Back to regular windows, do the SFC /SCANNOW again.
    If that doesnot work, check to see if your Hard drive has errors or bad sectors
    GO START BUTTON /COMPUTER, right mouse click OS (C:) and choose "Properties"
    Choose "Tools" tab and under error checking, click "Check Now".
    Make sure "Scan for and attempt recovery of bad sectors" is checked and click start.
    Restart windows will perform the above task to fix errors  This may take hours depends on how big is your Hard Drive
    Good Luck!!.

  • Essbase - Data not saving in excel add in

    Hi everyone,
    This is my first time building a cube from scratch and would appreciate if you guys can point me to the right direction. I am currently running into issues with saving data using Excel add in. I have a BSO cube with 6 small dimensions (Currently with less than 15 members in each) + 2 additional attribute dimensions. I created the cube manually in EAS and did a sample data load through a flat file without any issues.
    I have been able to use the Excel add in to retrieve the sample data and navigate the tree without any issues as well. However when I tried to retrieve/lock and send , manual changes on the grid, the data doesn't seem to save. When I hit retrieve my changes are gone.
    I haven't made too many changes to the default settings but have checked that the application allows for updates and that I have the Application Manager Application access as well. Are there any settings I should look into that might be causing this?
    Thanks in advance for your help.
    Tony

    two possible issues
    1. The member you are trying to send data to is a dynamically calculated member
    2. you are trying to send data to a member that is the only child of a parent and the parent is not tagged as never share. If there is a one to one relationship between a child and parent, there is an implied share that is created. The NEver Share on the parent will fix that.

  • Excel Add-In with WorkbookOpen event causes error in Word

    EDIT: New information
    I have narrowed the problem to a specific code. Following code produces the error message (see below in the original part):
    public partial class ThisAddIn
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    Globals.ThisAddIn.Application.WorkbookOpen += Application_WorkbookOpen;
    void Application_WorkbookOpen(Excel.Workbook Wb)
    int i = 0;
    private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
    #region VSTO generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InternalStartup()
    this.Startup += new System.EventHandler(ThisAddIn_Startup);
    this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
    #endregion
    It does not matter whether I unregister the WorkBookOpen event in the ThisAddIn_Shutdown method or not. Whenever this piece of code is present Word gives me the error.
    It seems to be a bug in Excel. Can anyone test and confirm my assumption? Does anyone know a workaround?
    ORIGINAL
    I have a problem with my Excel add-in (VSTO) in a very specific situation. For some reason I can't debug the add-in when it is happening.
    In Word it is possible to insert and edit OLE objects. In this specific situation a user wants to insert and edit an Excel sheet (INSERT -> Table -> Excel Spreadsheet).
    Let's say that Excel is not running. In an ideal world the Excel process is started by Word when the user edits the spreadsheet. The Excel process is terminated when the Word document is closed. This works fine, if my Excel add-in is deactivated.
    If the Excel add-in is activated the user cannot edit the spreadsheet in Word. An error with following message is shown within Word: "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". Also the Excel process which was started by Word is not terminated when closing the document or exiting Word. Excel started by the user does not give
    any error message. No dialog is opened. The add-in works fine. So there must be an error with the Excel add-in when Excel is started by Word.
    I can reproduce the error with and without an attached debugger (Visual Studio). But for some reason there is no exception caught by Visual Studio while the error is happening.
    Can anyone help me how to investigate on that error?
    Yavuz

    Hi Yavuz,
    Based on my investigatiton, when the Excel doesn't start up by user the add-in would shut down immediately. So when the workbook open event was fired the callback already be relreased.
    As a workaround, we can use application.UserControl to detect whether the Excel applicaiton was started by user. And here is the code for your reference:
    private void ThisAddIn_Startup(object sender, System.EventArgs e)
    if(Application.UserControl)
    Globals.ThisAddIn.Application.WorkbookOpen += Application_WorkbookOpen;
    Please let me know whether it works for you.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Help! Still get error message after installing new hard drive

    The original problem is below and thought that it would help to include it to see the initial problem.
    I went out and bought a new hard drive (500gb) and installed it in my laptop.  I went to use the restore disks and I got the same exact error mentioned below.  I used a set of disks that I copied from the original recovery disk and it still did the same.  What is the error code and how can I fix this!!
    Please help!!
    I have a Satellite A215-S7444 laptop and everytime I go to restore the drive to it's factory settings using the Toshiba recovery wizard I get the following error:  ERROR: 03-EEEE-000, AN ERROR HAS OCCURRED, PRESS [OK] TO TURN OFF COMPUTER.
    Just a note, I have used my recovery disks to restore the factory settings before with no problems at all, now I get this message.  All the files are accesible on the CD and I have no virus' on my computer.
    Lastly, the image part of the drive (The one that is like 1.5 gb) which is usually visible is not any more and has not been for a bit when you should see it when you open "My computer".  You can however see it when I go to "Administrative Tools-Computer Management."  It states that the drive is Healthy (EISA Configuration), type is basic, and there is no file system associated with the drive and there is no drive letter for it either.

    Thanks for your quick reply!  I was wondering if anyone would reply!
    I made the copies on a suggetion that the original may be scratched or something so I figured what the heck?  I did format the hard drive though.  It is a Seagate 500gb hard drive.  I only formatted the whole drive and figured that the restore disks would make the additional partition.
    Aside from that, it's the same error message that I had on the original drive.  The original drive and OS works (Vista), but I wanted to restore it because I just wanted to wipe everything and start clean.  What can be causing the error message, and what IS the error message?
    Anymore suggestions or help would be great as I am in desperate need of getting my computer back to working.
    Thanks again for replying!

  • New install of SQL Server 2012 x64 Express on Windows 2008 Server, keep getting error when using Management Studio?

    After installing the x64 with all tools excluding the SDK from the SQL Express Edition, I go to Management Studio, log in and get the error when I click under the Instance name- Databases...Have reinstalled many times, removed all directories and registry
    keys from both HKEYs(regular and Wow6432Node) before rebooting and reinstalling. No VS installed on this computer..put it looks like it installed "MS Visual Studio 2010 Shell (Isolated)-ENU" and "Visual Studio 2010 Prerequisites".....tried working past
    the error, it just hangs the Studio after it tries to add things...HELP..PLEASE!!!
    Object reference not set to an instance of an object. (Microsoft.VisualStudio.Platform.WindowManagement)
    Program Location:
       at Microsoft.VisualStudio.Platform.WindowManagement.DocumentObjectSite.QueryService(Guid& guidService, Guid& riid, IntPtr& ppvObject)
       at Microsoft.VisualStudio.Shell.ServiceProvider.GetService(Guid guid, Type serviceType)
       at Microsoft.VisualStudio.Shell.ServiceProvider.GetService(Type serviceType)
       at Microsoft.VisualStudio.Shell.WindowPane.GetService(Type serviceType)
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.ObjectExplorerToolWindow.GetService(Type serviceType)
       at Microsoft.VisualStudio.Shell.WindowPane.System.IServiceProvider.GetService(Type serviceType)
       at System.ComponentModel.Design.ServiceContainer.GetService(Type serviceType)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.ObjectExplorerControl.GetService(Type serviceType)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.ObjectExplorerControl.System.IServiceProvider.GetService(Type serviceType)
       at System.ComponentModel.Design.ServiceContainer.GetService(Type serviceType)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItem.GetService(Type serviceType)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NodeContext.GetService(Type serviceType)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.<GetColumnsFromNavigationService>d__11.MoveNext()
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.AddFields(List`1 list, IEnumerable`1 fields, IDictionary`2 allValidFields, AddFieldsFlags flags)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.GetParentFields(INodeInformation source, Dictionary`2& allValidColumns)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.BuildDynamicItemWithQuery(IList`1 nodes, INodeInformation source, INavigableItem sourceItem, String urnQuery, Boolean registerBuilder, Boolean registerBuiltItems)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.BuildDynamicItem(IList`1 nodes, INodeInformation source, INavigableItem sourceItem, IFilterProvider filter)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItemBuilder.Build(IList`1 nodes, INodeInformation source, INavigableItem sourceItem, IFilterProvider filter)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.NavigableItem.RequestChildren(IGetChildrenRequest request)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.ExplorerHierarchyNode.BuildChildren(WaitHandle quitEvent)

    Hi igorteper,
    Any progress?
    "MS Visual Studio 2010 Shell (Isolated)-ENU" and "Visual Studio 2010 Prerequisites" had been installed in your computer, or there is no Visual Studio installed on this computer?
    You log in SQL Server Management Studio and get an error. For further investigation the issue, please post the error messages in detail.
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Thanks,
    Maggie
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. This can be beneficial to other community members reading the thread.

  • Why am i getting error messages after I installed the latest update?  I am running Windows 7 and now getting error 7 .  It tells me to reinstall I tunes which didn't help

    Help please

    Hello mamdonde,
    The following article provides steps that can help resolve this error.
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    Cheers,
    Allen

  • I'm trying to install Photoshop Elements 10 onto Windows XP sp 3. I'm getting error 1335

    Hi,
    I'm trying to install Photoshop Elements 10 onto a Windows XP sp3 PC. The installer is giving me an error with data13.cab
    Have error checked the hard drive
    Have defragged the hard drive
    Have tried install from internal DVD drive
    Have tried install from network copy of the install DVD (made from a different DVD drive)
    Have tried install logged into Windows as a brand new user account.
    Installer can't get Element_StarFrameCircle.psd, although windows seems happy enough with the cab file.
    Have downloaded trial version from Adobe website but that wouldn't run either (exe file is corrupt, but this is mentioned as a possibility on the web site)
    Any ideas?
    Thanks,
    Stuart

    Stuard_Hubbard I would recommend following the steps listed in Error 1311, 1335, or 2350 "Source file not found...data1.cab" when installing Adobe products | Windows.  The error is indicating there is either a problem with your installation media or the Windows Installer Service installed on your computer.  Please feel free to respond to this thread if you have any questions about the steps listed within the document.

  • Linked excel file problem - Help needed

    I have 2 excel files in the same directory in Content Services. The "destination" file has a link in one of its cells to a cell in the "source" file. I want to be able to open the "destination" file and update the data if any changes have been made to the "source" file.
    My problem is when I try to do this i get an error that says "This workbook contains one or more links that cannot be updated" and two options.
    1) To change the source of links, or attempt to update values again, click Edit Links.
    2) To open the workbook as is, click Continue.
    If I click Edit Links I am then presented with a screen where I can open the "source" file. When I try to do this though I am given a login screen. Supplying a valid Content Services username and password doesn't work and I cannot open the file.
    Can anyone tell me how I can open the "destination" file without having to open every "source" file? I don't want to open the "source" files because there could be dozens of "source" files for one "destination" file.

    setw is the equivalent of the field width value in printf. In your code, the printf version would look like:
    printf("%8s", CURSOR->name.c_str());
    I much prefer printf over any I/O formatting in C++. See the printf man page for more information. I recommend using Bwana: http://www.bruji.com/bwana/
    I do think it is a good idea to verify your code on the platform it will be tested against. That means Visual Studio. However, you don't want to use Visual Studio. As you have found out, it gets people into too many bad habits. Linux is much the same way. Both development platforms are designed to build anything, whether or not it is syntactically correct. Both GNU and Microsoft have a long history of changing the language standards just to suit themselves.
    I don't know what level you are in the class, but I have a few tips for you. I'll phrase them so that they answers are a good exercise for the student
    * Look into const-correctness.
    * You don't need to compare a bool to 1. You can just use bool. Plus, any integer or pointer type has an implicit cast to bool.
    * Don't reuse your CURSOR pointer as a temporary index. Create a new pointer inside the for loop.
    * In C++, a struct is the same thing as a class, with all of its members public by default. You can create constructors and member functions in a struct.
    * Optimize your function arguments. Pass by const reference instead of by copy. You will need to use pass by copy at a later date, but don't worry about that now.
    * Look into initializer lists.
    * In C++ NULL and 0 are always the same.
    * Return the result of an expression instead of true or false. Technically this isn't officially Return Value Optimization, but it is a good habit.
    Of course, get it running first, then make it fancy.

  • Win 7 won't boot after installing R&R 4.3...urge​nt help needed!

    Hi everyone,
    I'd be really thankful if anyone could help me with this problem. I've got an R61i and I'm running Windows 7 Professional. Got all the latest drivers and I recently installed the new Lenovo Toolbox. After installing the toolbox it recommended that I install Rescue and Recovery 4.3, so I installed it. Then I did a backup on an external harddrive and protected it with a password. After all that was done I installed some new Windows Updates and restarted the Thinkpad for the first time after the backup. All of the sudden whenever Windows is booting it also loads R&R. I've tried different boot-up options with F12 on startup...nothing. I also tried to recover my last backup through R&R, but the password I entered to protect my backup won't work in R&R and so it freezes the app after 3 tries. I don't understand why R&R is loading in the first place...there's nothing wrong with my software. Can anyone please help? I urgently need my computer to finish off some uni work before tomorrow.
    Regards,
     Pascal

    Ok it seemed that my Windows partition was corrupted for some reason and since Lenovo hasn't come to publish a repair tool for Windows 7 yet I had no other choice than to boot from a Linux Live CD (Ubuntu). Backed up all my important files and then lay hands on the MBR myself...Anyways it worked so yeh, hope this helps anyone who's experienced the same problem until Lenovo makes that repair tool available

  • Installing & Configuring Samba on Solaris 10 ... Help needed for novice !!

    Guys,
    I have a freshly installed Sun box with Solaris 10 installed on it. I think Samba is meant to be installed with Solaris but I can't find it. So I was hoping to download and install then configure Samba myself from sunfreeware etc. If anyone can give me some help i'd be very grateful. I'm fairly new to unix but know my way around a little.
    Cheers guys
    Stevie P

    I steer clear of samba since it is such a mess to conifgure (not their fault, blame MS). NFS is so simple that I just refuse to enable smb and therefore exclude ms boxes from sharing on the network. You can find many of the smb related binaries in /usr/sfw/bin
    Check the docs.sun.com for step by step instructions on how to set it up.

  • Clean install W7 Pro - no drivers, cannot connect to net, help needed

    In a few words..
    Got in office E 550 for work, it was full of bloatware and in my language which is useless for work..
    After installing clean Windows 7 Pro I cannot connect neither to Wifi or LAN. I have downloaded drivers from Lenovo, to another computer, transfer them with USB to Lenovo on C: and install but still not working and that little computer sign in lower right corner is red crossed. Any help please as this is office computer which I need for work. Our IT is not here in same town...
    Im also getting message that "Windows did not detect any networking hardware"
    EDIT: errors

    Welcome to the Lenovo Community !
    If did not install the Intel Chipset Driver and the Intel ME Driver I recommend you do so.  Those drivers needs to be installed first so that the operating system will correctly installed the remaining hardware drivers.
    Owner & Operator of the following:
    ● Lenovo Ideapad Z570 w/ Win 7 & Win 8.1 Dual Boot ● Lenovo Yoga 3 Pro w/ Windows 8.1 ● Toshiba A75-S206 w/ Win 7
    ● IBM Thinkpad T-23 w/ Win XP ● IBM Thinkpad T-22 w/ Win XP • As well as multiple desktops dual/triple booting XP, Vista and Win 7.
    ★ Find a post helpful? Thank that member by clicking on the ☆Star☆ to the left awarding them a Kudo.
    ★ Posting a problem and a reply is helpful and it answers your question, please mark it as an "Accepted Solution"
    ★ I'm not a Lenovo employee, just a volunteer geek who likes to help folks. Enjoy your time here, pay it forward by helping others !
    ★ Sorry, I don't answer questions via Private Messages. Posting in the appropriate forum is the best way to get assistance.

  • Firefox mobile keeps telling me to download add-ons, I need to get FF mobile. But I'm looking for the add-ons on FF mobile. am I missing something still?

    sometimes I can dowload add-ons. I've tried switching btw default and android galaxy tab in the prefs but still no go

    It sounds like you are using the Phony add-on to change your User-Agent header. It definitely needs to be set to "Default" for the addons.mozilla.org site to work correctly.
    After setting User-Agent to "Default", try going to http://addons.mozilla.org/mobile - you were probably redirected to the wrong section of the site if you originally loaded it with a different User-Agent header.

  • Javascript in CEWP to add Select All for Relink (getting error)

    I am using the code in cewp for relink all but ending up with error below..Can anyone please track the error<script type="text/javascript" language="javascript">
    function CheckAll(chk)
    for (i = 0; i < chk.length; i++)
    chk[i].checked = true ;
    </script>
    <input type="button" value="Check All" onclick="CheckAll(document.aspnetForm.chkRepair)" >
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; InfoPath.3; MS-RTC LM 8)
    Timestamp: Thu, 20 Feb 2014 06:38:48 UTC
    Message: 'document.aspnetForm.chkRepair' is null or not an object
    Line: 645
    Char: 1
    Code: 0
    URI:
    https://abc.com/TestFormLib/Forms/AllItems.aspx?PageView=Shared&InitialTabId=Ribbon.WebPartPage&VisibilityContext=WSSWebPartPage

    Hi Sam,
     CRMToolBox gives you an option to work on webresources. Alternatly, You can export the webresource, work in Visual Studio and use the browse button on the webresource editor to upload the updated file.
    Cheers,
    Jithesh

Maybe you are looking for

  • Server 2008 Hyper-V Failover Cluster Error on Domain Controller Reboot

    I am pretty new to Hyper-V virtual but I have 2 Hyper-V Clusters, each with 2 Nodes and a SAN, 1 Physical Domain Controller for failover cluster management and 1 virtual domain controller as backup.  All is running well, no issues.  I installed windo

  • Windows 8.1, Premiere Pro CC, Intermittant firewire capture problems

    While firewire capture works perfectly from time to time, it seems that more often it does not. Specifically, the capture freezes on the first frame present when opening the capture window. Sometimes it just starts working later in the day. Any ideas

  • I am trying to re-install OS-X Mountain Lion,

    I am trying to re-install OS-X Mountain Lion, but I get a message that my apple id did not purchase the software. The OS comes bundled with the hardware, can anyone help?

  • Linking items in combo box to a VI saved in pc folders

    Hello Everyone Could some one please tell me how could I link the items added in a combo box to the VI's saved in a folder of my pc, and if I add new item to the folder how could I update it to the combo box list automatically.... Best Regards Prathe

  • How to shuffle photos (random order) in slide show?

    The Help of my iPhoto says I can somewhere set an option to make the slide order of photos in a slideshow be random (shuffle). I don't see this in any of the menus! The help says "Click Settings at the top of the Slideshow window to set one or more o