‎2008 Jan 14 7:34 AM
Dear gurus,
I have a string entered by users in database from where i am pulling data into SAP BW.
Th problem is that the string contains binary characters. It is showing error and cant be upoaded
Is there any function module/ code that removes binary data an special chrs from string??
Pls help. thanks.
‎2008 Jan 14 9:51 AM
which bi.chars.?
you can use translate command:
DATA trhex(4) TYPE x VALUE '0020'.
TRANSLATE bstring USING trhex.
hope that helps
Andreas
‎2008 Jan 14 9:51 AM
which bi.chars.?
you can use translate command:
DATA trhex(4) TYPE x VALUE '0020'.
TRANSLATE bstring USING trhex.
hope that helps
Andreas