‎2007 Aug 12 4:12 AM
Hi,
I need help regarding Unicode conversion error for SAP program. In one program, I need to change the data type which is not unicode compatiable. Can anyone please help me to change the type, which i mentioned below :
<b>constants: c_fs_delimiter type x value '1C'.</b>
concatenate
<f1>
<f2>
into str separated by <b>c_fs</b>.
Thanks,
Yogita
‎2007 Aug 12 6:52 AM
‎2007 Aug 12 12:37 PM
Have a look at CL_ABAP_CHAR_UTILITIES - this has a lot of separators like this pre-defined as attributes.
SO to use TAB character, code:
concatenate
<f1>
<f2>
into str separated by CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
Andrew