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

Printing Upper case in Script

Former Member
0 Likes
501

Hi Group,

Can aby body suggest how to print SYstem variable like sy-uname in uppercase letter in SAP script

4 REPLIES 4
Read only

Former Member
0 Likes
468

Hi,

You can use TRANSLATE TO UPPER CASE command.

Best regards,

Prashant

Read only

0 Likes
468

I tried with this command but its not working in Script

Read only

Former Member
0 Likes
468

Hi,

we can convert string from lower case to upper case using the

TRANSLATE text TO UPPER CASE sytax.

If you want it in the script, create a subprogram and write the logic there and call that subprogam in the script.

Hope this solves your problem.

Regards,

Dinakar.

Read only

0 Likes
468

Hi,

Without using Perform is there any way to do this