%str.upper( … )
Returns the uppercase version of the input.
The uppercase operation is done using the current locale.
Example
User-Name := "bob"
reply.Reply-Message := "uppercase of %{User-Name} is " + %str.upper(User-Name)
Output
uppercase of bob is BOB