<?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: table type x to xstring in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111388#M106324</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 this help:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/ba/78d3c747b24546ab1c1499a054d8a5/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/ba/78d3c747b24546ab1c1499a054d8a5/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It explains all about uploading(or downloading) and manipulating the content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Oct 2005 09:16:44 GMT</pubDate>
    <dc:creator>eddy_declercq</dc:creator>
    <dc:date>2005-10-18T09:16:44Z</dc:date>
    <item>
      <title>table type x to xstring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111384#M106320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an i_tab of type x filled with data.&lt;/P&gt;&lt;P&gt;Now I have to copy this data to a file on a server.&lt;/P&gt;&lt;P&gt;I would like to do this through a dataset transfer (not with gui_download). I think that I have to transfer a xstring, but how do I get the data from the i_tab into a xstring?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetz Fred.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 08:41:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111384#M106320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T08:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: table type x to xstring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111385#M106321</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;  I think you can achieve it with CONCATENATE..&lt;/P&gt;&lt;P&gt;  For example,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: s_xstring TYPE xstring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT i_tab.&lt;/P&gt;&lt;P&gt;    CONCATENATE s_xstring i_tab INTO s_xstring &lt;/P&gt;&lt;P&gt;    IN BYTE MODE.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE: s_xstring.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 08:45:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111385#M106321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T08:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: table type x to xstring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111386#M106322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sri,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already tried that, but it doesn't work, because i_tab must be of type x or xstring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;greetz Fred.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 08:56:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111386#M106322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T08:56:32Z</dc:date>
    </item>
    <item>
      <title>Re: table type x to xstring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111387#M106323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fred,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I thought your internal table is of type X.&lt;/P&gt;&lt;P&gt;  Any way, I think you can also try the following fm,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SCMS_BINARY_TO_XSTRING&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  Please do a where-used list on this fm in case you need more info..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  In fact check this fm also,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;SCMS_TEXT_TO_XSTRING&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Pinnamaneni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 09:00:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111387#M106323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T09:00:50Z</dc:date>
    </item>
    <item>
      <title>Re: table type x to xstring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111388#M106324</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 this help:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/ba/78d3c747b24546ab1c1499a054d8a5/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/ba/78d3c747b24546ab1c1499a054d8a5/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It explains all about uploading(or downloading) and manipulating the content.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 09:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111388#M106324</guid>
      <dc:creator>eddy_declercq</dc:creator>
      <dc:date>2005-10-18T09:16:44Z</dc:date>
    </item>
    <item>
      <title>Re: table type x to xstring</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111389#M106325</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;Pls don't forget to reward points and close the question if you find the answers useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 08:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-type-x-to-xstring/m-p/1111389#M106325</guid>
      <dc:creator>eddy_declercq</dc:creator>
      <dc:date>2005-10-21T08:01:43Z</dc:date>
    </item>
  </channel>
</rss>

