<?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 Re: xml file parse  event base in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-parse-event-base/m-p/2547541#M579633</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     reference link: &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fd/9d7348389211d596a200a0c94260a5/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fd/9d7348389211d596a200a0c94260a5/frameset.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/bb/576670dca511d4990b00508b6b8b11/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/bb/576670dca511d4990b00508b6b8b11/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the PDF document which tells you how to develop with KM API's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/aef1a890-0201-0010-6faf-8fa094808653" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/aef1a890-0201-0010-6faf-8fa094808653&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Jul 2007 11:52:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-23T11:52:23Z</dc:date>
    <item>
      <title>xml file parse  event base</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-parse-event-base/m-p/2547540#M579632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am learning xml file with sap help sample. I have a FM, that change xml-file into if_ixml_parser, but when i wrote the xml " &amp;lt;person status="retired"&amp;gt;Walt Whitman&amp;lt;/person&amp;gt;" and debug it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;event_sub was 312, &amp;lt;b&amp;gt;event was always initial&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: event     type ref to if_ixml_event,&lt;/P&gt;&lt;P&gt;        event_sub type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;let the parser know which events I am interested in&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;event_sub = if_ixml_event=&amp;gt;co_event_element_pre2 + &lt;/P&gt;&lt;P&gt;            if_ixml_event=&amp;gt;co_event_element_post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; parser-&amp;gt;set_event_subscription( events = event_sub ).&lt;/P&gt;&lt;P&gt;do.&lt;/P&gt;&lt;P&gt;  event = parser-&amp;gt;parse_event( ).&lt;/P&gt;&lt;P&gt;  if event is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    exit. ' either end reached or error (check below)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data: str type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  case event-&amp;gt;get_type( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    when if_ixml_event~co_event_element_pre2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      str = event-&amp;gt;get_name( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      write: '&amp;lt;' str '&amp;gt;'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    when if_ixml_event~co_event_text_post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      str = event-&amp;gt;get_value( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      write: str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for Request.&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nwmobile71/helpdata/de/47/b5413acdb62f70e10000000a114084/frameset.htm"&amp;gt;sap library - Parsing an XML document event-based&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 11:44:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-parse-event-base/m-p/2547540#M579632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T11:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: xml file parse  event base</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-parse-event-base/m-p/2547541#M579633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     reference link: &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fd/9d7348389211d596a200a0c94260a5/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fd/9d7348389211d596a200a0c94260a5/frameset.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/bb/576670dca511d4990b00508b6b8b11/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/bb/576670dca511d4990b00508b6b8b11/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the PDF document which tells you how to develop with KM API's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/aef1a890-0201-0010-6faf-8fa094808653" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/aef1a890-0201-0010-6faf-8fa094808653&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 11:52:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-parse-event-base/m-p/2547541#M579633</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T11:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: xml file parse  event base</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-parse-event-base/m-p/2547542#M579634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your Request?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no xslt transform base, is that easy to learn? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you give me a example for the event base xml ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shuo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Jul 2007 12:19:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/xml-file-parse-event-base/m-p/2547542#M579634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-23T12:19:01Z</dc:date>
    </item>
  </channel>
</rss>

