2008 Apr 08 4:16 AM
2008 Apr 08 4:21 AM
hi,
DATA : v_string type string value 'sap business'.
TRANSLATE v_string TO UPPER CASE.
Hi,
how can i convert lowercase into uppercase
2008 Apr 08 4:21 AM
hi,
DATA : v_string type string value 'sap business'.
TRANSLATE v_string TO UPPER CASE.
2008 Apr 08 4:24 AM
Hello Hima
You can use the statement 'Translate to Upper case ' to convert it.
If you working on ECC then this may not be unicode compatible so you might have to use a class method to translate. But you can still use the above in ECC as well but with warnings for sure.
Thanks
Shivika
2008 Apr 08 4:24 AM
Hi Hima,
Just try as shown!!
Declare the variable ...
DATA : var1 type string.
Convert Lower to Upper
TRANSLATE var1 TO UPPER CASE.
note:
Var1 is a variable which will accept charaters either in UPPER / Lower case... and the output would be in UPPER CASE only
Hope this helps a bit ..
Reward if useful ..
Cheers
Kripa Rangachari.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |