<?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 Returning XML string from RFC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978746#M1492345</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;Suppose in an RFC i have some data in the internal table. Can I convert this data to an xml string and return this xml string to the people who call this RFC .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sanath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 May 2010 06:29:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-28T06:29:52Z</dc:date>
    <item>
      <title>Returning XML string from RFC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978746#M1492345</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;Suppose in an RFC i have some data in the internal table. Can I convert this data to an xml string and return this xml string to the people who call this RFC .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sanath.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 06:29:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978746#M1492345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-28T06:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: Returning XML string from RFC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978747#M1492346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[Asking Good Questions in the Forums to get Good Answers|http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17662] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Graham Robbo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 May 2010 22:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978747#M1492346</guid>
      <dc:creator>GrahamRobbo</dc:creator>
      <dc:date>2010-05-28T22:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Returning XML string from RFC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978748#M1492347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you read the thread about "good questions"... - What is the question in there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically you can transform any serialzable*1 abap variable into an xml stream&lt;/P&gt;&lt;P&gt;using statement CALL TRANSFORMATION ID SOURCE lt_my_table RESULT XML lv_xml.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It can be re-transformed as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSFORMATION ID SOURCE  XML lv_my_xml RESULT lt_my_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just use the help on this statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*1 serializable means the data objects must not contain any object references anywhere.&lt;/P&gt;&lt;P&gt;  additionally it is not recommended to have string or any x-type values in there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 May 2010 02:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978748#M1492347</guid>
      <dc:creator>Marcel_Wahl</dc:creator>
      <dc:date>2010-05-29T02:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Returning XML string from RFC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978749#M1492348</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;Convert Internal table data to PDF and then to Binary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shruti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 May 2010 06:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978749#M1492348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-29T06:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Returning XML string from RFC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978750#M1492349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shruti, there is a big divination talent in that answer &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 May 2010 08:17:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/returning-xml-string-from-rfc/m-p/6978750#M1492349</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2010-05-29T08:17:01Z</dc:date>
    </item>
  </channel>
</rss>

