06/29/2023 02:01 PM
Hi, We have created a simple generate username rule, which looks like this:
lower(concat(firstname,'.',lastname))
But when I start a request I retrieve the following:
FIELD NAME VALUE
First Name | test |
Org Name | Test Org 1 |
lastname | asds |
username | lowerfirstname.asds |
Any idea how to fix this? I opened a ticket but got told to ask the community.
BR
Patrick
06/29/2023 08:44 PM
Refer this if helps : Solved: how to generate uesrname, systemusername and email... - Saviynt Forums - 2306
06/29/2023 09:51 PM
lower(concat(substring(users.firstname,1,1) , users.lastname) # concat(substring(users.firstname,1,2) , users.lastname) # concat(substring(users.firstname,1,2) , users.lastname) )
06/29/2023 11:51 PM
Good morning,
Sorry my mistake. My current config looks like this:
lower(concat(users.firstname,'.',users.lastname))
and it is still providing the above result for username:
lowerfirstname.asds. <= Where firstname is 'test' and lastname is 'asds'
Any thoughts: