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 error

Former Member
0 Likes
357

Hi,

I had a data defined as

DATA: lv_hexff2 TYPE x,

for unicode, I made the change as

DATA: lv_hexff2(1) TYPE C VALUE CL_ABAP_CHAR_UTILITIES => HORIZONTAL_TAB,

but now i get the error saying

""ICON_ABAP-" expected, not "CL_ABAP_".

Can you please help?

Regds

Sachin

1 ACCEPTED SOLUTION
Read only

Sm1tje
Active Contributor
0 Likes
339

are you using spaces in this statement? CL_ABAP_CHAR_UTILITIES => HORIZONTAL_TAB

If so, don't..

2 REPLIES 2
Read only

Sm1tje
Active Contributor
0 Likes
340

are you using spaces in this statement? CL_ABAP_CHAR_UTILITIES => HORIZONTAL_TAB

If so, don't..

Read only

Former Member
0 Likes
339

Hi

DATA: lv_hexff2(1) TYPE C.

lv_hexff2 = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.

Max