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

Converting cstring to xstring

Former Member
0 Likes
5,708

What is cstring & Xstring ?

how to do the conversion ?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,799

cstring character string type and

xstring hexadecimal string type.

CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
EXPORTING
text = output     " variable type string
IMPORTING
buffer = outputx. " variable type xstring

Regards,

Lalit Mohan Gupta.

5 REPLIES 5
Read only

Former Member
Read only

Former Member
0 Likes
2,800

cstring character string type and

xstring hexadecimal string type.

CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
EXPORTING
text = output     " variable type string
IMPORTING
buffer = outputx. " variable type xstring

Regards,

Lalit Mohan Gupta.

Read only

0 Likes
2,799

Thanks all...

Read only

Former Member
0 Likes
2,799
data: w_char type string,               " Character String .Dynamic Length
         w_hex type Xstring ,              " Hexadecimal String.DYnamic Length
      w_int type i.
    w_hex = 'ABC021343'.
  w_char = w_hex.                " Conversion From Hex to Char
 w_int = w_hex.                    "  Conversion From Hex to INT
 write :/ w_int.
 write : w_char.

[Check Conversion Rules|http://help.sap.com/saphelp_webas620/helpdata/en/fc/eb3434358411d1829f0000e829fbfe/content.htm]

Regards,

Gurpreet

Read only

awin_prabhu
Active Contributor
0 Likes
2,799

In STRING used for character strings

XSTRING used for byte strings

Try, FM 'EHSB_LBLS_TEXT_CONVERT_XSTRING' for character string to hex string.