function SansAccent(S : text) do
S := replacex(S, "Ç|Ć", "g", "C");
S := replacex(S, "ç", "g", "c");
S := replacex(S, "è|é|ê|ë", "g", "e");
S := replacex(S, "È|É|Ê|Ë", "g", "E");
S := replacex(S, "à|á|â|ã|ä|å", "g", "a");
S := replacex(S, "@|À|Á|Â|Ã|Ä|Å", "g", "A");
S := replacex(S, "ì|í|î|ï", "g", "i");
S := replacex(S, "Ì|Í|Î|Ï", "g", "I");
S := replacex(S, "ð|ò|ó|ô|õ|ö", "g", "o");
S := replacex(S, "Ò|Ó|Ô|Õ|Ö", "g", "O");
S := replacex(S, "ù|ú|û|ü", "g", "u");
S := replacex(S, "Ù|Ú|Û|Ü", "g", "U");
S := replacex(S, "ý|ÿ", "g", "y");
S := replacex(S, "Ý", "g", "Y");
S
end;
(select Customer order SansAccent(upper('First name'))).text('first name')