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

Similar Messages

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

  • 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

  • Slow query performance in excel 2007 vs excel 2003

    Hi,
    Some of our clients recently did an upgrade towards BI 7.0 and also upgraded towards excel 2007.
    They experience lots of performance problems when using the Bex analyser in excel 2007.
    Refreshing queries, using 'simple' workbooks works till 10 times slower than before using excel 2003.
    Has anyons experienced the same?
    Any tips/tricks to solve that problem?
    With regards,
    Tom.

    Hello all,
    1) Please set the following parameters to X in transaction
        RS_FRONTEND_INIT and check the issue.
    Parameters to be set are
    ANA_USE_SIDGRIDDELTA
    ANA_USE_SIDGRIDMASS
    ANA_SINGLEDPREFRESH
    ANA_CACHE_WORKBOOK
    ANA_USE_OPTIMIZE_STG
    ANA_USE_TABLE
    2) Also refer to below KBA link which would help to resolve the issue.
       1570478 BW Report in Excel 2007 or Excel 2010 takes much more time than
    3) In the workbook properties please set the flag
         - Use Compression When Saving Workbook
    4)  If you are working with big hierarchies please try to improve
    performance with following setting directly in AnalysisGrid:
       - Properties of Analysis Grid - Dispay Hierarchy Icons
       - switch to "+/-"
    Regards,
    Arvind

  • Excel 2007 to Excel 2010 - external references no longer work for UNC paths

    Hi all,
              a client has recently moved from Excel 2007 to Excel 2010 - and found that some spread sheets - which have references to other spread sheets, no longer update data correctly. The workbooks continue to
    work fine with Excel 2007.
    The locations are listed in trusted locations from GP - and if we copy the documents locally and update the links, it all works fine.
    Excel 2010 have all patches installed as of March 2014 and the spread sheets have also been tested with Excel 2013 (again, with all current patches) and exhibit the same issues.
    Changing the unc path to a drive letter also does not resolve the issue.
    An example of the lookup is
    =IF(ISNA(VLOOKUP([@[ Cust No.]],\\server\share\February.2014.xlsx!Table1[#All],9,0)),0,VLOOKUP([@[ Cust No.]],
    \\server\share\February.2014.xlsx!Table1[#All],9,0))

    Maybe you could try to use the range reference instead of Table in excel 2010.
    e.g.
    =VLOOKUP(H5,'\\server name\share folder\[2014.xlsx]Sheet1'!$H$15:$M$25,2,0)
    If it doesn't help ,on the Data tab, click Edit Links in the Connections group. And then click 'Check Status' .
    What's the status of this link? If it is 'Error: Worksheet not found' . you can try to click the 'open source' to update the data.
    Wind Zhang
    TechNet Community Support

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

  • Problem opening BEx Analyzer Workbook (saved in Excel 2007) in Excel 2003!!

    Dear all:
    I know there are threads about this issue and numerous support tickets have been provided, but we still can't get any Excel 2007 Query to be opened by Excel 2003.
    I have tried to save Excel 2007 BEx Analyzer Query into 97-2003 XLS format. But when we reopened (by both Excel 03 and 07), it prompted the warning messages and broke down the query workbook into several sheets with scrambled data. What am I missing here...? According to the support ticket, it seemed pretty straightforward just by saving the format to 2003 XLS, but in reality it just doesn't work as "advertised"
    Thank you...!!!
    Brian

    I have the solution for this.
    It works to my environment.
    Follow the steps :
    1. you must open the xlsx workbook from Bex Analyzer.
    2. Save As workbook locally to your PC for excel 97-2003
         (Not "save as" from bex Toolbar but from      excel)
    3. Now save that workbook with Save As->Workbook from Bex Toolbar into your BI database.
    Now go to detail properties of your workbook and there you can see the format xls for your workbook.
    Good Luck

  • BEx 7.0 - Save EXCEL 2007 workbooks in .XLS - format

    Hi there,
    I am currently creating some workbooks with BEx 7.0 .
    I am using Excel2007, so the workbooks are saved as .XLSM files. However, it should be possible to open them with an Excel 2003 installation as well, so I tried to safe the workbooks as .XLS files.
    I tried to proceed according to SAP OSS note 1052761 (changing the default format in which workbooks are saved to Excel 97 - 2003), but this did not work (the note also only aplies to BEX 3.5).
    (I tried saving an old workbook under a new name as well as creating a new workbook from scratch. In both cases, .XLSM files where created and EXCEL 2003 users received error messages when trying to open the workbook).
    Does anyone have a piece of advice for me?
    Thanks in advance.
    Tanja

    [Hello Tanja,|http://chandranonline.blogspot.com]
    See this OSS Note
    SAP Note 1061607 BW 70 BEx: FileExtension & Personalization (Development)
    SAP Note 1089212 BI Addon (7.10): not able display workbooks with Office 2007
    SAP Note 1013140 BI Frontend / BW Add-on - General Information & Limitations
    [Thanks|http://chandranonline.blogspot.com]
    [Chandran|http://chandranonline.blogspot.com]

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

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

  • Word 2007 and Excel Chart - Merging

    I am in the process of creating a Benefit Statement in Word 2007 and using the  mail merge features to import my data from Excel. The only issue I am having is trying to create a pie chart at the bottom of the statement.
    Any assistance or advice would be appreciated.

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • 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

  • XLR b1 2007 and excel 2007    excel sheet is empty

    hi experts,
    i like to use xlr in b1 2007 with excel 2007.
    after getting a fail in xl reporter, i change the security settings in excel 2007.
    now the excel sheet opens, but there are no values in it.
    for example, i made only a query about the business partner (the result is only one column) and like to
    import the result in excel 2007 , there is only a headline named 'business partner' . And the column you could see in the xlr filled with the business partner names is empty.
    sap b1 and excel 2007 runs on terminal services published by citrix.
    has someone an idea to solve the problem?
    with greetings from hamburg
       michael

    Hi Michael,
    Please make sure that the following steps are performed:
    +COM Add-ins                                                                               
    (Excel 2007)                                              
    Go to excel                                             
    Office button -> Excel Options button                   
    Add-Ins                                                 
    Manager: COM Add-ins -> Go                              
    SAP Business One XL Reporter should be selected.        
    +Disabled Items                                                                               
    (Excel 2007)                                              
    Go to excel                                             
    Office button -> Excel Options button                   
    Add-Ins                                                 
    Manager: Disabled Items -> Go                           
    SAP Business One XL Reporter should not be listed.      
    If it is please select it and click Enable button.      
    +Macro Visual Basic Project                                                                               
    (Excel 2007)                                              
    Go to excel                                                    
    Office button -> Excel Options button                           
    Trust Center -> Trust Center Settings...                        
    Macro Settings -> Trust access to the VBA project object model  
    hope it helps,
    Regards,
    Ladislav
    SAP Business One Forum Team
    Edited by: Ladislav Meszaros on Feb 25, 2009 10:41 AM
    Edited by: Ladislav Meszaros on Feb 25, 2009 10:41 AM

  • 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

Maybe you are looking for