<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic XML header? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-header/m-p/4563256#M1077084</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am generatig an xml file. I want to add FileID = "X123" before version="1.0" in the xml header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex:&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" ?&amp;gt;&lt;/P&gt;&lt;P&gt;to &lt;/P&gt;&lt;P&gt;&amp;lt;?xml FileID="X123" Version="1.0"&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Sep 2008 17:32:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-24T17:32:23Z</dc:date>
    <item>
      <title>XML header?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-header/m-p/4563256#M1077084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am generatig an xml file. I want to add FileID = "X123" before version="1.0" in the xml header.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex:&lt;/P&gt;&lt;P&gt;&amp;lt;?xml version="1.0" ?&amp;gt;&lt;/P&gt;&lt;P&gt;to &lt;/P&gt;&lt;P&gt;&amp;lt;?xml FileID="X123" Version="1.0"&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 17:32:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-header/m-p/4563256#M1077084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T17:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: XML header?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-header/m-p/4563257#M1077085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I work with SAP XML parser but it isn't possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 19:11:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-header/m-p/4563257#M1077085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T19:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: XML header?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-header/m-p/4563258#M1077086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jorge,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean 'Create_Parser' ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Sep 2008 20:00:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-header/m-p/4563258#M1077086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-24T20:00:14Z</dc:date>
    </item>
    <item>
      <title>Re: XML header?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-header/m-p/4563259#M1077087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NO. SAP XML parser are the tools created by SAP to work with XML.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Parsing XML&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;All modern browsers have a build-in XML parser that can be used to read and manipulate XML.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The parser reads XML into memory and converts it into an XML DOM object that can be accessed with JavaScript.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;You will learn more about the XML DOM in the next chapter of this tutorial.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;There are some differences between Microsoft's XML parser and the parsers used in other browsers. The Microsoft parser supports loading of both XML files and XML strings (text), while other browsers use separate parsers. However, all parsers contain functions to traverse XML trees, access, insert, and delete nodes (elements) and their attributes.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In this tutorial we will show you how to create scripts that will work in both Internet Explorer and other browsers.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note: When we talk about parsing XML, we often use the term "Nodes" about XML elements.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In package SIXML you have the tools and examples for work with XML in an efficient way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 10:27:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-header/m-p/4563259#M1077087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T10:27:56Z</dc:date>
    </item>
  </channel>
</rss>

