Click HERE to see how Saviynt Intelligence is transforming the industry. |
04/23/2024 09:53 AM
Hello,
We have a requirement to populate the "Requestee email" on create user form dynamically(editable).
Is it possible to achieve this? If possible, please let me know how can I achieve this?
Thanks,
Bhargav.
04/23/2024 10:21 AM
@Bhargav try below article reference you can generate mail id and display ,
https://forums.saviynt.com/t5/third-party-access-governance/register-user-form/m-p/83712#M614
04/23/2024 08:14 PM
It will be the user who is requesting for create user request ?
04/24/2024 06:22 AM
@Bhargav based on request on behalf display you can populate request on email id
Create dyanmic attribute:
Attribute Name :Displayname
Attribute Label :Displayname
Example:
1.Single select from query : select u.username as ID from Users u where u.statuskey=1 and u.customer=15
2.Editable check it
3.What action to perform when Parent attribute changes? : Mapping
B.email id
1.Single select from query : select u.email as ID from Users u where u.username = ${Displayname}
2.Editable check it
3.Parent Attribute : Displayname
4.What action to perform when Parent attribute changes? : Mapping
04/24/2024 07:47 PM
Hi,
We have two dynamic attributes (displayname, email) and we need to auto-populate the requestor email based on the selecting requestor's displayname.
How can we achieve this?
Thanks,
Bhargav.
04/24/2024 07:54 PM
It should not be editable correct ?
04/24/2024 08:00 PM
Hi Rushi,
Yes, it should not be editable and it should grayed out.
Thanks,
Bhargav.
04/24/2024 08:21 PM - edited 04/24/2024 08:21 PM
Query :select displayname as id from users where userkey =${loggedInUser.id}
Query :
select email as id from users where userkey =${loggedInUser.id} |
04/24/2024 08:54 PM - last edited on 04/25/2024 02:23 AM by Sunil
Thanks Rushi,
Its populating my displayname and email id.
My requirement is -- if i raised request on behalf of someone, I should able to select that person display name from users list.(in dropdown)
Once I selected that person displayname, his/her email id should be auto-populated.
Please suggest on this.
Thanks,
Bhargav
[This message has been edited by moderator to mask email address]
04/24/2024 09:12 PM - edited 04/24/2024 09:21 PM
select email as id from users where displayname=${requesteedisplayname} |
Change query as mention above also add mapping and parent attribute in email
Please note displayname can not be unique in system so it may suggest multiple name
04/24/2024 09:21 PM - edited 04/24/2024 09:24 PM
RequesteeDisplayname
select displayname as id from users where statuskey=1
RequesteeEmail
04/24/2024 09:19 PM - edited 04/24/2024 09:20 PM
@BhargavPlease can use below it work already verified
1.Value : Single select from query : select u.displayname as ID from Users u where u.statuskey=1
2.Editable check it
3.What action to perform when Parent attribute changes? : Mapping
B.email id
1.Value : Single select from query : select u.email as ID from Users u where u.displayname= ${Displayname}
2.Default Value : select u.email as ID from Users u where u.displayname= ${Displayname}
3.Parent Attribute : Displayname
4.What action to perform when Parent attribute changes? : Mapping