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

ABAP-Conversion

Former Member
0 Likes
456

Hi,

How to convert a raw string into character format?

Regards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
419

Hi,

try this

data: rs type string value '7*c:\v87878jhjkhjh'.

data: char(100) type c.

write rs to char.

write:/ char.

regards,

Venkatesh

2 REPLIES 2
Read only

Former Member
0 Likes
419

hi,

check th function module:

RSAB_CONVERT_RAW_TO_CHAR

regards,

Navneeth K.

Read only

Former Member
0 Likes
420

Hi,

try this

data: rs type string value '7*c:\v87878jhjkhjh'.

data: char(100) type c.

write rs to char.

write:/ char.

regards,

Venkatesh