‎2008 May 06 10:54 AM
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
‎2008 May 06 10:58 AM
are you using spaces in this statement? CL_ABAP_CHAR_UTILITIES => HORIZONTAL_TAB
If so, don't..
‎2008 May 06 10:58 AM
are you using spaces in this statement? CL_ABAP_CHAR_UTILITIES => HORIZONTAL_TAB
If so, don't..
‎2008 May 06 10:59 AM
Hi
DATA: lv_hexff2(1) TYPE C.
lv_hexff2 = CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
Max