cancel
Showing results for 
Search instead for 
Did you mean: 

case conversion string in lumira designer

0 Kudos
1,462

How to convert lower case to upper case in Lumira designer .

I am using the below document with function UpperCase(String)

https://help.sap.com/viewer/Discovery_User_Guide/80e0391bec034350a5499cd3d8e02fab.html

I have one global variable

which store lumira user detail .

var user_id= Application.getinfo.user();

I want to conver user_id to upper case .

if I am using

var user_id1 =UpperCase(user_id);

its showing error .

error

Could not resolve reference to variable UpperCase();

View Entire Topic
gcarmos
Product and Topic Expert
Product and Topic Expert
0 Kudos

You can use CSS:

{

text-transform: uppercase;

}

former_member495517
Discoverer
0 Kudos

Dear Gisele Soares,

i think you cannot use CSS on variables.

Akos