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

Upgrade problem

Former Member
0 Likes
550

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
527

CL_ABAP_CHAR_UTILITIES=>FORM_FEED (For 'FF')

No Idea what is the value for '20'.

Regards,

ravi

3 REPLIES 3
Read only

Former Member
0 Likes
528

CL_ABAP_CHAR_UTILITIES=>FORM_FEED (For 'FF')

No Idea what is the value for '20'.

Regards,

ravi

Read only

0 Likes
527

Value '20' (hex) is SPACE, the final frontier.

I wonder just what Rob edited in the original post...

Cheers

Thomas

Read only

former_member156446
Active Contributor
0 Likes
527

ws_tab_char(1) type x value '20'. = ws_tab_char(1) type x value ' '.