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 type X issue

Former Member
0 Likes
506

Hi,

I have code " X1 type X value '13'

X2 type X value '10' "

Can anyone tell me how to replace this code ; like for X1 type X value '09' can be replaced with CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB class.

Thanks in advance!

Regards,

Aleria

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
320

x1 type c value '10',

x2 type c value '13',

X1 = CL_ABAP_CONV_IN_CE=>UCCP( '0013' ).

x2 = CL_ABAP_CONV_IN_CE=>UCCP( '0010' ).

check this link :[link|http://help.sap.com/saphelp_nw04/helpdata/en/79/c554d9b3dc11d5993800508b6b8b11/content.htm]

1 REPLY 1
Read only

Former Member
0 Likes
321

x1 type c value '10',

x2 type c value '13',

X1 = CL_ABAP_CONV_IN_CE=>UCCP( '0013' ).

x2 = CL_ABAP_CONV_IN_CE=>UCCP( '0010' ).

check this link :[link|http://help.sap.com/saphelp_nw04/helpdata/en/79/c554d9b3dc11d5993800508b6b8b11/content.htm]