<?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: What this small code does? And how do I do it in Unicode. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514689#M1260810</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you want to make this code UC enabled ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Apr 2009 08:18:16 GMT</pubDate>
    <dc:creator>Sandeep_Panghal</dc:creator>
    <dc:date>2009-04-27T08:18:16Z</dc:date>
    <item>
      <title>What this small code does? And how do I do it in Unicode.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514687#M1260808</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 got the following code and I really don't know what it does or even why. All I know It's not UC enabled ( since it's uxinf the type x).&lt;/P&gt;&lt;P&gt;I was thinking I might be converting from ascii representation to text or something like that but I'm not that sure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM TRANSLATE_FIELD USING    STRING_TRAN&lt;/P&gt;&lt;P&gt;                     CHANGING STRING1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: STRING(255),&lt;/P&gt;&lt;P&gt;         len1(3) type i,&lt;/P&gt;&lt;P&gt;         LEN(3)  TYPE I,&lt;/P&gt;&lt;P&gt;         NUM(3)  TYPE I,&lt;/P&gt;&lt;P&gt;         I(3)    TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: C VALUE 'A',&lt;/P&gt;&lt;P&gt;        X TYPE X.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS:&amp;lt;fc&amp;gt; type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  STRING = STRING_TRAN.&lt;/P&gt;&lt;P&gt;  len1 = strlen( STRING ).&lt;/P&gt;&lt;P&gt;  LEN = 0.&lt;/P&gt;&lt;P&gt;  NUM = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  while len &amp;lt; len1.&lt;/P&gt;&lt;P&gt;    i = STRING+len(3).&lt;/P&gt;&lt;P&gt;    move i to x.&lt;/P&gt;&lt;P&gt;    assign x to &amp;lt;fc&amp;gt; casting type c.&lt;/P&gt;&lt;P&gt;    move &amp;lt;fc&amp;gt; to c.&lt;/P&gt;&lt;P&gt;    MOVE C TO STRING1+NUM.&lt;/P&gt;&lt;P&gt;    len = len + 3.&lt;/P&gt;&lt;P&gt;    NUM = NUM + 1.&lt;/P&gt;&lt;P&gt;  endwhile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " TRANSLATE_FIELD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ariel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 08:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514687#M1260808</guid>
      <dc:creator>former_member195999</dc:creator>
      <dc:date>2009-04-27T08:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: What this small code does? And how do I do it in Unicode.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514688#M1260809</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;Display the code in change mode .On top u will see the tab Goto.In this u will see the Attributes.&lt;/P&gt;&lt;P&gt;Click on attributes and it will poen a popup window.In this window at the bottom u will see the 'Unicode checks active' .&lt;/P&gt;&lt;P&gt;You need to check it in order to make this code unicode compatible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anuj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 08:13:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514688#M1260809</guid>
      <dc:creator>anuj_srivastava</dc:creator>
      <dc:date>2009-04-27T08:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: What this small code does? And how do I do it in Unicode.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514689#M1260810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So you want to make this code UC enabled ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 08:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514689#M1260810</guid>
      <dc:creator>Sandeep_Panghal</dc:creator>
      <dc:date>2009-04-27T08:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: What this small code does? And how do I do it in Unicode.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514690#M1260811</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 want to make this small code UC enabled. Since there is a move of TYPE x into char this is not OK at the mopment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem is I don't really know or understand how to convert itr to UC enabled program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can notice it takes clusters of 3 chars (bytes ?) long and convert them to char.&lt;/P&gt;&lt;P&gt;For example 101 = e 100 = d 099 = c.... &lt;span class="lia-unicode-emoji" title=":grinning_squinting_face:"&gt;😆&lt;/span&gt; 101099101 -&amp;gt; ece .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ariel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 10:08:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514690#M1260811</guid>
      <dc:creator>former_member195999</dc:creator>
      <dc:date>2009-04-27T10:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: What this small code does? And how do I do it in Unicode.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514691#M1260812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Closing old msg.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 May 2010 07:17:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-this-small-code-does-and-how-do-i-do-it-in-unicode/m-p/5514691#M1260812</guid>
      <dc:creator>former_member195999</dc:creator>
      <dc:date>2010-05-23T07:17:19Z</dc:date>
    </item>
  </channel>
</rss>

