<?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: change table encoding in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279357#M496134</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You can use the class:&lt;/P&gt;&lt;P&gt;CL_ABAP_CONV_IN_CE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first :&lt;/P&gt;&lt;P&gt;conv = cl_abap_conv_in_ce=&amp;gt;create( &lt;/P&gt;&lt;P&gt;          encoding = 'UTF-8' ).    &lt;/P&gt;&lt;P&gt;and then the convert method:&lt;/P&gt;&lt;P&gt;conv-&amp;gt;convert(                      &lt;/P&gt;&lt;P&gt;    EXPORTING input = lxs_content   &lt;/P&gt;&lt;P&gt;    IMPORTING data =  l_contline ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Walter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 15 May 2007 13:54:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-15T13:54:58Z</dc:date>
    <item>
      <title>change table encoding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279353#M496130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hallow&lt;/P&gt;&lt;P&gt;I have internal table and itab and I wont to change the encoding&lt;/P&gt;&lt;P&gt;Of the data their to utf-8 which function do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i done this becose i have to export the data in my table to xml&lt;/P&gt;&lt;P&gt;now i have encoding iso8.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 12:16:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279353#M496130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T12:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: change table encoding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279354#M496131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antonio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might convert the fields using CL_ABAP_CHAR_UTILITIES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 12:26:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279354#M496131</guid>
      <dc:creator>Peter_Inotai</dc:creator>
      <dc:date>2007-05-15T12:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: change table encoding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279355#M496132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Peter  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can give me example please how to use it&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 13:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279355#M496132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T13:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: change table encoding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279356#M496133</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;Sorry, I didn't program myself the same senario, however you can check unicode demo programs TECHED_UNICODE_SOLUTION*, and presentation 'How to Make Your ABAP Code Unicode-Enabled' from Dr. Christian Hansen.&lt;/P&gt;&lt;P&gt;You can also use the following classes:&lt;/P&gt;&lt;P&gt;CL_ABAP_CONV_OUT_CE system code page &amp;gt;  any code page&lt;/P&gt;&lt;P&gt;CL_ABAP_CONV_X2X_CE any code page &amp;gt; any code page&lt;/P&gt;&lt;P&gt;CL_ABAP_CONV_IN_CE any code page &amp;gt; system code page&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 13:40:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279356#M496133</guid>
      <dc:creator>Peter_Inotai</dc:creator>
      <dc:date>2007-05-15T13:40:48Z</dc:date>
    </item>
    <item>
      <title>Re: change table encoding</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279357#M496134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;You can use the class:&lt;/P&gt;&lt;P&gt;CL_ABAP_CONV_IN_CE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first :&lt;/P&gt;&lt;P&gt;conv = cl_abap_conv_in_ce=&amp;gt;create( &lt;/P&gt;&lt;P&gt;          encoding = 'UTF-8' ).    &lt;/P&gt;&lt;P&gt;and then the convert method:&lt;/P&gt;&lt;P&gt;conv-&amp;gt;convert(                      &lt;/P&gt;&lt;P&gt;    EXPORTING input = lxs_content   &lt;/P&gt;&lt;P&gt;    IMPORTING data =  l_contline ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Walter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 May 2007 13:54:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-table-encoding/m-p/2279357#M496134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-15T13:54:58Z</dc:date>
    </item>
  </channel>
</rss>

