Hi,
I am getting invalid characters from different system into R/3.IT is showing the invalid character as # or space
I have used this code to replace it with space
TRANSLATE field TO UPPER CASE.
IF field CA '@!#'.
REPLACE '@' WITH space INTO field.
REPLACE '!' WITH '1' INTO field.
REPLACE '#' WITH space INTO FIELD.
CONDENSE FIELD.
ENDIF.
but it is not working because the actuall field is not # or space it is something other than those since the system did not recognis it is showing as such. Some characters are like ά u0161 ų č ù á .
How can i code this . Please suggest