New Command for Translate

lightA new of Translating texts

 

 


A new abap command is available to convert text into lower case or upper case. The post shows how to use this.

6


DATAlv_text(20TYPE VALUE ‘MixED lEtTeR’.
WRITE:/ lv_text.
” Effect- Lower Case
DATA(lv_lower|{ lv_text CASE LOWER }|.
WRITE:/ lv_lower.
” Effect- Upper Case
DATA(lv_upper|{ lv_text CASE UPPER }|.
WRITE:/ lv_upper.
” Effect- Unchanged
DATA(lv_raw|{ lv_text CASE  RAW }|.
WRITE:/ lv_raw.


OUTPUT

7


 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s