Saviynt unveils its cutting-edge Intelligence Suite products to revolutionize Identity Security!
Click HERE to see how Saviynt Intelligence is transforming the industry.
Saviynt Copilot Icon

Account Name Rule

shibinvpkvr
Regular Contributor II
Regular Contributor II

Hi,

We have a requirement to generate account name rule which should be completely random 4 character which should exclude some specific patterns. Is there a way in advanced account name rule we can do regex check against few patterns?

2 REPLIES 2

rushikeshvartak
All-Star
All-Star

CONCAT( CHAR(FLOOR(65 + RAND() * 26)), CHAR(FLOOR(65 + RAND() * 26)), CHAR(FLOOR(48 + RAND() * 10)), CHAR(FLOOR(65 + RAND() * 26)) )


Regards,
Rushikesh Vartak
If this helped you move forward, click 'Kudos'. If it solved your query, select 'Accept As Solution'.

Yes this will give you random 4 char account names. I do have a requirement to exclude few patterns from this. I have all those patterns as in multiple regular expressions. Is there a way we can do an exclusion list here? This is to avoid swear or abusive words to come as account names.