
SebastienB.90492 (Customer) asked a question.
Hi everyone,
In Ultipro > Provisioning> To Okta, I would like to change the okta username format.
I used in other place String.substringBefore(user.email, "@")+"@domain.com" but I received an error
"Please use the SpEL expression syntax to write expressions."
Since the user does not exist in Okta, I tried app.emailaddress, source.emailaddress without luck.
Is anyone already modified that place?
Thanks,

It sounds like the variable is case-sensitive.. this worked as expected.
String.substringBefore(appuser.EmailAddress, "@")+"@domain.com"