upper case Türkçe karakter

 "ı" ve "i" karakterlerinin translate komutu büyük harfe çeviremiyor. Diğer karakterlerde sorun olmadığı için translate komutundan evvel replace komutu kullanabilirsiniz.

        case ls_fcat-fieldname.
          when `EPOSTA`.
            translate <fs_cell> to upper case .
          when `BOLUM`.
            replace all occurrences of `ı` in <fs_cell> with `I`.
            replace all occurrences of `i` in <fs_cell> with `İ`.
            translate <fs_cell> to upper case .
          when others.