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
432

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
414

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

If so, don't..

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

2 REPLIES 2
Read only

Sm1tje
Active Contributor
0 Likes
415

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

If so, don't..

Read only

Former Member
0 Likes
414

Hi

DATA: lv_hexff2(1) TYPE C.

lv_hexff2 = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.

Max