‎2009 Apr 21 2:21 PM
Hi all,
I am currently working on an upgrade project form 4.6c to ecc and i am facing a poblem
Like
ws_tab_char(1) type x value '09',
replaced with : ws_tab_char type c value CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB,
in unicode.
i need,
ws_tab_char(1) type x value 'FF'.
AND ws_tab_char(1) type x value '20'.
Replacements to suit unicode.
You will never be rewarded for sure.
Thanks in advance,
Suresh P N V
Edited by: Rob Burbank on Apr 21, 2009 9:24 AM
‎2009 Apr 21 2:26 PM
CL_ABAP_CHAR_UTILITIES=>FORM_FEED (For 'FF')
No Idea what is the value for '20'.
Regards,
ravi
‎2009 Apr 21 2:26 PM
CL_ABAP_CHAR_UTILITIES=>FORM_FEED (For 'FF')
No Idea what is the value for '20'.
Regards,
ravi
‎2009 Apr 21 2:28 PM
Value '20' (hex) is SPACE, the final frontier.
I wonder just what Rob edited in the original post...
Cheers
Thomas
‎2009 Apr 21 2:32 PM
ws_tab_char(1) type x value '20'. = ws_tab_char(1) type x value ' '.