‎2010 Aug 16 12:36 PM
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
‎2010 Aug 16 1:31 PM
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]
‎2010 Aug 16 1:31 PM
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]