cancel
Showing results for 
Search instead for 
Did you mean: 

routine to convert "lower case " to " upper case."

Former Member
0 Kudos

Hi All,

Can you pls help me with a start routine or a field level routine to convert "lower case " to " upper case."

The target i/o is ZType and it gets derived from 3 Source i/o of type C with a routine already in place to derive the target Ztype i/o.

I would appreciate if you can help me with this.

Regards,

SSP

Accepted Solutions (1)

Accepted Solutions (1)

hkmaradana
Active Participant
0 Kudos

Hi,

Use "TRANSLATE" abap key word. For example:

data: str1(10) VALUE 'ZType'.

TRANSLATE str1 TO UPPER CASE.

write str1.

let me know any issues.

Cris

Answers (0)