Hi expatrs,
Last double-byte character gets garbled. (like Chinese, Japanese...)
We use ECC 6.0.
-
[Souce code]
REPORT ZA_TEST_01 LINE-SIZE 132.
data: w_text2(20) type c.
w_text2 = 'あいうえおかきくけこ'.
write: (20) w_text2. "Line1
write: / w_text2+2(11). "Line2
-
[Result]
あいうえおかきくけこ "Line1
うえおかき> "Line2
-
I belive Line2 should be 'うえおかきくけこ'.
But 'く' gets garbled and 'けこ' dose not appear.
Please tell me why??
Thanks in advance.