‎2008 Aug 11 12:17 PM
Hi,
I have a reall serious problem with nw & unicode system 😕
If I declare:
Data dt type char10.
and make:
dt = '1'
I debuger I can see that it's stored as: 3100 in hex <- described in 2 byted due to unicode issue.
its a big problem becuse data in this format are sending over RFC to fiscal printer wich is generating error (printer is not support unicode format) so question is.... how to store character data type in a single character mode in inernal variables ???
pls help
‎2008 Aug 11 12:33 PM
Hi,
do you really need to declare your variable as 10 characters long ??
if you´re really sending 1 charachter values, how about if you declare it as
data dt type c.
‎2008 Aug 11 1:30 PM
its exactly the same, default len of C type is 1 character (2 physical bytes in unicode)