As opening an xml file in excel?

I can not open a xml file in excel, and I get a message that is not a valid spreadsheet, and if the same file can be opened from a normal machine, anyone know how?

altairdfdfdf wrote:
I can not open a xml file in excel, and I get a message that is not a valid spreadsheet,
It's not a spreadsheet, that is why.
Open it with TextEdit.

Similar Messages

  • Open xml file in excel - default should be selected

    Hi All,
    I have done an Application to Export the Table data to Excel . I have done it successfully.
    But at the time of exporting the data to excel, it is prompting for the following options
    How to Open Files in Excel
    When you open an XML file in Excel, you are prompted to select one of the following methods to import the XML data:
                       As an XML list
                       As a read-only workbook
                       Use the XML Source task pane
    I dont want to see these three options (by default First should be selected). How can i do this.
    Thanks in Advance for ur replies.
    Regards,
    Malla

    Hi,
    I am not sure how much this information helps to you. I am postiong this information to give you an idea.
    If you are able to achive this please let me know.
    As per my analysis it is not possible to hide these options.
    Even if you crate one .xml file on your desktop and if you open with Microsoft Excel it will give these three options. You have to select one of the options.
    I think WD Node data will be converted to xml and it will be opened through Microsoft Excel i guess.
    There are specific reasons why Microsoft Excel ask to choose these options when we try to open an xml file in Excel.
    As an XML list
    An XML list is created in a new workbook.
    The contents of the file are imported into the XML list. If the XML data file does not refer to a schema, then Microsoft Excel will infer the schema of the XML data file.
    As a read-only workbook
    The XML data file is opened as a read-only workbook. The structure of the file is flattened.
    Use the XML Source task pane
    Use the XML Source task pane
    The schema of the XML data file is displayed in the XML Source task pane. You can then drag elements of the schema to the worksheet to map those elements to the worksheet.
    If you are opening an XML data file that does not refer to a schema, then Excel will infer the schema of the XML data file.
    Regards,
    Charan

  • How to open and XML file?

    Does anyone have a way on Mac to open an XML file for viewing. This can be done with WIN Excel and XML toolkit but doesn't exist for Mac Excel in Office 2008. I can open with TextEdit but would like to see the info with headers and cells without all the XML coding. Numbers 09 can't open it at all.

    Numbers uses XML to build the description of the documents but it's not an XML editor.
    A simple search in Google with the intricate key string xml editor AND mac return numerous interesting links.
    Yvan KOENIG (VALLAURIS, France) vendredi 9 octobre 2009 11:33:27

  • How to open a XML file in internet explorer from labview

    I need to open the xml file and see the content in the internet explorer through labview. clicking the button in labview front panel  i need to see the same view as we double click the xml file as it open in internet explorer .

    Hi parthipan,
    you can use the "Open URL in Default Browser.vi".
    Mike

  • Error while opening the XML file

    Hi all,
    i'am trying to download data from internal table to XML file with root node and its
    corresponding child nodes.i have written the program in this way.
    tables: mara.
    include bcciixml_decl.
    include bcciixml_impl.
    parameters: p_matnr like mara-matnr.
    start-of-selection.
    data: piXML          type ref to if_ixml,
            pDocument      type ref to if_ixml_document,
            pStreamFactory type ref to if_ixml_stream_factory,
            pIStream       type ref to if_ixml_istream,
            pParser        type ref to if_ixml_parser,
            pNode          type ref to if_ixml_node,
            pText          type ref to if_ixml_text,
            string         type string,
            count          type i,
            index          type i,
            totalSize      type i,
            dsn(40)        type C,
            xstr           type xstring.
      types: begin of it_mara,
                matnr like mara-matnr,
                ernam like mara-ernam,
                aenam like mara-aenam,
                vpsta like mara-vpsta,
            end of it_mara.
    data: itab_mara type table of it_mara.
    select matnr ernam aenam vpsta from mara into table itab_mara where
           matnr =  p_matnr.
    types: begin of xml_line,
            data(256) type X,
          end of xml_line.
    data: xml_table type table of xml_line.
    parameters: filename like rlgrap-filename.
    pixml = cl_ixml=>create( ).
    *-- create the initial document
      pDocument = pixml->create_document( ).
      pStreamFactory = pixml->create_stream_factory( ).
    *-- create an input stream for the table
    *pIStream = pStreamFactory->create_istream_itable( table = xml_table
                                                     size  = totalSize ).
      pParser = piXML->create_parser( stream_factory = pStreamFactory
                                      istream        = pIStream
                                      document       = pDocument ).
    data: pOStream type ref to if_ixml_ostream.
    pOStream = pStreamFactory->create_ostream_itable( table = xml_table ).
    call method pDocument->render( ostream   = pOStream ).
    *-- how many bytes were written to the table?
    totalSize = pOStream->get_num_written_raw( ).
    *-- write the XML document back to the frontend
    concatenate filename '.out' into filename.
    condense filename no-gaps.
    CALL FUNCTION 'WS_DOWNLOAD'
         EXPORTING
              BIN_FILESIZE            = totalSize
              FILENAME                = filename
              FILETYPE                = 'BIN'
         TABLES
              DATA_TAB                = itab_mara
         EXCEPTIONS
              OTHERS                  = 11
    IF SY-SUBRC <> 0.
    ENDIF.
    *-- print the whole DOM tree as a list...
    pNode = pDocument.
    perform print_node using pNode.
          FORM print_node                                               *
    form print_node using value(pNode) type ref to if_ixml_node.
      data: indent      type i.
      data: pText       type ref to if_ixml_text.
      data: string      type string.
      indent  = pNode->get_height( ) * 2.
      case pnode->get_type( ).
        when if_ixml_node=>co_node_element.
          string = pNode->get_name( ).
          write: at /indent '<', string, '> '.
        when if_ixml_node=>co_node_text.
           pText ?= pNode->query_interface( ixml_iid_text ).
           if pText->ws_only( ) is initial.
            string = pNode->get_value( ).
            write: at /indent string.
           endif.
      endcase.
      pNode = pNode->get_first_child( ).
      while not pNode is initial.
         perform print_node using pNode.
         pNode = pNode->get_next( ).
      endwhile.
    endform.
    but when open the XML file which i created on the desktop it shows the following error.
    The XML page cannot be displayed
    Cannot view XML input using style sheet. Please correct the error and then click the Refresh button, or try again later.
    XML document must have a top level element. Error processing resource 'file:///C:/Documents and Settings/anilda/Desktop/sim...
    how to rectify this error.
    Regards,
    satish.

    You are going to need to provide more details about this shell script file you are executing and the environment it is in. Beyond being on a Windows box, you have provided none of those details.
    If the SQL statement will execute cleanly in SQLDeveloper but not your script, then the issue lies in the script. How do you know the error is that SQL statement? Can your script even "select * from dual;" successfully?
    Also, SQLDeveloper (which I don't use) may contain its own libraries for accessing the DB. You probably should consider upgrading to a SQL*Plus client that is at least the same version or later as your database.
    Note:
    As I recall, xmlgen in 9.2 is now a synonym for dbms_xmlgen. You should change the package name accordingly [url http://docs.oracle.com/cd/B10501_01/appdev.920/a96612/d_xmlge2.htm#1010709]dbms_xmlgen.getXML

  • Open an xml file from a URL

    i am trying to open an xml file from a URL.
    i have been using the standard (i think!) xml suite, part of the System Events. is this possible? is this the best way? are there alternatives? any good tutorials of how to use it too?
    the file i am trying to open is: http://www.tvrage.com/feeds/episode_list.php?sid=xxxx
    where "xxxx" is a number of a show, e.g. 2930 is buffy
    regards
    jingo_man

    It works!!
    I used the URL and BufferedReader classes to fill the parser. Here's how:
    // create a new object of type URL
    URL xmlURL = new URL( "http://ServerName/DbName/PageName?OpenPage&username=myname&password=mypassword");
    // Create the SAX2 parser
    SAXParser saxParser = spf.newSAXParser();
    xr = saxParser.getXMLReader();
    // Set the ContentHandler
    DefHandlerClass myHandler = new DefHandlerClass();
    xr.setContentHandler( myHandler );
    // read the URL stream into the BufferedReader
    BufferedReader in = new BufferedReader( new InputStreamReader(xmlURL.openStream()));
    // parse the document
    xr.parse( new InputSource( in ) );
    // close the input stream
    in.close();
    PjR

  • Unable to open the XML files in Nakisa

    Hi Gurus,
    We are unable to open certain XML files in Nakisa. They show up as encrypted in the notepad or fail to open using the XML Marker. The files in question are
    AppResources.xml
    LoginConfiguration_SAP_Standard
    LoginConfiguration_Anonymous
    Purpose: We want to enable the SSO with the portal . We have checked the radio button but nakisa does not recognize the SSO ticket from the portal (Any folder in Nakisa where we need to place the Portal ticket?)
    Also we want Nakisa to show the org chart for the logged in user. Luke had mentioned that some changes need to be made in the AppResources.xml (hope i correctly remember this) and we were looking to make these changes (rather try out.. any pointers please..?)
    Thanks and Regards,
    Arun E V

    Hi Arun,
    These files are encrypted. If your organisation is a partner with Nakisa you can obtain the decrypter from them.
    Portal SSO works without any configuration directly in the XML files. If you are getting an error stating that the Portal ticket cannot be interpreted then your configuration is not correct. In your URL iView you need to ensure the fully qualified domain name (FQDN) is used for the application URL. In the Administrator Console you need to ensure you enter the system details (Host, Sys Nr and Client) for the backend system which holds your SSO ticket for that Portal. You need to use FQDN here too.
    There is additional security configuration that can be done in the XML files but SSO will still work with just the Administrator Console configuration.
    I hope that helps!
    Luke

  • Getting extra line after each record when opening a .txt file in excel

    Hi All,
    I have developed a program which downloads a file at application server.
    each record of file is 500 characters long & have CRLF at end.
    the file looks fine when opened in .txt format.
    however when i download it from application server to presentation server (using function "download to my computer"), & at presentation when i try to open it in excel format, it shows a blank line after every record.
    i don't want this blank line to appear if i download it & open it in excel.
    the file record is declared as char500 type.
    Please suggest how to deal with this.
    thanks in advance.
    Regards,
    Puja.

    Hi Puja,
    Check the file in the application server whether it has any gaps between the lines.
    Or else as you said if the file looks ok in .txt format, download the file in .txt and open the same file in excel (i.e. open with excel)
    Hope this sloves your problem.
    Regards,
    SB.

  • How to convert  XML file to excel file

    To convert XML file to excel file. what are the jar files required. also tutorial to convert XML File to excel file

    Gotta use your own imagination.
    I'd have a root tag <excel-spreadsheet>. Under that I'd have a <worksheet> tag for each worksheet. Under that I'd have a <row> tag for each row. Each <row> tag would have <column> tags, with "name" attribute, and the spreadsheet entry as the value.
    The problem is that you can't really map everything that will go into a spreadsheet into this stream (e.g., graphs, stray cells, etc.) It maps well to tables, but that's it.

  • Can´t Open Model XML file - URGENT

    Hi all,
    I have made a model in SQL Developer Data Modeling, and save it. Now when I open the xml file the model is empty, but the all the information about entities and relations are on the other directory xml files. I send the main xml and the whole directory for evaluation... Can you please help, its about 1 week work... :(
    Regards,
    Sérgio Teixeira

    Hello Sergio,
    I'm sorry for your problems. I'll try to help you if you send me your design ( design xml file and directory with the same name).
    I see that mail information is hidden in the forum. You can use feedback application http://apex.oracle.com/pls/otn/f?p=2306:101 to post the problem.
    Best regards,
    Philip

  • How to open an .xml file

    Attempting to open an *.xml file; unreadable.

    Thanks for your reply. The file has been saved on my computer; it was created via Surgeon General's "My Family Health Portrait". It can be uploaded to that site, and, in fact, the data contained in the xml file can be printed from the site after editing. So, I suppose it becomes less important to open the xml file, since all the data will be contained on the site.
    I did spend considerable time attempting to open the xml file in a readable format, e.g. as a web page on Firefox, and I am still curious as to whether that can be done. By the way, I can open it in a text editor, but rendering it into something easily readable seems to me to be an outsized task.

  • Open closed XML files - IPCC

    Hi All
    We are looking to implement basic IVR into our schools using our IPCC Express Prem.
    We would like to provide school admin staff with the ability to manage their own open/closed xml files and were thinking of writing an
    application that delivers username, password and date fields that would then update their relevant files on IPCC.
    Can anyone suggest possible problems,flaws,advice to help our adventure.
    Thanks
    Rich

    Hi Arun,
    These files are encrypted. If your organisation is a partner with Nakisa you can obtain the decrypter from them.
    Portal SSO works without any configuration directly in the XML files. If you are getting an error stating that the Portal ticket cannot be interpreted then your configuration is not correct. In your URL iView you need to ensure the fully qualified domain name (FQDN) is used for the application URL. In the Administrator Console you need to ensure you enter the system details (Host, Sys Nr and Client) for the backend system which holds your SSO ticket for that Portal. You need to use FQDN here too.
    There is additional security configuration that can be done in the XML files but SSO will still work with just the Administrator Console configuration.
    I hope that helps!
    Luke

  • Open an xml file thru Abap

    i have an excel that has always the same formating.
    Especially is a form this Excel .
    I want to be able to import it to a ztable that i have .
    I thought that i could save the Excel as Xml file and then open it in SAP .
    Can anyone give a hint ?
    Points will be rewarded (as usual) !!!!

    Dimath,
    There are some FM to use to upload information from excel file to SAP - find this example:
    REPORT Z_TEST_EXCEL .
    TYPE-POOLS truxs.
    tables : ZTABLE_TEST, KNA1.
    types: begin of t_tab,
    col1 type ZTABLE_TEST-KUNNR,
    col2 type ZTABLE_TEST-NAME1,
    col3 type ZTABLE_TEST-VORNA,
    end of t_tab.
    data : itab type standard table of t_tab,
    wa type t_tab.
    data it_type type truxs_t_text_data.
    parameter p_file type rlgrap-filename.
    data ttab type tabname.
    at selection-screen on value-request for p_file.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    FIELD_NAME = 'P_FILE'
    IMPORTING
    FILE_NAME = p_file.
    start-of-selection.
    CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'
    EXPORTING
    i_tab_raw_data = it_type
    i_filename = p_file
    tables
    i_tab_converted_data = itab[]
    EXCEPTIONS
    CONVERSION_FAILED = 1
    OTHERS = 2.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    end-of-selection.
    ZTEST_TEST-KUNNR = wa-col1.
    ZTEST_TEST-NAME1 = wa-col2.
    ZTEST_TEST-STRAS = wa-col3.
    ZTEST_TEST-ORT01 = wa-col5.
    ZTEST_TEST-PSTLZ = wa-col4.
    modify ZTEST_TEST.
    hope that helps,
    please reward if useful!

  • Opening a .pdf file from Excell 2011 hyperlink

    I have a problem opening a .pdf file hyperlinked in Excel 2011 file.
    The message is: "No program is registered to open this file".
    If I go from explorer the file is regularly opened with Adobe Reader.

    Delete the following item, then quit and relaunch Safari:
    /Library/Internet Plug-ins/AdobePDFViewer.plugin

  • Adobe Premiere Pro CC not opening an xml file created in Adobe Premiere Pro CC 2014

    Hello,
    I had created a project using Adobe Premiere CC 2014 which had some minor changes, which were going to be done by my boss, who uses Premiere Pro CC. However the project file of Adobe Premiere CC 2014 was not getting opened in Premiere Pro CC giving a message of type that as this file was created in a newer version of Premiere, it cannot be opened. After searching on this forum I found that we have to convert the Premiere Pro CC 2014 project file to XML file which can be then imported onto Premiere CC. So I created a XML file by selecting File-> Export -> Final Cut Pro XML and sent it to my boss. However even the xml file is not getting opened after being imported onto Premiere Pro CC giving an error of sorts, Cannot open the file since there is a problem with the codecs.
    Have I done something wrong? Please guide me since I am a beginner to the Adobe environment and would very much appreciate any help.
    Thank you.

    Indeed..... but are they fully documented, includuing Adobe's implementation of Multicam?  
    Collapsing them should really be no more than a day or two of work for an Adobe engineer and a day of beta testing.  Seriously.  Lots of people want this - it only takes a few minutes with google to find people struggling with this exact problem.   Premiere Pro Multicam --> Resolve.
    Since we do a lot of multicam work it's something that's important to us.
    Lots of other people never go near multicam, so I guess for them it's something they really don't care about.
    I currently have > 22 hours of multicam sequences that need primary colour correction and follow on grading..... resolve would be the best choice by far. 

Maybe you are looking for

  • Thunderbird won't launch after upgrading to Lion

    The subject line metions Thunderbird, but this is really a Lion problem.  I just bought a new MacBook Pro (with Lion).  I had been using an OLD MacBook Pro Core2Duo with Snow Leopard.  I used Migration Assistant to transfer everything to the new MacB

  • Video and tv

    Hi! I don't know if it's something I can't do in Portugal, but I don't have functions in Itunes store to buy tv shows or movies. Someone know the reason? I have a Ipod 80GB with this fonctions and nothing to see. I would like to buy some tv series. T

  • Can VMS 2.1 and LMS 2.1 be installed in same server?

    Dear all, May I know can VMS 2.1 and LMS 2.1 be installed in same server? If so, how about the sequence of installation? If LMS 2.1 is already installed on the server, do I need to install the VMS Common Services? Thanks Gary

  • G4 w/ 10.4.11 Won'T Install

    I've not tried a shift bar system opening but I've tried just about everything else that has been recommended by this list, including Disk Utility. I am curious if Mac support has an established way of handling my problem. It seems so far the list ha

  • Acrobat X: Java-Script-Problem

    Hallo zusammen, ich habe folgendes Problem: aus einer .pdf-Datei möchte ich die Bookmarks, die ich selbst erstellt habe, auslesen (warum führt zu weit). Dafür verwende ich folgendes Script, das ich von www.evermap.com/javascript.asp habe: /* Create a