<?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 about xml in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-xml/m-p/4004115#M956592</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;is there any tools to build xml file except using interfaces like&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if_ixml&lt;/EM&gt;, &lt;EM&gt;if_ixml_document&lt;/EM&gt;, &lt;EM&gt;if_ixml_element&lt;/EM&gt;  and so on?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jun 2008 04:42:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-20T04:42:43Z</dc:date>
    <item>
      <title>about xml</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-xml/m-p/4004115#M956592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;is there any tools to build xml file except using interfaces like&lt;/P&gt;&lt;P&gt;&lt;EM&gt;if_ixml&lt;/EM&gt;, &lt;EM&gt;if_ixml_document&lt;/EM&gt;, &lt;EM&gt;if_ixml_element&lt;/EM&gt;  and so on?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 04:42:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-xml/m-p/4004115#M956592</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T04:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: about xml</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-xml/m-p/4004116#M956593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check transaction SWXML - XML Document Selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also check SWF_XMP1 - XML Object Type Builder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if hlpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 04:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-xml/m-p/4004116#M956593</guid>
      <dc:creator>GauthamV</dc:creator>
      <dc:date>2008-06-20T04:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: about xml</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-xml/m-p/4004117#M956594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abdul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use CL_IXML class..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT Zabdul . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Definizione oggetti e variabili: &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;class cl_ixml definition load. &lt;/P&gt;&lt;P&gt;data: g_ixml type ref to if_ixml, &lt;/P&gt;&lt;P&gt;document type ref to if_ixml_document, &lt;/P&gt;&lt;P&gt;element type ref to if_ixml_element, &lt;/P&gt;&lt;P&gt;element1 type ref to if_ixml_element, &lt;/P&gt;&lt;P&gt;text type ref to if_ixml_text, &lt;/P&gt;&lt;P&gt;streamfactory type ref to if_ixml_stream_factory, &lt;/P&gt;&lt;P&gt;stream type ref to if_ixml_ostream, &lt;/P&gt;&lt;P&gt;z type xstring, &lt;/P&gt;&lt;P&gt;renderer type ref to if_ixml_renderer, &lt;/P&gt;&lt;P&gt;rc type i, &lt;/P&gt;&lt;P&gt;node type string, &lt;/P&gt;&lt;P&gt;value type string. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Inizio programma: &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;start-of-selection. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Creazione l'oggetto 'main factory for the iXML library': &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;g_ixml = cl_ixml=&amp;gt;create( ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Creazione documento XML: &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;document = g_ixml-&amp;gt;create_document( ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Aggiunge elementi: &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;node = 'person'. &lt;/P&gt;&lt;P&gt;element = document-&amp;gt;create_element( name = node ). &lt;/P&gt;&lt;P&gt;rc = document-&amp;gt;append_child( element ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;node = 'andrea'. &lt;/P&gt;&lt;P&gt;value = 'ponzio'. &lt;/P&gt;&lt;P&gt;element1 = document-&amp;gt;create_element( name = node ). &lt;/P&gt;&lt;P&gt;text = document-&amp;gt;create_text( value ). &lt;/P&gt;&lt;P&gt;rc = element-&amp;gt;append_child( text ). &lt;/P&gt;&lt;P&gt;rc = document-&amp;gt;append_child( element ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Salva il documento XML: &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;streamfactory = g_ixml-&amp;gt;create_stream_factory( ). &lt;/P&gt;&lt;P&gt;stream = streamfactory-&amp;gt;create_ostream_uri( &lt;/P&gt;&lt;P&gt;system_id = 'file://c:\sap.xml' ). &lt;/P&gt;&lt;P&gt;renderer = g_ixml-&amp;gt;create_renderer( &lt;/P&gt;&lt;P&gt;document = document ostream = stream ). &lt;/P&gt;&lt;P&gt;rc = renderer-&amp;gt;render( ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / rc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see these&lt;/P&gt;&lt;P&gt;links&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nwpi71/helpdata/en/ba/e18b1a0fc14f1faf884ae50cece51b/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nwpi71/helpdata/en/ba/e18b1a0fc14f1faf884ae50cece51b/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/ba/e18b1a0fc14f1faf884ae50cece51b/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/ba/e18b1a0fc14f1faf884ae50cece51b/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2008 05:02:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-xml/m-p/4004117#M956594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-20T05:02:43Z</dc:date>
    </item>
    <item>
      <title>Re: about xml</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-xml/m-p/4004118#M956595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Watch SIXML package. You can find examples of sap parser. You can convert a xml string in a XML document using OO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 12:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-xml/m-p/4004118#M956595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T12:29:13Z</dc:date>
    </item>
  </channel>
</rss>

