<?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 collation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-collation/m-p/7248813#M1527289</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeffrey,&lt;/P&gt;&lt;P&gt;Unicode systems use the ICU (International component for Unicode) library for sorting.&lt;/P&gt;&lt;P&gt;Please have a look at&lt;/P&gt;&lt;P&gt;&lt;A href="http://userguide.icu-project.org/collation" target="test_blank"&gt;http://userguide.icu-project.org/collation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;for further info.&lt;/P&gt;&lt;P&gt;If you want to check the sorting independent of ABAP, please test it with&lt;/P&gt;&lt;P&gt;&lt;A href="http://minaret.info/test/sort.msp" target="test_blank"&gt;http://minaret.info/test/sort.msp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;A href="http://demo.icu-project.org/icu-bin/locexp?_=root&amp;amp;d_=de&amp;amp;x=col" target="test_blank"&gt;http://demo.icu-project.org/icu-bin/locexp?_=root&amp;amp;d_=de&amp;amp;x=col&lt;/A&gt;&lt;/P&gt;&lt;P&gt;There you will see, that underscore is sorted in a higher sequence than "normal" characters (which is compatible with Non-Unicode).&lt;/P&gt;&lt;P&gt;In ABAP, you can also copy the program RSCP0102 to customer name range and adapt the words provided by this report.&lt;/P&gt;&lt;P&gt;Regarding underscore, it will give you the same result as in the links mentioned.&lt;/P&gt;&lt;P&gt;So somehow the sorting result you experienced in your DEV system might have been based on binary mode - in that case sorting is different.&lt;/P&gt;&lt;P&gt;Please also have a look at SAP notes 50337 and 952625.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Nils Buerckel&lt;/P&gt;&lt;P&gt;SAP AG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.&lt;/P&gt;&lt;P&gt;This link gives you a good description how sorting works in non-Unicode systems:&lt;/P&gt;&lt;P&gt;/people/hannes.kuehnemund/blog/2008/08/15/sort-varietes-between-operating-systems&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nils Buerckel on Sep 22, 2010 11:16 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Sep 2010 07:34:38 GMT</pubDate>
    <dc:creator>nils_buerckel</dc:creator>
    <dc:date>2010-09-20T07:34:38Z</dc:date>
    <item>
      <title>Unicode collation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-collation/m-p/7248812#M1527288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I read that Unicode preserves the 127 ascii character collating sequence. Yet, as I listed function groups in Unicode DEV and non Unicode PRD for comparison I noticed the underscore "_" character sorts as a lower sequence than alphabetics in Unicode and higher in non Unicode. In ASCII underscore is coded as 97. I haven't found a Unicode table yet showing the numeric assignment to Unicode characters though it would be quite large. This may have unexpected ramifications that I will be watching for. Comment encouraged!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Sep 2010 20:01:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-collation/m-p/7248812#M1527288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-17T20:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode collation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-collation/m-p/7248813#M1527289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jeffrey,&lt;/P&gt;&lt;P&gt;Unicode systems use the ICU (International component for Unicode) library for sorting.&lt;/P&gt;&lt;P&gt;Please have a look at&lt;/P&gt;&lt;P&gt;&lt;A href="http://userguide.icu-project.org/collation" target="test_blank"&gt;http://userguide.icu-project.org/collation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;for further info.&lt;/P&gt;&lt;P&gt;If you want to check the sorting independent of ABAP, please test it with&lt;/P&gt;&lt;P&gt;&lt;A href="http://minaret.info/test/sort.msp" target="test_blank"&gt;http://minaret.info/test/sort.msp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;A href="http://demo.icu-project.org/icu-bin/locexp?_=root&amp;amp;d_=de&amp;amp;x=col" target="test_blank"&gt;http://demo.icu-project.org/icu-bin/locexp?_=root&amp;amp;d_=de&amp;amp;x=col&lt;/A&gt;&lt;/P&gt;&lt;P&gt;There you will see, that underscore is sorted in a higher sequence than "normal" characters (which is compatible with Non-Unicode).&lt;/P&gt;&lt;P&gt;In ABAP, you can also copy the program RSCP0102 to customer name range and adapt the words provided by this report.&lt;/P&gt;&lt;P&gt;Regarding underscore, it will give you the same result as in the links mentioned.&lt;/P&gt;&lt;P&gt;So somehow the sorting result you experienced in your DEV system might have been based on binary mode - in that case sorting is different.&lt;/P&gt;&lt;P&gt;Please also have a look at SAP notes 50337 and 952625.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Nils Buerckel&lt;/P&gt;&lt;P&gt;SAP AG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.&lt;/P&gt;&lt;P&gt;This link gives you a good description how sorting works in non-Unicode systems:&lt;/P&gt;&lt;P&gt;/people/hannes.kuehnemund/blog/2008/08/15/sort-varietes-between-operating-systems&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nils Buerckel on Sep 22, 2010 11:16 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Sep 2010 07:34:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-collation/m-p/7248813#M1527289</guid>
      <dc:creator>nils_buerckel</dc:creator>
      <dc:date>2010-09-20T07:34:38Z</dc:date>
    </item>
  </channel>
</rss>

