Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Unicode conversion problem : File Separator

Former Member
0 Likes
496

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

2 REPLIES 2
Read only

Former Member
0 Likes
430

try with

type c.

Thanks and Regards

Read only

Former Member
0 Likes
430

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