<?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: Internal tab to be converted into XSTRING format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tab-to-be-converted-into-xstring-format/m-p/5620183#M1280257</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try class CL_SWF_UTL_CONVERT_XSTRING method TABLE_TO_XSTRING.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD cl_swf_utl_convert_xstring=&amp;gt;table_to_xstring
EXPORTING
i_table = my_internal_table
i_size = size_of_my_internal_table
RECEIVING
r_stream = revceiving_string
EXCEPTIONS
invalid_input = 1
OTHERS = 2.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;removed by moderator&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on May 16, 2011 11:39 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 May 2011 03:50:32 GMT</pubDate>
    <dc:creator>koolspy_ultimate</dc:creator>
    <dc:date>2011-05-16T03:50:32Z</dc:date>
    <item>
      <title>Internal tab to be converted into XSTRING format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tab-to-be-converted-into-xstring-format/m-p/5620180#M1280254</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;can u pls help me to convert a standard internal table into a XSTRING Format&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 07:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tab-to-be-converted-into-xstring-format/m-p/5620180#M1280254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T07:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Internal tab to be converted into XSTRING format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tab-to-be-converted-into-xstring-format/m-p/5620181#M1280255</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;Try class CL_SWF_UTL_CONVERT_XSTRING method TABLE_TO_XSTRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD cl_swf_utl_convert_xstring=&amp;gt;table_to_xstring&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_table       = my_internal_table&lt;/P&gt;&lt;P&gt;      i_size        = size_of_my_internal_table&lt;/P&gt;&lt;P&gt;    RECEIVING&lt;/P&gt;&lt;P&gt;      r_stream      = revceiving_string&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      invalid_input = 1&lt;/P&gt;&lt;P&gt;      OTHERS        = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Issa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 08:52:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tab-to-be-converted-into-xstring-format/m-p/5620181#M1280255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T08:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Internal tab to be converted into XSTRING format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tab-to-be-converted-into-xstring-format/m-p/5620182#M1280256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try somthing like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : GT_TABLE    TYPE TABLE OF CHAR20,&lt;/P&gt;&lt;P&gt;           GS_TABLE    TYPE                  CHAR20,&lt;/P&gt;&lt;P&gt;           GV_XSTRING TYPE                  XSTRING,&lt;/P&gt;&lt;P&gt;           GV_XLINE      TYPE                  XSTRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  CLEAR : GT_TABLE ,GS_TABLE,GV_XSTRING.&lt;/P&gt;&lt;P&gt;  DO 10 TIMES.&lt;/P&gt;&lt;P&gt;    GS_TABLE  = 'ABCDEFGHIJKLMNOPRST'.&lt;/P&gt;&lt;P&gt;    APPEND GS_TABLE TO GT_TABLE.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT GT_TABLE Into GS_TABLE.&lt;/P&gt;&lt;P&gt;    CONVERT TEXT GS_TABLE INTO SORTABLE CODE GV_XLINE.&lt;/P&gt;&lt;P&gt;    CONCATENATE GV_XLINE GV_XSTRING INTO GV_XSTRING IN BYTE MODE.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  Write GV_XSTRING.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2009 09:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tab-to-be-converted-into-xstring-format/m-p/5620182#M1280256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-14T09:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Internal tab to be converted into XSTRING format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tab-to-be-converted-into-xstring-format/m-p/5620183#M1280257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try class CL_SWF_UTL_CONVERT_XSTRING method TABLE_TO_XSTRING.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL METHOD cl_swf_utl_convert_xstring=&amp;gt;table_to_xstring
EXPORTING
i_table = my_internal_table
i_size = size_of_my_internal_table
RECEIVING
r_stream = revceiving_string
EXCEPTIONS
invalid_input = 1
OTHERS = 2.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;removed by moderator&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on May 16, 2011 11:39 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 May 2011 03:50:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tab-to-be-converted-into-xstring-format/m-p/5620183#M1280257</guid>
      <dc:creator>koolspy_ultimate</dc:creator>
      <dc:date>2011-05-16T03:50:32Z</dc:date>
    </item>
  </channel>
</rss>

