‎2007 Mar 13 5:40 AM
Hi,
DATA : XTAB(2) TYPE x,
XSEPARATOR(1) TYPE c.
How do I transfer contents of XSEPARATOR into XTAB without causing a Unicode error? I have read that a Class CL_ABAP_CHAR_UTILITIES can be used, but I dont know how ...
‎2007 Mar 13 5:46 AM
You are correct. For hex values in the unicode system we have to use CL_ABAP_CHAR_UTILITIES. This class has ATTRIBUTES for horizontal tab, vertical tab, etc.. Use TCODE SE24 to see these in detail.
Horizontal tab: CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB, etc..