<?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: regarding the data from xml files in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-from-xml-files/m-p/4211102#M1006251</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SOLVED BY OWN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Sep 2008 12:41:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-25T12:41:27Z</dc:date>
    <item>
      <title>regarding the data from xml files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-from-xml-files/m-p/4211100#M1006249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to uploads the time machine recording data from xml file to the sap for this let me know the best way means which BAPI sud i use to fetch the data from xml file or i have to use report program for this ,after fetching the data in my own internal table will i use "HR_INFOTYPE_OPERATION" FOR updating the infotype 2011...or i have to go to in a different ways,,,,,plz help me ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 11:30:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-from-xml-files/m-p/4211100#M1006249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T11:30:26Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the data from xml files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-from-xml-files/m-p/4211101#M1006250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One easy way to upload XML data into an internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of t_tabup,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;insert structure for upload table here&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  end of t_tabup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: x_tabup TYPE STANDARD TABLE OF t_tabup INITIAL SIZE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lv_xml_string TYPE string.&lt;/P&gt;&lt;P&gt;    TYPES: t_xmltab(5602) TYPE c.&lt;/P&gt;&lt;P&gt;    DATA:  lx_xmltab TYPE TABLE OF t_xmltab,&lt;/P&gt;&lt;P&gt;           lw_xmltab TYPE t_xmltab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'GUI_UPLOAD'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        filename                = w_fname&lt;/P&gt;&lt;P&gt;        filetype                = 'BIN'&lt;/P&gt;&lt;P&gt;        has_field_separator     = ' '&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        data_tab                = lx_xmltab&lt;/P&gt;&lt;P&gt;      EXCEPTIONS... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;" Display error message and abort processing&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Transform to internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT lx_xmltab INTO lw_xmltab.&lt;/P&gt;&lt;P&gt;      CONCATENATE lv_xml_string lw_xmltab INTO lv_xml_string.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL TRANSFORMATION ('ID')&lt;/P&gt;&lt;P&gt;    SOURCE XML lv_xml_string&lt;/P&gt;&lt;P&gt;    RESULT tab = x_tabup[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jul 2008 11:39:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-from-xml-files/m-p/4211101#M1006250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-16T11:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: regarding the data from xml files</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-from-xml-files/m-p/4211102#M1006251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SOLVED BY OWN&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Sep 2008 12:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-the-data-from-xml-files/m-p/4211102#M1006251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-25T12:41:27Z</dc:date>
    </item>
  </channel>
</rss>

