<?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: Unicode Conversion in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion/m-p/4520871#M1068865</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ranges is an obsolete command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is hex00 &amp;amp; hexff? Are they type compatible with hrp1001-sclas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Oct 2008 20:01:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-07T20:01:16Z</dc:date>
    <item>
      <title>Unicode Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion/m-p/4520869#M1068863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys/Dolls,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We're in the process of converting our programs to make them unicode compliant.&lt;/P&gt;&lt;P&gt;I'm having problem with one of them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I run UCCHECK on the program I get the following messages:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"R_SCLAS-LOW" and "HEX00" are mot mutually convertable in a unicode program.&lt;/P&gt;&lt;P&gt;"R_SCLAS-HIGH" and "HEXFF" are mot mutually convertable in a unicode program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code snippet is as follows:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ranges: r_sclas for hrp1001-sclas,
        r_otype for hrp1001-otype.

r_sclas-sign = 'I'.
r_sclas-option = 'BT'.
r_sclas-low = hex00.
r_sclas-high = hexff.
append r_sclas.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any of you guru's got any ideas on how I can fix this to make it uncode compliant.&lt;/P&gt;&lt;P&gt;I would appreciate it if you could show me new code snippet based on my own code so the changes are easily identifiable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2008 15:45:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion/m-p/4520869#M1068863</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-07T15:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion/m-p/4520870#M1068864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Raj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do not need the range for DB selection then you can replace the range selection as following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT itab INTO ls_record
                     WHERE ( &amp;lt;field&amp;gt; IN r_sclas ).
...
ENDLOOP.

LOOP AT itab INTO ls_record
                     WHERE ( &amp;lt;field&amp;gt; BETWEEN hex00 AND hexff ).
...
ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Be aware that there is not a single &lt;EM&gt;doll&lt;/EM&gt; in the SDN that will help you...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2008 16:26:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion/m-p/4520870#M1068864</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-10-07T16:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion/m-p/4520871#M1068865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ranges is an obsolete command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is hex00 &amp;amp; hexff? Are they type compatible with hrp1001-sclas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2008 20:01:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion/m-p/4520871#M1068865</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-07T20:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Conversion</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion/m-p/4520872#M1068866</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; Just make both of that same type with same length.... e.g char(10) and char(10).. it should be fine then...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Madan...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2008 02:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-conversion/m-p/4520872#M1068866</guid>
      <dc:creator>madan_ullasa</dc:creator>
      <dc:date>2008-10-08T02:43:09Z</dc:date>
    </item>
  </channel>
</rss>

