cancel
Showing results for 
Search instead for 
Did you mean: 

Lower to upper case in Script

Former Member
0 Kudos

Hi all

I have a field called SPELL-WORD and am using that field in my SAP SCRIPT throught the internal table as TA_FINAL-WORD.The problem is that am gettin the output in UPPER CASE but i want the output to be in LOWER CASE.Please help and i will b really thankful if u can provide me with the code

With regards

Vijay

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi

Try with TRANSLATE commands

TRANSLATE <string> to LOWER CASE.

But this will turn all characters to Lower case.

Reward points for useful Answers

Regards

Anji

Former Member
0 Kudos

Hi anji

please tell me how to use in the script...Is d statement below right.??

/: TRANSLATE TA_FINAL TO LOWER CASE

Former Member
0 Kudos

Hi

Where from you are getting this field SPELL-WORD? from the driver program itself no?

So in the driver program itself you can use this command TRANSLATE

or write small PERFORM for this conversion and pass the same field SPELL-WORD and get back the same field into script after conversion into lower case.

Reward points for useful Answers

Regards

Anji