<?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>Question Re: Upper case umlauts not recognised in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840404#M4871247</link>
    <description>&lt;P&gt;Try waving a dead chicken over the keyboard... in this case, &lt;STRONG&gt;LCASE ( ... )&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Alas, I can't reproduce this error on a new V17 database on Windows; all the result sets are the same:&lt;/P&gt;
&lt;PRE&gt;CREATE TABLE persons ( name VARCHAR ( 10 ) );
INSERT persons VALUES ( 'Müller' );
INSERT persons VALUES ( 'MÜLLER' );
COMMIT;
SELECT @@VERSION, name FROM persons WHERE name LIKE 'Müller%'
SELECT @@VERSION, name FROM persons WHERE name LIKE 'MÜLLER%'
SELECT @@VERSION, name FROM persons WHERE name LIKE 'MÜller%'
SELECT @@VERSION, name FROM persons WHERE name LIKE LCASE ( 'MÜller%' );
SELECT @@VERSION, name FROM persons WHERE LCASE ( name ) LIKE LCASE ( 'MÜller%' );

@@VERSION,name
'17.0.4.2053','Müller'
'17.0.4.2053','MÜLLER'
&lt;/PRE&gt;</description>
    <pubDate>Thu, 15 Jun 2017 05:49:48 GMT</pubDate>
    <dc:creator>Breck_Carter</dc:creator>
    <dc:date>2017-06-15T05:49:48Z</dc:date>
    <item>
      <title>Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaq-p/13840402</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I found that upper case umlauts in a SELECT does not lead to a result (set). Following SELECT works as expected, i. e. results in some rows displayed.&lt;/P&gt;
&lt;PRE&gt;SELECT name
FROM persons
WHERE name LIKE 'Müller%'
&lt;/PRE&gt;

&lt;P&gt;Changing only the lower case ü to an upper case Ü, and no rows are displayed any more.
Any idea why this behaviour?&lt;/P&gt;
&lt;P&gt;Regards, Robert&lt;/P&gt;
&lt;P&gt;SQL Anywhere 17.0.4.2129
macOS 10.12.5
Java 1.8.0_131&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:21:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaq-p/13840402</guid>
      <dc:creator>huber1</dc:creator>
      <dc:date>2017-06-14T11:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840406#M4871249</link>
      <description>&lt;P&gt;How did you initialize your database? What character set, collation, case sensitivity, etc?  Run dbinfo on your database and post the output.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840406#M4871249</guid>
      <dc:creator>MarkCulp</dc:creator>
      <dc:date>2017-06-14T11:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840407#M4871250</link>
      <description>&lt;P&gt;Also, what is the datatype of 'name': CHAR or NCHAR?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:28:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840407#M4871250</guid>
      <dc:creator>johnsmirnios</dc:creator>
      <dc:date>2017-06-14T11:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840403#M4871246</link>
      <description>&lt;P&gt;I can't tell about that particular umlaut/case issue, however, you can use a fitting collation independent of your global database setting with the help of the builtin COMPARE function and the "collation tailoring" feature:&lt;/P&gt;
&lt;PRE&gt;create table test (ch varchar(5));

insert into test values ('a');
insert into test values ('A');
insert into test values ('ä'); -- add accented char (umlaut)
insert into test values ('Á');

-- lists all four chars in a case-insensitive database
select * from test
where ch = 'A';

-- Test for equality based on UCA collation - lists just 'A'
select * from test
where compare(ch, 'A', 'UCA(locale=en;case=respect;accent=respect)') = 0;

-- Test for equality based on default 1252LATIN1 with case respect
-- - list 'A' and 'Ä' here (i.e. does ignore accents)
select * from test
where compare(ch, 'A', '1252LATIN1(case=respect)') = 0;
&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 Jun 2017 11:34:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840403#M4871246</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2017-06-14T11:34:58Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840408#M4871251</link>
      <description>&lt;P&gt;Hi Volker&lt;/P&gt;
&lt;P&gt;Thanks for your answer. I recognise I must be more specific. What I mean is that if I have names written as 'MÜLLER' as well as 'Müller' in the database, I do not get both of them with the WHERE clause like 'Müller'. If I use 'MÜLLER', I get all names written in capitals, but not the ones written as CamelCase. And vice à versa.
The database settings are (N)CHAR case sensitivity: Ignore (see screenshot).&lt;/P&gt;
&lt;P&gt;I tried with your suggestion (your example works of course), but I can't figure out how to apply it on my SELECT, giving all 'Müller' as result, however there are stored in the database.&lt;/P&gt;
&lt;P&gt;But what bothers me is that although the database is set to case sensitivity ignore, an upper case Umlaut does not "translate" in a lower case Umlaut.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 05:29:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840408#M4871251</guid>
      <dc:creator>huber1</dc:creator>
      <dc:date>2017-06-15T05:29:29Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840404#M4871247</link>
      <description>&lt;P&gt;Try waving a dead chicken over the keyboard... in this case, &lt;STRONG&gt;LCASE ( ... )&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Alas, I can't reproduce this error on a new V17 database on Windows; all the result sets are the same:&lt;/P&gt;
&lt;PRE&gt;CREATE TABLE persons ( name VARCHAR ( 10 ) );
INSERT persons VALUES ( 'Müller' );
INSERT persons VALUES ( 'MÜLLER' );
COMMIT;
SELECT @@VERSION, name FROM persons WHERE name LIKE 'Müller%'
SELECT @@VERSION, name FROM persons WHERE name LIKE 'MÜLLER%'
SELECT @@VERSION, name FROM persons WHERE name LIKE 'MÜller%'
SELECT @@VERSION, name FROM persons WHERE name LIKE LCASE ( 'MÜller%' );
SELECT @@VERSION, name FROM persons WHERE LCASE ( name ) LIKE LCASE ( 'MÜller%' );

@@VERSION,name
'17.0.4.2053','Müller'
'17.0.4.2053','MÜLLER'
&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Jun 2017 05:49:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840404#M4871247</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2017-06-15T05:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840409#M4871252</link>
      <description>&lt;P&gt;Please answer the comments to your question. If you are using, for example, UTF8BIN collation rather than UCA, the behaviour is expected.&lt;/P&gt;
&lt;P&gt;See &lt;A href="http://dcx.sybase.com/index.html#sqla170/en/html/3bccdcfe6c5f10148f50801e84c733a2.html"&gt;http://dcx.sybase.com/index.html#sqla170/en/html/3bccdcfe6c5f10148f50801e84c733a2.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 05:50:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840409#M4871252</guid>
      <dc:creator>johnsmirnios</dc:creator>
      <dc:date>2017-06-15T05:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840410#M4871253</link>
      <description>&lt;P&gt;LCASE may also not work -- depending on the collation being used. UTF8BIN cannot do case conversion beyond the ASCII range.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 05:51:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840410#M4871253</guid>
      <dc:creator>johnsmirnios</dc:creator>
      <dc:date>2017-06-15T05:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840411#M4871254</link>
      <description>&lt;P&gt;John, still on sybase.com? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;So you basically say, one needs to use the &lt;A href="http://dcx.sap.com/index.html#sqla170/en/html/3bcce5416c5f1014bd92ab2ba5014148.html"&gt;Unicode Collation Algorithm (UCA)&lt;/A&gt; to get proper case conversion for characters beyond the 7-bit English characters, like the umlauts, right?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2017 06:53:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840411#M4871254</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2017-06-15T06:53:31Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840412#M4871255</link>
      <description>&lt;P&gt;Hi Mark&lt;/P&gt;
&lt;P&gt;Excuse me for being so late. I was away. I run dbinfo and the following is the header part I got as result:&lt;/P&gt;
&lt;PRE&gt;SQL Anywhere Information Utility Version 17.0.4.2129
Database  : /Applications/SQLAnywhere17/databases/Hades.db
Log file  : /Applications/SQLAnywhere17/databases/Hades.log
Log mirror: none
Free pages: 5445
Page size : 4096
Encrypted : No
Strings padded with blanks for comparisons: No
CHAR collation sequence: UTF8(CaseSensitivity=Ignore)
CHAR character set encoding: UTF-8
NCHAR collation sequence: UCA(CaseSensitivity=Ignore;AccentSensitivity=Ignore;PunctuationSensitivity=Primary)
NCHAR character set encoding: UTF-8
Database checksums enabled: Yes
Encrypted tables supported: No
Current timeline GUID: 2403a5a0-7023-4916-a7d0-220512338fa3&lt;/PRE&gt;

&lt;P&gt;Best regards, Robert&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 09:10:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840412#M4871255</guid>
      <dc:creator>huber1</dc:creator>
      <dc:date>2017-06-20T09:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840413#M4871256</link>
      <description>&lt;P&gt;Hi John&lt;/P&gt;
&lt;P&gt;The datatype is CHAR(255)&lt;/P&gt;
&lt;P&gt;best regards, Robert&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 09:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840413#M4871256</guid>
      <dc:creator>huber1</dc:creator>
      <dc:date>2017-06-20T09:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840414#M4871257</link>
      <description>&lt;P&gt;Hi Breck&lt;/P&gt;
&lt;P&gt;With&lt;/P&gt;
&lt;PRE&gt;SELECT @@VERSION, name FROM persons WHERE name LIKE 'Müller%'&lt;/PRE&gt;

&lt;P&gt;I expected to get the 2 records with 'Müller' and 'MÜLLER' but only get 'Müller'.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 09:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840414#M4871257</guid>
      <dc:creator>huber1</dc:creator>
      <dc:date>2017-06-20T09:26:34Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840415#M4871258</link>
      <description>&lt;P&gt;Hi John&lt;/P&gt;
&lt;P&gt;I hopefully did answer it with the above?&lt;/P&gt;
&lt;P&gt;Datatype correction of my answer: The datatype is VARCHAR(255).&lt;/P&gt;
&lt;P&gt;Thanks and regards,
Robert&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 09:28:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840415#M4871258</guid>
      <dc:creator>huber1</dc:creator>
      <dc:date>2017-06-20T09:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840416#M4871259</link>
      <description>&lt;P&gt;Additional Info about set options:
sort_collation: 51 (default: Internal)&lt;/P&gt;
&lt;P&gt;and, but has nothing to do with the problem I assume:
date_format: dd.MM.yyyy
date_order: dmy&lt;/P&gt;
&lt;P&gt;Regards,
Robert&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 09:34:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840416#M4871259</guid>
      <dc:creator>huber1</dc:creator>
      <dc:date>2017-06-20T09:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840417#M4871260</link>
      <description>&lt;P&gt;The "legacy" collations for SQL Anywhere can do case conversion for single-byte characters. That includes all characters for collations such as windows-1252. In UTF8, accented characters are multibyte characters and require ICU to do case conversion.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 10:31:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840417#M4871260</guid>
      <dc:creator>johnsmirnios</dc:creator>
      <dc:date>2017-06-20T10:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840405#M4871248</link>
      <description>&lt;P&gt;The SQL Anywhere collation "UTF8" (not to be confused with the UTF8 character set which is used to encode the characters) is very similar to UTF8BIN and is a SQL Anywhere legacy collation. It can only do case equivalency on single-byte characters. To sort UTF-8 encoded characters correctly, you must use UCA.&lt;/P&gt;
&lt;P&gt;If you don't need Unicode / UTF-8 then you might use a collation such as windows-1252 but that, of course, limits what characters you can store to just the 256 characters in windows-1252.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 10:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840405#M4871248</guid>
      <dc:creator>johnsmirnios</dc:creator>
      <dc:date>2017-06-20T10:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840418#M4871261</link>
      <description>&lt;P&gt;Ah yes, I should've known that, since I have never ever had problems converting umlauts with v5.5 and above using those legacy collations and (VAR)CHAR data types, and of course Germans use those a lot...:)&lt;/P&gt;
&lt;P&gt;So my statement would only be true for UTF8.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 10:37:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840418#M4871261</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2017-06-20T10:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840419#M4871262</link>
      <description>&lt;P&gt;FWIW, I tested with a fresh v17 database with (almost) identical settings, particularly using CHAR with UTF-8 and UCA collation:&lt;/P&gt;
&lt;PRE&gt;QL Anywhere Information Utility Version 17.0.7.3382
Database  : d:\\data\\Chartest\\Chartest.db
Log file  : d:\\data\\Chartest\\CharTest.log
Log mirror: none
Page size : 4096
Encrypted : No
Strings padded with blanks for comparisons: No
CHAR collation sequence: UCA(CaseSensitivity=Ignore;AccentSensitivity=Ignore;PunctuationSensitivity=Primary)
CHAR character set encoding: UTF-8
NCHAR collation sequence: UCA(CaseSensitivity=Ignore;AccentSensitivity=Ignore;PunctuationSensitivity=Primary)
NCHAR character set encoding: UTF-8
Database checksums enabled: Yes
Encrypted tables supported: No
Current timeline GUID: 520ce3ac-df3b-4948-8cea-cae5409731c6
&lt;/PRE&gt;

&lt;P&gt;and then used Breck's test script, and it always listed both "Müller" and "MÜLLER", as expected for UCA collations...&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;What I'm not aware of is the default for "AccentSensitivity" and "PunctuationSensitivity" for the UCA CHAR collation, although I choose the default values, and that are "Ignore" resp. "Primary" - in your DBINFO, those properties are not listed. Don't know whether that makes a difference, but as stated originally, you can easily use collation tailoring to test different collations without to have to create or rebuild databases.&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;&lt;STRONG&gt;EDIT:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Sorry, I fully missed the difference in the CHAR collation (CHAR collation sequence: UTF8 vs. UCA). So that tells that John's answer w.r.t. "UTF8BIN" does apply here. Ingore my previous paragraph about UCA tailoring...&lt;/P&gt;
&lt;P&gt;You can rebuild the database based on a newly created database with a CREATE DATABASE statement like&lt;/P&gt;
&lt;PRE&gt;CREATE DATABASE ...
COLLATION 'UCA'
NCHAR COLLATION 'UCA' ...
&lt;/PRE&gt;

&lt;P&gt;possibly adding collation tailoring options for your (German?) locale...&lt;/P&gt;
&lt;P&gt;As John has told, in case you can do with just 256 different characters (not uncommon with German), you can also use COLLATION 'UCA' ENCODING 'CP1252'.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 11:14:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840419#M4871262</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2017-06-20T11:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840420#M4871263</link>
      <description>&lt;P&gt;Hi Volker&lt;/P&gt;
&lt;P&gt;Thanks for the dbinfo. That difference seems to be the solution. Do you know hot to add the UCA(...) information to my database(s)? I am not aware I specified it at creation time. Is it possible to add it when rebuilding the database?&lt;/P&gt;
&lt;P&gt;Regards, Robert&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2017 10:31:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840420#M4871263</guid>
      <dc:creator>huber1</dc:creator>
      <dc:date>2017-06-23T10:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Upper case umlauts not recognised</title>
      <link>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840421#M4871264</link>
      <description>&lt;P&gt;Thanks for pointing to the 'UCA' possibilities when creating a new database. Will try that. And yes,it's a German locale — Swiss German to be precise;-)&lt;/P&gt;</description>
      <pubDate>Tue, 04 Jul 2017 23:55:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/upper-case-umlauts-not-recognised/qaa-p/13840421#M4871264</guid>
      <dc:creator>huber1</dc:creator>
      <dc:date>2017-07-04T23:55:29Z</dc:date>
    </item>
  </channel>
</rss>

