<?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: call function for creating xml in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158542#M1194953</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did someone has an idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 23 Feb 2009 15:10:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-23T15:10:13Z</dc:date>
    <item>
      <title>call function for creating xml</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158541#M1194952</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;is there a function which I can use to create a XML from an internal table where I furthermore can use nodes and so on?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I knwo the transformation but I only want to know if there is a function which exist?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 13:53:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158541#M1194952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-23T13:53:15Z</dc:date>
    </item>
    <item>
      <title>Re: call function for creating xml</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158542#M1194953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did someone has an idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 15:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158542#M1194953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-23T15:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: call function for creating xml</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158543#M1194954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Depends on what you really want to do. Try, e.g, SAP_CONVERT_TO_XML_FORMAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shahram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 16:17:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158543#M1194954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-23T16:17:38Z</dc:date>
    </item>
    <item>
      <title>Re: call function for creating xml</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158544#M1194955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I use for testing the function :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SAP_CONVERT_TO_XML_FORMAT'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_field_seperator    = l_fieldseperator&lt;/P&gt;&lt;P&gt;      i_xml_doc_name       = l_docname&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      pe_bin_filesize      = l_filesize&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      i_tab_sap_data       = t_itab&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      i_tab_converted_data = t_convtab&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      conversion_failed    = 1&lt;/P&gt;&lt;P&gt;      OTHERS               = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which creates my XML, but when I donwload the file with &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WS_DOWNLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      bin_filesize            = l_filesize&lt;/P&gt;&lt;P&gt;      filename                = lf_docname&lt;/P&gt;&lt;P&gt;      filetype                = 'BIN'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      data_tab                = t_convtab&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      file_open_error         = 1&lt;/P&gt;&lt;P&gt;      file_write_error        = 2&lt;/P&gt;&lt;P&gt;      invalid_filesize        = 3&lt;/P&gt;&lt;P&gt;      invalid_type            = 4&lt;/P&gt;&lt;P&gt;      no_batch                = 5&lt;/P&gt;&lt;P&gt;      unknown_error           = 6&lt;/P&gt;&lt;P&gt;      invalid_table_width     = 7&lt;/P&gt;&lt;P&gt;      gui_refuse_filetransfer = 8&lt;/P&gt;&lt;P&gt;      customer_error          = 9&lt;/P&gt;&lt;P&gt;      OTHERS                  = 10.&lt;/P&gt;&lt;P&gt;I furthermore have data with length and so on for the fields.&lt;/P&gt;&lt;P&gt;And the other question is where do I have to set which field is in which node in the xml?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Feb 2009 16:21:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158544#M1194955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-23T16:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: call function for creating xml</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158545#M1194956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not actual&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Feb 2009 15:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-function-for-creating-xml/m-p/5158545#M1194956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-26T15:17:02Z</dc:date>
    </item>
  </channel>
</rss>

