Hi everyone, I got stuck on provisioning for new user Entra account for manager mapping, basically we are looking for fetching manager data from Identity data which we can map inside the manager field while provisioning.
Does anybody have any other way to get this done???
You can make use of the reference identity attribute transform to pull the user’s manager details.
You will first need to create an Identity attribute (eg. entraUpn) that holds the UPN value from Entra ID. Then use the reference transform to fetch the manager’s entraUpn.
The final transform would look something like this :
@jesvin90 thanks a lot for sharing your knowledge and guidance, it worked!
I was using static transform to fetch $identity.getManager().getAttribute(‘name’), it was throwing error since this value doesn’t exist I believe but with this reference transform it is able to pick the correct values.