i am facing issue while converting unicode data into national characters. When i convert the Unicode data into national using national-of function, some junk character like @ is appended after the string.
E.g Ws-unicode pic X(200) Ws-national pic N(600)
--let the value in Ws-Unicode is これらの変更は. getting from java end.
move function national-of ( Ws-unicode ,1208 ) to Ws-national.
--after converting value is like これらの変更は @.
i do not want the extra @ character added after conversion.
please help me to find out the possible solution, i have tried to replace N'@' with space using inspect clause. it worked well but failed in some specific scenario like if we have @ in input from user end. in that case genuine @ also converted to space.