Skip to Content
0
Former Member
Jul 03, 2009 at 09:00 AM

Characters not displayed correctly

121 Views

Hi,

After support package installation, chararcters are not displayed correctly when i use application server,

for example when i write internal table into a file in text mode and read it after into attachment in binary mode

but characters are not correct. And after mail sent, the half or file is sent, not all data available.

What could be the reason?

Char exp in debug of attachment: ㅔ䠰㘹㌲〰㤰㘰㌍ਲ䙈〶㤳㈰〹

I get above char after i read the file, code like following:

do.
  clear attch.
  read dataset filename into attch.
  if sy-subrc <> 0.
   append attch.
   exit.
  endif.
  append attch.
enddo.

Thanks.