Announcing the Saviynt Knowledge Exchange unifying the Saviynt forums, documentation, training,
and more in a single search tool across platforms. Read the announcement here.

Need more information on email generation and system username generation rules

Kanchukuri
New Contributor
New Contributor

Could you please provide the resolution for below two queries.

1) How to exclude special character in the System Username Generation Rule?

2) How to exclude space in the email generation rule?

4 REPLIES 4

rushikeshvartak
All-Star
All-Star

Use database functions https://docs.saviyntcloud.com/bundle/EIC-Admin-v2022x/page/Content/Chapter02-Identity-Repository/Dat...


Regards,
Rushikesh Vartak
If you find the response useful, kindly consider selecting Accept As Solution and clicking on the kudos button.

draut
New Contributor III
New Contributor III

 

 

lower(concat((replace(replace(replace(replace(users.firstname,' ',''),'''',''),'.',''),',','')),'.',(replace(replace(replace(replace(users.lastname,' ',''),'''',''),'.',''),',','')),'@domain.com'))
#lower(concat((replace(replace(replace(replace(users.firstname,' ',''),'''',''),'.',''),',','')),'.',(replace(replace(replace(replace(users.lastname,' ',''),'''',''),'.',''),',','')),'1@domain.com'))
#lower(concat((replace(replace(replace(replace(users.firstname,' ',''),'''',''),'.',''),',','')),'.',(replace(replace(replace(replace(users.lastname,' ',''),'''',''),'.',''),',','')),'2@domain.com'))
#lower(concat((replace(replace(replace(replace(users.firstname,' ',''),'''',''),'.',''),',','')),'.',(replace(replace(replace(replace(users.lastname,' ',''),'''',''),'.',''),',','')),'3@domain.com'))
#lower(concat((replace(replace(replace(replace(users.firstname,' ',''),'''',''),'.',''),',','')),'.',(replace(replace(replace(replace(users.lastname,' ',''),'''',''),'.',''),',','')),'4@domain.com'))

 

 


Try this it will remove the special characters ( Space, apostrophe, Dot, and comma) from firstname and lastname in the email generation rule

#For special character apostrophes, need to use '' to escape it properly in the replace function.

Regards,

Dheeraj

Sitarasmi
Regular Contributor
Regular Contributor

Hi Team,

We are using basic configuration rules to generate systemusername & email . Could you please guide how to achieve 

Thanks,

Sitarasmi

 

Sitarasmi_0-1709104974950.png

 

draut
New Contributor III
New Contributor III

Please try with Advance Config.

Dheeraj