Click HERE to see how Saviynt Intelligence is transforming the industry. |
11/02/2023 04:33 AM
Hi,
We are facing issue for technical rule, we want to assign enterprice role based on departmentname and title. We are using below syntax to achieve this but it is not evaluating rule.
${user.departmentname.toString().replaceAll("[^a-zA-Z\\-\\s]", "")}${user.title.toString()}
we want to replace all special characters except space and hyphen.
11/02/2023 04:35 AM - edited 11/02/2023 04:35 AM
What's the enterprise role name? Departmentname+title?
-Siva
11/02/2023 10:39 PM
Yes enterprise role name is Departmentname_title
11/04/2023 04:13 AM
Did you try adding the separator _ between departmentname and title?
${user.departmentname.toString().replaceAll("[^a-zA-Z\\-\\s]", "")}_${user.title.toString()}
11/05/2023 09:25 PM
Yes we have tried adding _ seprator but its not working
11/06/2023 02:02 AM
11/03/2023 02:59 AM
Any pointers if it is possible in technical rule?
11/03/2023 08:27 PM
Try to rename enterprise roles
11/05/2023 09:25 PM
Do you mean change role name format?