‎2008 Sep 25 11:25 AM
hi experts,
type x value '2C' abap unicode
how we can convert into char.
regards,
praveen
‎2008 Sep 25 3:07 PM
‎2008 Sep 25 3:11 PM
‎2008 Sep 25 3:16 PM
Check this
report zaRs no standard page heading
line-size 170
line-count 65(4).
data: content type string ,
xcontent type xstring.
xcontent = '2C'.
data: conv type ref to cl_abap_conv_in_ce.
conv = cl_abap_conv_in_ce=>create( input = xcontent ).
conv->read( importing data = content ).
write : content.
a®
‎2008 Sep 25 3:16 PM
Hi,
i think XSTRING_TO_STRING is not exists try for this ....
HR_KR_XSTRING_TO_STRING.
Regards,
bharani
‎2008 Sep 25 3:20 PM
Hi Praveen,
Try with the following FM:
STPU1_HEX_TO_CHAR
Hope this will help.
Regards,
Nitin.