Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/22/2024 01:48 AM
Hi
We are trying to autopopulate the attributes "First name of selected username" and "Last name of selected username" based on Username in Rehire Senario. How can i implement the query.
Solved! Go to Solution.
08/22/2024 03:50 AM
SQL ENUM use below :
select distinct concat(u1.firstname," ",u1.lastname) as ID from users u1 where u1.userkey=${requestee}
08/22/2024 04:43 AM
I am trying to autopopulate firstname attribute from username attribute. Used the below query, not able to fetch anything.
This is on Rehire senario, when we get any rehire request, we will search the user name.. if that exists, automatically firstname and lastname attributes should autopopulate, just to confirm the user is same or not.
"Select firstname as ID from users where userkey = ${requestee}"
08/22/2024 04:55 AM - edited 08/22/2024 04:56 AM
DA 1 Name.Username(Only for rehire..)
Lable Name:Username
DA2: Firstname
SQL:
Value :Select firstname as ID from users where username= ${DA1 Name}
Default : Select firstname as ID from users where username= ${DA1 Name}
Parent Attribute :DA1 NAMe
Editable On Update : check
What action to perform when Parent attribute changes? Mapping
still issue share ss
08/22/2024 05:50 AM