Excel files are saved as HTML files

Hi All,
I am saving the output files into a shared location in excel or csv format. However when i ask the users/business to have a look into it then they say that the files are opening as html web page and not able to load properly.
I checked it myself and found it true, all the xls and csv files are saved with .xls and .csv format only but when i try to open it and do as 'save as' then it by default tries to save it as a webpage. Is there any way i can correct this so the file is actually saved as xls only.
Please suggest
Thanks
Ronny

Hi Gareth,
I am using BI Publiser to ftp my report to the shared location. This is what it involves
[1] build the report in BIP
[2] while scheduling the report in BIP use sftp option to save the output file to the shared location
this is simple process to export the files to the desired location. Now while doing that ...i choose the output format ( template format) as excel and give the extension of the file as .xls.
The files does get saved as xls file but then when i try to save that agian to another location by opening it than it, by default , tries to save it as web page ....similarly when i ask business to have a look at the output files and when they open it than it opens as a web page .....wheareas it should be an excel file ..
Please revert if you require more elaborate explanation
Thanks
Ronny

Similar Messages

  • Analyzer View with external excel files

    I have "inherited" support of Hyperion Analyzer. I have a view that is a series of linked excel files. How do I add an additional excel document view? Where would I "point" these links in Analyzer?We are using Hyp. Analyzer 5.0.1

    Hi,I assume you are talking about the ability to view excel documents in Analyzer? Basically Excel views are saved into Analyzer via Excel itself. To be able to save views you need to have the Analyzer Excel plug-in installed. (Adds a menu to the toolbar for 'Hyperion Analyzer'). The toolbar has 'save' and 'save as' options. When saving it should be bring up a connection dialogue where you specify the Analyzer server name, user id, and password etc.Hope this helps.Paul ArmitageAnalitica Ltd

  • Bookmarks are saved but as folders & html files, i want to import in mass not one at a time but system won't let me select all from folder

    computer was infected by virus rebuilt after save but bookmark favorites saved as html files in folders not bookmark format

      Yes, I tried that.   The files were ordered by their original numbers as imported from the camera, but I batched them through Phocoshop to downsize all of them into a more manageable file size.   I opened that destination folder from quick time  from where it said select image sequence.   I clicked on the first one and opened it.   The result was a large image with an arrow indicating a movie was ready to go.   When I pressed the arrow, though, I realized it had only imported that one frame so there was no movie.   The files are Jpgs and are about 450 KB each. 
        To your knowledge are there any links to iMovie tutorials or quick time tutorials that may address this situation?  Maybe there will be one I haven't looked at yet. 
        Thanks

  • Mailbox and other printer-specific settings are saved with an Excel file

    From the KB article:
    "When you send a Microsoft Excel workbook to another user  account in an e-mail message or store the file on a network share, with the   print settings set to print to your mailbox or to a local
    printer with   specialized settings, these settings may still be in effect for the other   users. If they print the workbook, it may either print to your mailbox, not   theirs, or it may try to print by using certain settings for your local  printer.
    I have several users who occasionally experience this exact issue with Excel 2010. A KB article actually exists for this problem (KB:829766)
    and at one point a hotfix was available. I assume this issue was "fixed" at one point however the KB article was updated in April with
    Article ID: 829766 - Last Review: April 27, 2012 - Revision: 2.0
    APPLIES TO
    Microsoft Excel      2010
    So it appears that it's acknowledged to be happening in Excel 2010 but the hotfix was pulled. Does anybody have any idea about how to fix this
    issue without the hotfix? I tried the registry entry that was mentioned in the KB article but it did not resolve the issue. Is there any other way to get Excel 2010 to ignore printer specific metadata? We do not want to have to deploy a VB script to remove
    this information on each sheet.

    From the KB article:
    "When you send a Microsoft Excel workbook to another user  account in an e-mail message or store the file on a network share, with the   print settings set to print to your mailbox or to a local
    printer with   specialized settings, these settings may still be in effect for the other   users. If they print the workbook, it may either print to your mailbox, not   theirs, or it may try to print by using certain settings for your local  printer.
    I have several users who occasionally experience this exact issue with Excel 2010. A KB article actually exists for this problem (KB:829766)
    and at one point a hotfix was available. I assume this issue was "fixed" at one point however the KB article was updated in April with
    Article ID: 829766 - Last Review: April 27, 2012 - Revision: 2.0
    APPLIES TO
    Microsoft Excel      2010
    So it appears that it's acknowledged to be happening in Excel 2010 but the hotfix was pulled. Does anybody have any idea about how to fix this
    issue without the hotfix? I tried the registry entry that was mentioned in the KB article but it did not resolve the issue. Is there any other way to get Excel 2010 to ignore printer specific metadata? We do not want to have to deploy a VB script to remove
    this information on each sheet.
    I am having a similar issue: Users are saving excel documents onto a notwork share, some are using sercure print others do not use secure print. The users using secure print are saving a document with secure print selected and when others go to print it secure
    prints for them. The registry edit will solve if I go to each users machine and add the registry edit, however as we add new users to the company it would be a headache managing who needs this key setup. Is there a way for people who do not want to use secure
    print to not inherit these settings? I mean the easy solution is just to have users select the printer properties they want each time they print, but I have come to terms that, that will not happen despite the issues caused.

  • Saving html tables as excel files

    I am generating some html tables and need to look into the possibility of saving them as an excel file. Could anybody point to any possible venues or means to do such a thing?

    I have written a page that uses javascript to do just that - although it only works with IE. Here's pretty much all of the relevant code:
    function CreateExcelSheet()
      var x=myTable.rows
      var xls = new ActiveXObject("Excel.Application")
      xls.visible = true
      xls.Workbooks.Add
      for (i = 0; i < x.length; i++)
        var y = x.cells
    for (j = 0; j < y.length; j++) {
    xls.Cells( i+1, j+1).Value = y[j].innerText
    }The table that is copied from had to appear in the HTML form.  This is updated using PHP in my case - if your table is static, you can give it an id - to match "myTable" or change the reference that is in the CreateExcelSheet function.<table style="display: none" id="myTable" border="1">
    <tr><td> </td></tr>
    </table>It's called via a button:<form action="#" method="post"><input type="submit" onclick="CreateExcelSheet(); return false;" value="Open as Excel spreadsheet" /></form>You can use my web form here: http://betterwindowssoftware.com/tabletoexcel.php                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • HTML formate excel files

    Hi,
    I just recognized that the excel files which I can download from my OBI/Answers reports or which I used to send to customers are HTML formated excel files. I also found a remark in the Oracle OBI documentation.
    Now my problem ...those files are much bigger then the ordinary excel files. Opening those files and saving them again as pure excel decreases the size by the factor 10x.
    Unluckily some of those files a bigger then 10MB which is the size limit of mails of our mail server. My question is there a way to create normal, non-html formatted excel files (especially for sending them)?
    Thanks.

    The link is very helpful but unluckily it is no solution (maybe there is no solution). If the excel file is in MHTML format it is much too big ...on the other hand it needs to be Excel 2003. So finally the question is still whether it is possible to get am Excel 2003 file without MHTML?

  • Excel files are locked since transfer from pc to mac

    I just transferred my excel files from pc to mac and now i can't open them, it says they are "locked for editing" by user (i did not lock them) i can only open as read only.  Is there a fix for this problem? Anyone else had this problem?

    Where are these files saved??
    Maybe this will help...
    I found this post on a different web site - http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macexcel/office-files -locked-for-editing-in-mixed/d838b0d7-6b26-4206-b310-029c73cf0ba6.
    This problem is caused by a temporary file that was not deleted after a previous edit session was completed. The file is hidden and not normally visible through the Finder. The easiest way to view hidden files is to install the hidden files dashboard widget which is available here:
    http://www.apple.com/downloads/dashboard/developer/hiddenfiles_matthansen.html.
    Use the widget to show hidden files then use Finder to open the folder that contains the spreadsheet you wish to edit. If your spreadsheet is named abc.xlsx, you will also see a file named ~$abc.xlsx. Delete the file that begins with ~$ and you will be good to go.

  • Refresh data in SWF based on excel file saved from SAP BW workbook

    Hi, is there a way to get data refresh in SWF dashboard from excel file as a data source. SAP BW workbook report will be saved as an excel file daily and placed in somewhere. I would like to create a dashboard which can connect to the excel data source and refresh on load.
    Appreciate your advice and help. Thank you.
    I am using Xcelsius 2008 and SAP BI 7.0

    Thank you.
    If I understand correctly from your advice, that is I should create QaaWs to pull data from SAP BI, which will return data in tabular format. Map the data in the cell range of a hidden tab, re-arrange and format the data into the row?
      Another concern: I need to display data for 4 quarters (Q1, Q2, Q3,Q4) in the dashboard, but QAAWS will only pulls data when the data is available in the database.
       Eg. Only data for 3 quarters are found in the database, QAAWS will return data for Q1, Q2,Q4.
             This will mess up the position fixed in the xcelsius. Do you have any suggestion on this?
       Sorry to bother u for the simple questions.
       Thank you.

  • Excel file corrupt after saving to another disk

    I have two PCs at home.: A laptop running Win-7 64-bit, and a desktop running Win-7 32-bit.  Both are running Office 2010.  Often, but not always, when I save an Excel workbook from one PC onto a shared hard drive on my home network and
    then try to open it on the other PC, the other PC displays the "file appears corrupt, would you like Excel to try to recover/repair?" message when I try to open the file.  This also happens sometimes when saving to a thumb-drive and attempting to open
    it on a non-connected laptopn running XP and Ofice 2007.  Most times, Excel successfully repairs/recovers the file without issue.  Infrequently, it doesn't repair everything.  Today it failed completely and was unable even to open the file on
    another PC.  I've tried various methods to copy the file.  I've experienced the problem when I use Windows Explorer to copy the file from one disk to the other, and also when using both DOS COPY and XCOPY commands.  The issue occurs with
    many, but not every Excel file I copy.  And it doesn't happen every time - only sometimes.  It seems to occur more frequently with certain specific files, and and rarely or never happens with specific other files.  It occurs in both directions
    (i.e. with both the 64-bit Win-7 machine as the "source" machine and with the 32-bit Win-7 machine as the source machine.)  All of the files I have problems with are .xlsm files.  I have not tried to confirm that it happens only with .xlsm
    files.  It doesn't seem to matter if the destination file is being overwritten, or if it is being created from scratch by the copy source.  I'm baffled.  Any suggestions as to why this is happening?  How I can prevent it?  Thanks.

    Hi,
    The Office 2010 you used on both computers are 32-bit or 64 bit?
    There are some differences between Office 32 bit and 64 bit.
    For more information, please refer to the link:
    http://office.microsoft.com/en-us/excel-help/choose-the-32-bit-or-64-bit-version-of-microsoft-office-HA010369476.aspx
    Jaynet Zhang
    TechNet Community Support

  • Can I programmatically force saving an XLTM template to save as an XLSM file in Excel 2010 without defaulting all Excel file types?

    I created an Excel template which includes VB and macros as an EXCEL.XLTM template file (I used a template file to keep users from overwriting the sample template file), but I have noticed that when users save the template, Excel 2010 defaults to saving
    the new file as a XLSX file (removing all the macros).
    I know you can set Excel 2010 to always save as a certain format, but I really would prefer not forcing all Excel files to be macro enabled for the user
    Is there a way to default the Save type to XLSM for this template only?  Like some code that I could put in that when the users saves, it saves as a macro enabled XLSM type only for this template file?
    My users aren't exactly Excel savvy, so I wanted to make it as simple as possible for them.
    Thanks!
    Alan Edwards

    Hi Alan,
    >> Is there a way to default the Save type to XLSM for this template only?  Like some code that I could put in that when the users saves, it saves as a macro enabled XLSM type only for this template file?
    In my option, you could achieve this by adding Application.GetSaveAsFilename Method to the workbook BeforeSave event. Some key code like below:
    Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
    Dim FileNameVal As String
    If SaveAsUI Then
    FileNameVal = Application.GetSaveAsFilename(, "Excel Macro-Enabled Workbook (*.xlsm), *.xlsm")
    Cancel = True
    If FileNameVal = "False" Then 'User pressed cancel
    Exit Sub
    End If
    ThisWorkbook.SaveAs Filename:=FileNameVal & ".xlsm", FileFormat:=xlOpenXMLWorkbookMacroEnabled
    Application.EnableEvents = True
    End If
    End Sub
    But there is a limitation of this workaround, in this workaround, the save as will only support the macro enabled type, other save as types like "xlsx" will be ignored.​
    For more information about Application.GetSaveAsFilename Method (Excel), you could turn to the link below:
    #Application.GetSaveAsFilename Method (Excel)
    https://msdn.microsoft.com/en-us/library/office/ff195734.aspx
    Best Regards,
    Edward
    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.

  • Is this right way ro save html file as excel file

    Hi all
    Iam saving html page as excel page .Source code for this is
    BufferedWriter out = new BufferedWriter(new FileWriter("c:/Excel/price.xls"));
    BufferedReader in = new BufferedReader(new FileReader("C:/html/price.htm"));
    String str;
    while ((str = in.readLine()) != null)
    out.write(str);
    in.close();
    out.close();
    Is above procedure is right to save html page as excel page
    IAm using JExcelAPI for re-writing excel sheet .
    When iam accesing price.xls file iam getting following Exception
    ---------- Run Java ----------
    jxl.read.biff.BiffException: Unable to recognize OLE stream
    How to solve it?
    Is any methods required to set EXCel sheet in java?
    Can we use other API for solving it
    IF any plz suggest me.
    What is diff b/w Jexcel And Apache POI?
    Reply me soon
    MAdhuram

    Thanks for ur reply
    Basically that html file is Excel file only
    For view purpose saved it as html b'coz it is using in site(This part is mainetainied By US )
    I need to download that file from site(Iam from India)
    extract some data from that For that pupose i tried with htmlparser but it is not sovling problem completely.For that purpose i moved towards JExcelAPI .
    Manually i saved it as .excel file then it is accessible with JExcel API
    If i follow procedural way ie above method then its saving as excel file and looking as Excel file but when iam accesing that file as Excel file then it is giving Exception isOLEException
    If i access manually convereted file then it is accessible.
    Iam sending source URL
    Look at this ::http://www.sttpc.com/reseller/price.htm
    Procedural Code As Follows:
    BufferedWriter out = new BufferedWriter(new FileWriter("c:/Excel/price.xls"));
    BufferedReader in = new BufferedReader(new FileReader("C:/html/price.htm"));
    String str;int c=0,r=0;
    while ((str = in.readLine()) != null)
    out.write(str);
    n.close();
    out.close();
    Sorry For my English

  • How to save html as Excel file im java

    Hi to all
    How can i save html file as Excel file in Java
    If any solutions plz help Me

    Thanks for ur reply
    Source URL is::http://www.sttpc.com/reseller/price.htm
    Target is to save table data into Excel Sheet.
    Upto saving that file as Excel file its working (using I/O).
    When iam trying to read excel sheet data then iam getting OLE Exception.
    plz suggest me other Alternate solutions to overcome this problem.
    I tried htmlparser from sourceforge.net i got partial ouput.But i want dynamic solution.
    Thanks.

  • Saving an Excel File as a PDF

    Hi,
    I am desperately trying to convert a large excel file to a PDF.
    I have 26 columns and a LOT of rows.
    When I go to file in excel and then click 'save as PDF' it saves the columns on separate pieces of paper, which just makes viewing the data impossible.
    Is there anyway to get the excel workbook to save to PDF in a readable format? (such as saving it how you would select the print area ... if that makes sense?)
    Hope someone can help!
    Many Thanks!

    Office for Mac - Microsoft Answers

  • To Send HTML Format and excel file attachment  in same mail

    Dear All,
            Have requerment ,to send a mail options HTML table format and same data in excel file attachement.have capable to do the html format using methods BCS .but how to send excel format attachment in same  mail.
    Please guide me how to do it.
    Regards ,
    Santhu
    Edited by: santosh jajur on Apr 9, 2010 1:54 PM

    Santhosh,
    please check the code:
    report bcs_example_7.
    This report provides an example for sending an Excel
    attachment in Unicode Systems
    constants:
      gc_tab  type c value cl_bcs_convert=>gc_tab,
      gc_crlf type c value cl_bcs_convert=>gc_crlf.
    parameters:
      mailto type ad_smtpadr
       default 'ur mail id'.                    "#EC *
    data send_request   type ref to cl_bcs.
    data document       type ref to cl_document_bcs.
    data recipient      type ref to if_recipient_bcs.
    data bcs_exception  type ref to cx_bcs.
    data main_text      type bcsy_text.
    data binary_content type solix_tab.
    data size           type so_obj_len.
    data sent_to_all    type os_boolean.
    start-of-selection.
      perform create_content.
      perform send.
    form send.
      try.
          send_request = cl_bcs=>create_persistent( ).
        create document object from internal table with text
          append 'Hello world!' to main_text.                   "#EC NOTEXT
          document = cl_document_bcs=>create_document(
            i_type    = 'RAW'
            i_text    = main_text
            i_subject = 'Test Created By BCS_EXAMPLE_7' ).      "#EC NOTEXT
        add the spread sheet as attachment to document object
          document->add_attachment(
            i_attachment_type    = 'xls'                        "#EC NOTEXT
            i_attachment_subject = 'ExampleSpreadSheet'         "#EC NOTEXT
            i_attachment_size    = size
            i_att_content_hex    = binary_content ).
        add document object to send request
          send_request->set_document( document ).
        --------- add recipient (e-mail address) -----------------------
        create recipient object
          recipient = cl_cam_address_bcs=>create_internet_address( mailto ).
        add recipient object to send request
          send_request->add_recipient( recipient ).
        ---------- send document ---------------------------------------
          sent_to_all = send_request->send( i_with_error_screen = 'X' ).
          commit work.
          if sent_to_all is initial.
            message i500(sbcoms) with mailto.
          else.
            message s022(so).
          endif.
      endtry.
    endform.                    "send
    form create_content.
      data lv_string type string.
      data ls_t100 type t100.
    columns are separated by TAB and each line ends with CRLF
      concatenate 'This Is Just Example Text!'                  "#EC NOTEXT
                  gc_crlf gc_crlf
                  into lv_string.
    header line
      concatenate lv_string
                  'MSGID'    gc_tab
                  'MSGNO'    gc_tab
                  'Language' gc_tab                             "#EC NOTEXT
                  'Text'     gc_crlf                            "#EC NOTEXT
                  into lv_string.
    data lines
      select * from t100 into ls_t100
        where arbgb = 'SO' and msgnr = '182'.
        concatenate lv_string
                    ls_t100-arbgb gc_tab
                    ls_t100-msgnr gc_tab
                    ls_t100-sprsl gc_tab
                    ls_t100-text  gc_crlf
                    into lv_string.
      endselect.
      select * from t100 into ls_t100
        where arbgb = 'SO' and msgnr = '316'.
        concatenate lv_string
                    ls_t100-arbgb gc_tab
                    ls_t100-msgnr gc_tab
                    ls_t100-sprsl gc_tab
                    ls_t100-text  gc_crlf
                    into lv_string.
      endselect.
      try.
          cl_bcs_convert=>string_to_solix(
            exporting
              iv_string   = lv_string
              iv_codepage = '4103'  "suitable for MS Excel, leave empty
              iv_add_bom  = 'X'     "for other doc types
            importing
              et_solix  = binary_content
              ev_size   = size ).
        catch cx_bcs.
          message e445(so).
      endtry.
    endform.                    "create_content
    Thanks.

  • Importing From Excel file will not import assignments correctly where there are more than one assignment per task

    I am trying to import an excel file ... see below.   It appears if you select both Tasks and Assignments tables it will not allow you to do this, says file is not in a project recognized format.  So I import Tasks tab first then run the
    wizard again and import the assignments tab while selecting merge with project option.   This works with one exception:
    If there are more than one assignment per task.  It does not merge in the 2nd assignment, only the first.
    Is there a way to import a task with 2 or more assignments?
    Background
    To figure out what the format for the file needed to be, I started with a MPP file and from project saved as Excel and selected the "Project Template" file.  Now I am trying to import that XLS to see how it works
    ID
    Active
    Task Mode
    Name
    Duration
    Start
    Finish
    Predecessors
    Outline Level
    1
    Yes
    Auto Scheduled
    DS001
    3 days
    June 17, 2014 8:00 AM
    June 19, 2014 5:00 PM
    1
    2
    Yes
    Auto Scheduled
    MT001
    3 days
    June 17, 2014 8:00 AM
    June 19, 2014 5:00 PM
    2
    3
    Yes
    Auto Scheduled
    CT001
    1 day
    June 17, 2014 8:00 AM
    June 17, 2014 5:00 PM
    3
    4
    Yes
    Auto Scheduled
    CT002
    2 days
    June 18, 2014 8:00 AM
    June 19, 2014 5:00 PM
    3
    3
    5
    Yes
    Auto Scheduled
    DS002
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    1
    6
    Yes
    Auto Scheduled
    MT002
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    2
    7
    Yes
    Auto Scheduled
    CT003
    1 day
    June 20, 2014 8:00 AM
    June 20, 2014 5:00 PM
    4
    3
    Task   Name
    Resource Name
    % Work Complete
    Work
    Units
    CT001
    Engineer1
    0
    8h
    100%
    CT002
    Engineer2
    0
    16h
    100%
    CT003
    Engineer1
    0
    8h
    100%
    CT003
    Engineer2
    0
    8h
    100%
    Andrew Payze

    Andrew,
    I did a quick test using your example although I didn't include the Predecessor or Outline Level fields to keep things a little simpler. I imported the Excel data into a new Project file with a single import of task and assignment data. It is very important
    to set up the Excel Workbook correctly. On Sheet 1 I entered the task data (Name, Duration, Start). I did not include the ID or finish date as that is redundant - Project generates its own ID and will calculate the finish date based on the start date and duration.
    On Sheet 2 I entered the assignment data basically just as you show it except I didn't include the Units.
    The data imported as expected.
    John

Maybe you are looking for

  • Unable to restore from my icloud backup

    I backed up my 3gs via iCloud and purchased a new 4s. I was expecting to be able to restore from my iCloud backup, but when i tried, it said there was no backup information. I did reset the 3gs before attempting to get the restore started on the 4s.

  • Inter-Org Mailbox moves from Exchange 2007 to Exchange 2013

    G'Day All, Is it possible to move Exchange 2007 mailboxes to Exchange 2013 in a different forest? Both environment has all the required patches and service packs. There is a two way trust, and I don't want to introduce Exchange 2010 CAS in the source

  • Exit for changing the budget check

    Hello, We want on our project to modify the logic for budget control and avoid the error  "Budget exceed" (BP604). In our architecture, we want the calculate the budget on another WBS from another project. Do you know if there are any BADI or Exit on

  • How to change data source name and context root during deployment

    Hi, Env: WLS 10.1.3 JDev 11.1.1.6 Hudson I need to deploy two instances of my ADF application on the same development enviroment. We are using Hudson to deploy. My question is how to change data source name and application context root before second

  • Since mavericks, trackpad cursor has a big box that won't go away

    since i upgraded  to mavericks,my trackpad cursor has a big box that won't go away