Excel 2007 and Smartview 11.1 file open slow

We are in the process of upgrading to HFM system 11.1 and smartview 11.1.1.3 and as part of this process we are starting to use Excel 2007. I am encountering an interesting problem when opening files in Excel 2007 using smartview 11.1 and I am wondering if any one else has seen this problem and found a solution.
First I converted an excel 2003 file to excel 2007 and saved the file as an xlsx file type. Then I am able to open the file and it would take about 30 seconds to open the file. The file has about 15,000 formulas on for spreadsheets. If I click on each spreadsheet individually and use the "Refersh" button I can save the file in about 10 seconds and then close the file. When I open the file again it will open in 30 seconds. Now using the same file I click "Refresh All" and the file processes fine. I am able to save and close the file in about 10 seconds. However, when I try to open the file again it takes about 20 minutes to open, and then 20 minutes to close.
This only happens with two or three files. I have another file that is 40 spreadsheets and about 3,000 formulas that is not affected when I click Refresh or Refresh All.
Any help would be apperciated.
Rich

Hi
On metalink i found some notes about this issure
"Background
SmartView communicates over HTTP using .NET. This just means that requests and responses are sent in a standard XML format that is tucked in the HTTP headers. The mechanism is the same as when your internet browser requests a file or submits a form (simplification). A standard Microsoft component that is part of Internet Explorer is used for this.
There are three components (four if you include the network) in a SmartView refresh:
-the client
-the web server
-the HFM application server
It is easiest to troubleshoot when they are on separate machines. (Running SmartView on the server to see whether it works better is a useful test to see what effect the network is having, but doesn't show any other bottlenecks.) If you run Task Manager on these 3 machines showing the Performance tab, you will see initial activity on the client as Excel clears the cells and the request is converted into XML. Then you see the web server get busy as it receives and parses the request. Then the application server is busy as it send the data, then the web server is busy as it compiles the results into XML again, and finally the client parses the XML, pushes the data into cells and runs an Excel calculation. This last stage is the longest of all. Overall, it is typical to see the client doing 90-95% of the work, so client performance is a very important factor. Look out for Excel's memory usage increasing and RAM becoming in short supply. Often, user dissatisfaction with refresh times can be alleviated by giving them more RAM or a faster PC.
The situation we are dealing with here, however, is when the chain of events described above is interrupted. In this case, you will see the client or the web server wait in vain for a response from the next machine in the chain. The case of invalid XML is similar, but the response is truncated so that the XML is not well-formed when it arrives. XML consists of matching pairs of tags and is not well-formed when a closing tag is missing. This can be caused by certain network settings such as packet size (see later). The end result in either case is the same: as Excel cleared the cells before sending the request, cells are left blank or with zeroes.
Your job now is to work out why the particular component is failing.
Client
Check the HTTP time out in the registry:
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]\
"ReceiveTimeout"=dword:00dbba00
"KeepAliveTimeout"=dword:002BF20
"ServerInfoTimeout"=dword:002BF20
The time-out limit is five minutes for versions 4.0 and 4.01 and is 60 minutes for versions 5.x and 6. Also, the time-out limit is 30 seconds for Windows Internet Explorer 7. To change the settings, add the above keys. The above values are hexadecimal, not decimal and correspond to 18000 milliseconds (3 minutes) and 240 minutes for the receive time-out. See
- http://support.microsoft.com/kb/813827
- http://support.microsoft.com/kb/181050
Once you make those changes, my recommendation is that you reboot the client machine.
Web server
Look for errors in logs showing that the web app didn't respond/disconnected or timed out waiting for another application (i.e. the HFM application server). Eliminate load balancers etc. during testing in order to isolate the problem and to ensure that the user always goes to the same web server otherwise, logs can be hard to interpret. See also the IIS Tuning Guide for IIS settings. We cannot recommend particular settings, as each client must establish the optimal settings for their own environment after performance testing. If necessary, engage the services of a suitably qualified consultant.
Application Server
HFM application server performance is very dependent on whether the data is already in RAM or not. One symptom, where the first refresh fails but the second one succeeds, is probably a sign that the cache needed to be populated and once that had been done (by the first refresh) it went faster. HFM loads whole subcubes (Scenario, Year, Value and Entity) into cache, so asking for lots of accounts in the same subcube is fast, but asking for lots of entities will inevitably slow things down as it runs out of RAM and starts unloading subcubes to make room for more. The HFM event log (HsvEventLog.log) shows this happening, but don't forget that the messages you see are a normal consequence of the way HFM works and are not a problem unless you see a hugely elevated number of them during the period the refresh occurs. Another sign would be page file thrashing.
If there are several servers in a cluster, use sticky sessions in HFM to make sure tests always go the same server, or hit one server directly rather than using the cluster.
Solutions here involve giving more RAM to the server (probably not possible because of the 2 GB limit) and changing the worksheet design to restrict the number of subcubes accessed. A separate consolidation server, so that reads are not competing with intensive consolidations and calculations, would be a good thing.
Network
To find out if packets get fragmented, use
ping -l size -f
to send a big packet with the 'don't fragment' flag. E.g.
Ping -l 1024 -f oracle.com
If you see a reply like Reply from 141.146.8.66: bytes=1024 time=200ms TTL=245 then the size you specified is below the packet limit of the network. But if you use, for example, 2000 in place of 1024, you get Packet needs to be fragmented but DF set, then you know you have exceeded the limit. Combine this investigation with a Fiddler trace (https://www.fiddler2.com/fiddler2/) to see what size data messages are being sent and received.
Troubleshooting Guidance
If you seriously want to go into this in more detail, then it will take a considerable effort on your and your IT Department's part. My general advice would be:
1. During this process, fix your environment so that it is predictable. Register a single HFM application server and connect to that. Use a single web server and don't go through Apache or any other redirector. Make sure we know which machine to go to for logs. This would be a temporary measure and it doesn't stop the other users using the full, load balanced system so long as it doesn't involve your server.
2. As far as possible keep other users from using it during testing, unless you are specifically testing for performance under load. We want to see what activity is due to SmartView and not random other jobs.
3. Use PerfMon on all three machines: client, web server and application server.
4. Clear Logs before testing and note the times of each test so the logs can be correlated.
5. Log CPU activity, memory usage, network throughput, page faults, thread count etc. I'm no expert on this so get advice from someone who is.
6. In addition to the performance logs, from the IIS Server get:
* HTTP.SYS Error Log - %windir%\System32\LogFiles\HTTPERR (Default location; configurable)
* IIS Website Log - %windir%\System32\LogFiles\W3SVC# (Default location; configurable)
* Event Log (both System and Application) in EVT and TXT (tab separated) formats
7. From HFM Application server get:
* HsvEventLog.log (in <HFM install>\Server working Folder)
* Event Log (both System and Application) in EVT and TXT (tab separated) formats
8. Be aware of all timeout settings in your environment (i.e. IIS & the network) and time your tests. This can show whether it is an ASP timeout, script timeout, client side timeout or whatever. Note that the Web Session Timeout setting for SmartView in HFM's Server and Web Configuration is a separate issue from IIS timeouts. Web Session Timeout controls the length of idle time before SmartView makes the user log in again. Default 20 mins.
9. Run Fiddler traces to directly observe the XML and check for HTTP failures.
Further resources
- Tuning IIS 6.0 for HFM
- SmartView Performance FAQ
Both are available from Support.
Author: Andrew Rowland
Version: 11.x (Fri, 30 October 2009)"
regards
Alexander

Similar Messages

  • Excel 2007 and Smart View 9.3.1.4.041

    Dear Experts,
    We are now working with Excel 2007 and Smart View 9.3.1.4.041, and encounter the problem that ervery time open the protected excel file there would be the warning message "Drawing Objectes in one or more sheet(s) in the workbook are protected. Please unprotect them and try to save again."
    Can any one suggest with;
    1. How to set the Excel security settings for Excel 2007 to work for smart view?
    2. How to avoid the message mentioned above while working with Excel 2007?
    3. How to create a protected Excel file to work with Smart View 9.3.1.4.041 both in Excel 2003 and Excel 2007?
    Tks
    Edited by: Moonlight on May 19, 2010 10:00 AM

    I've experiencied similiar problems, though other users may have found a better solution, I've unlocked the spreadsheat, refreshed, and then relocked via a VBA macro. A button object at the top of the spreadsheet was added to make it easier for the users use as well. If there is a better solution I am very interested in this as well.
    JTF

  • Information of Print Area is missing in VB6 Addin of version Excel 2007 and Excel 2010

    Hallo, 
    I have a problem with my old VB 6 COM Addin. My document has Print Area, but when I use my addin to open this document. The information of print area is lost. 
    This problem takes place only in the following situations.
    If the PrintArea is set in Excel 2007 and 2010, it will be missing. But in Excel 2003 without problem.
    From the code, the  ".ActiveSheet.PageSetup.printArea" is always empty, although when the print area is configurate in Excel 2007 and 2010
    What is the possible reason of this problem?
    Thanks very much.

    There are several things I don't follow in the details you gave
    "I click an excel document in the third-part program and Excel 2007 will be open automatically"
    - Describe the 3rd party program you open the workbook in if not Excel"
    - What do you mean by "click and Excel document", what do you click and where is the document
    - Why click on an Excel document (workbook, worksheet something else?) to get a 3rd party app to automate Excel, then does some other workbook load?
    It's very confusing!
    Did you try the code in VBA in the instance of the workbook whose sheet you want to return the Print Area
    Re: Excel Object Library is 9.0
    Did you set a reference to XL-9 in the test app with my code then transfer to a different system with 2007?
    However, a ref to xl-9 shouldn't be a problem if the code compiled with that ref. If the app/dll is transferred to a different system it will pick up the Excel GUID in that system, which is exactly the same for all versions since Excel97. The only time it
    would be an issue is if code compiled with a new object model is not supported when used with an older Excel object model.
    The fact my code appears to work without error returning the message "Print Area not defined" suggests it is referring to a different workbook, ie one in which the Print-Area has not been defined. Double check which workbook it is referring to,
    eg
    Private Sub cbPrintArea_Click(ByVal Ctrl As Office.CommandBarButton, _
    CancelDefault As Boolean)
    Dim ws As Excel.Worksheet
    Dim s As String, s2 As String
    On Error Resume Next
    s = xlApp.Caption
    If Err.Number Then
    MsgBox "xlApp error " & vbCr & Err.Description
    Exit Sub
    End If
    Set ws = xlApp.ActiveSheet
    s2 = ws.Parent.Name & vbCr & _
    ws.Name & vbCr & _
    ws.Range("A1").Value & vbCr
    If Err.Number > 0 Then
    MsgBox "failed to reference ActiveSheet"
    Else
    s = ws.PageSetup.PrintArea
    If Err.Number Then
    MsgBox Err.Description
    Else
    If Len(s) = 0 Then s = "Print Area not defined"
    MsgBox s2 & vbCr & s
    End If
    End If
    End Sub
    This should confirm the workbook name, activesheet name and value in A1 (before running maybe add the current time in A1 with ctrl-shift-;  in the same workbook as the print-area has been defined)
    Peter Thornton

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

  • Final Cut Express keeps stopping and saying "Too many files open"

    Final Cut Express keeps stopping and saying "Too many files open". I don't see how this is the case as I only have the one project open...

    Try here:
    http://www.fcpbook.com/Misc1.html
    Al

  • Camera raw 8.7 color and contrast shifts when file opened in ps 6

    camera raw 8.7 color and contrast shifts when file opened in ps 6

    Thanks ssprengel for the suggestions and running a side by side yourself. I went through all my settings and applied your suggestions and did a side by side each time. I even uninstalled the entire creative suite on my system then reinstalled and updated and I still get the same outcome. It was fine yesterday with the previous version of ACR. It seems like the updated version is not showing the image preview in any color space. When I switch the color space in the workflow options the histogram changes but it doesn't seem to affect the preview window. And yes the preview button was checked on it was just when I was using the screen grab tool in windows it took focus away from the application so that is why the settings appear grayed out. I have attached more screen grabs below illustrating all my settings. Also here is some system info if anyone out there has a similar setup and would be willing to test.
    Adobe Photoshop Version: 13.0.1 (13.0.1.3 20131024.r.34 2013/10/24:21:00:00) x64
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1

  • Any new discoveries on Photoshop CS3 files opening slow in Windows 7?

    Any new discoveries on Photoshop CS3 files opening slow in Windows 7?

    Extend Dave's advice to also include looking for any network shares that may be mapped (e.g., to a drive letter) but not presently online.
    -Noel

  • Smartview: Excel 2007 and 9.3.0.1

    Is there a version of Smartview for 9.3.0.1 that works with Excel 2007?
    If so where I can get it? And are there any known issues with it?
    Thanks,
    Dave W

    I have a problem with Excel 2007. With Smartview installed, I cannot "save" or "save as" a new file. When I try to save, the save/save as diaglogue box does not show the folders, the file name box nor the save as type box. Any suggestions?

  • Excel 2007 and Security warning

    i am generating excel version of a report and it is working ok in 2003
    Now when we went to excel 2007
    i get a warning message
    "The file you are trying to open, '[filename]', is in a different format than specified by the file extension. Verify that the file is not corrupted and is from a trusted source before opening the file. Do you want to open the file now?"
    (Yes | No | Help)
    if(showExcel) {
    //response.setContentType("application/vnd.ms-excel");
    response.setContentType("application/csv");
    //response.setContentType("application/excel"); -- did not recognize mime-type
    This is the code i used where the MIME type is set. last one didnt work.
    CSV says unknown file type with a popup (Find,Save, Cancel)
    Can anyone please let me know how to solve this? This is a java application.

    You're apparently fooling Excel with a wrong content type as opposed to the actual content.
    What's the actual content? A plain HTML table? A real CSV file? A real XLS file?
    If a HTML table, don't do that. Stop fooling the browser and Excel. Use real CSV or XLS format.
    If real CSV, just ensure that the format is correct according RFC 4180 spec.
    If real XLS (binary stream obtained from a 3rd party library such as Apache POI HSSF), use content type "application/vnd.ms-excel".

  • Excel 2007 and Excel 2003 format

    Hi all,
    we have some problems with Excel file format on BPC 7.5NW SP06:
    1- We save input schedules or reports woth Excel 2007 file format. Then when we try to open these report they are corrupted (we click on "Open" and nothing happens). We can download the report from UJFS. The xltx file is corrupted. We can change th file extension to xls. Then we can open the report again.
    2- Is it possible to define the default extension when we save input schedules and reports? By default xltx is selected. We want to have xlt selected by default.
    thanks for your help,
    Romuald

    Hello,
    First you can try checking if you have configured your apset to work with xltx.
    1. Open BPC web admin and select AppSet Parameters
    2. Check ALLOW_EXTENSIONS and DEFAULT_EXTENSIONS if you have xltx there
    3. If not, add and click on update
    If this continues to happen, check note  "1579344 - Office 2007 extensions not loading in BPC 7.5 SP6 for NW". This can be a program error, but note that it only happens for some templates.
    Hope it helps
    Debora

  • BEXAnaylzer, Excel 2007 and Win 7 32 bit / 64 bit Issue

    Good Day,
    After install of the application, when running, Bexanaylzer.exe, open query, I receive a error message - "Encountered an Improper Argument".  I have Bex 7.0 installed. I used the following source files for install.
    Source install - gui720_0-10007878.exe
    Patch used - bi720sp01p_101-20006596.exe
    The Sap gui side works with no issues.  My only problem seems to be the BexAnalyzer.exe. It does launch excel with no issues and puts ribbon bar up.  Its upon selecting open query that I consistantly receive this error.  Event Viewer shows that excel open and closed normally, but no information about the improper argument is logged.  Process monitor shows a couple of buffer overflows, however I am not sure they are directly related to bex / excel 2007.
    I have run NwCheckWorkstation.exe to check front end, it returns with no errors detected.
    Has anyone encountered this issue with Win 7 installs? Theories and or resolutions would be appreciated.
    thanks
    -K

    Thanks for your answer. But I didn't undestand enough good. Can you explain it more?
    You say that you removed three BAK files.. From which directory?
    When I search for BAK files, I find them it the following directory:
    C:\Program Files (x86)\SAP\FrontEnd\SAPgui\wwi
    I removed 3 bak files :
    wwi.ini.bak, 
    wwi_all.lbl.bak, 
    wwi_user.lbl.bak.
    But it doesn't work.
    And can you tell why did you search *.exd files?
    When I search it, it find following files:
    C:\Users\coskun\AppData\Local\Temp\VBE\MSForms.exd
    C:\Users\coskun\AppData\Local\Temp\Excel8.0\MSForms.exd

  • Workbooks with Excel 2007 and 1 million lines

    Hi all,
    We are unable to use the 1 million lines available with Excel 2007 with the migrated workbooks.  Also, it seems that Excel is saving the files in .xls format, even if the format default in Excel is not set for .xls.
    Does anyone have a solution for this??
    Thanks
    Kathleen

    Hi,
    There are so many posting in SDN for this.
    Refer- Bex and Excel 2007
             Re: 2 BEx Query Limitation
             Re: More records in Bex.

  • Can anyone help with a Word 2007 and Acrobat 9 combine files problem?

    Hi all 
     This may be a setup problem but I was unable to find an answer. 
    I have many word documents that use a style as Heading 1, 2 and 3. What I normally do is to use the Adobe option of "Merge Files into a Single PDF" and then select the documents I want and press combine. Adobe then combines all the documents into a single PDF taking all my headings (styles) and converts them into bookmarks.
    I should say that is how I worked until a month ago. 
    My company upgraded my computer and reinstalled Adobe. Now I have the following problems: 
    The option of "Merge Files into a Single PDF" is no longer available from the Windows Explorer context menu. It is available from within Adobe.
    When I use the option from within Adobe, it does not take the headings into account, so it does not create bookmarks from the styles.
    When I create a PDF from within Word, I first check the Adobe Preferences and make sure that the "Convert Word Styles to Bookmarks" option is checked and that my heading styles are checked. Clicking "Create PDF" creates the PDF that I want.
    By the way, I am using Word 2007 and Adobe Acrobat 9.

    You need to define cell styles for your header and footer rows. Unfortunately there is no setting for cell height. You can force it by using a fixed First Baseline Offset combined with Top and Bottom Insets. This will produce rows that are 1p3 high:

  • Problems with Excel 2007 and Essbase 6.5

    Hi,
    Two quick questions:
    1. We are planning to upgrade our office to 2007, XP professional SP2 but still going to use Essbase excel add-in 6.5 for some users and Essbase 7.3 add-in for others. Has anyone faced any problems with this combination?
    2. The only problem I encountered so far was when I double click a member name for retrieval, the pointer (cursor/icon) flickers / flashes continuously. But when I take the pointer out of the excel spreadsheet, the flicker goes away. Does anyone know a fix to this. Thanks.

    Hi,
    I'm admin of an hyperion essbase database.
    I'm testing our addin 6.5.1 with excel 2007.
    First problem evocated on retrieve is confirmed.
    I continue my test and tell you if i find another problem.
    What i would say is that old version can be unsupported but i'm sure we can use this addin on excel 2007, i hope.
    Regards.
    Edited by: user9947793 on 4 sept. 2009 08:56

  • I can't load my catalog.  When I opened lr it opened to a catalog in 2007 and won't let me open 2013

    I can't load my catalog.  It opened to an old one and I cant seem to open todays/

    Lightroom cannot open two catalogs at the same time. Shut down Lightroom. Then locate the 2013 catalog in Windows Explorer or Finder in a Mac and double click the catalog file and it should open in Lightroom.

Maybe you are looking for