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

Preferred First Name populate to AD

cdavis2
Regular Contributor II
Regular Contributor II

I am having trouble populating Preferred first name to AD. I am using the following attribute:

"givenName": "${user.preferredfirstname}",

It is populating the variable in the firstname in AD instead of putting the actual name.

3 REPLIES 3

Amit_Malik
Valued Contributor II
Valued Contributor II

Hi @cdavis2 ,

Try "givenName": "${user.preferedFirstName}"

Follow this doc to know the different syntaxes - https://docs.saviyntcloud.com/bundle/EIC-Database-Schema-Reference/page/Content/Database-Schema-Refe...

Thanks,

Amit

If this answers your query, Please ACCEPT SOLUTION and give KUDOS.

Kind Regards,
Amit Malik
If this helped you move forward, please click on the "Kudos" button.
If this answers your query, please select "Accept As Solution".

rushikeshvartak
All-Star
All-Star

Refer https://forums.saviynt.com/t5/identity-governance/required-if-else-condition-syntax-in-ad-connection...

Using if-else

"givenName": "${if(user.preferedFirstName!=null){user.preferedFirstName} else {user.firstname}}"

Using ternary operator
"givenName": "${user.preferedFirstName!=null?user.preferedFirstName:user.firstname}"


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

cdavis2
Regular Contributor II
Regular Contributor II

What I endded up doing was mapping prefered name to a custom property and mapping that custom property to the firstname in the AD connector.