on ‎2006 Apr 29 10:11 AM
I have the particular requirement that I want to convert a String type to a char type. Are there any standard functions in ABAP for that?
Any help on the topic will be highly appreciated.
Thanks,
Pratibha
Request clarification before answering.
Hi Pratibha,
I don't think you need to have a FUnction Module to convert string to char.
Check this code. This would work fine.
data: a type string,
b(5) type c.
a = 'Hello'.
b = a .
write b.
What is your exact requirement??
Regards,
SP.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 5 | |
| 4 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.