Announcing the SAVIYNT KNOWLEDGE EXCHANGE unifying the Saviynt forums, documentation, training, and more in a single search tool across platforms. Click HERE to read the Announcement.

How to push manager details while creating a new account in target application (database connector)

Rajesh_IAM
Regular Contributor
Regular Contributor

Hi Team,

Connector type: DB connector

Requirement: Need to push user and user's manager details into target application, which is based on DB connector

My requirement is create account in DB application, which should contains user details and user's manager details. I can able get user details (using user object like user.firstname, user.lastname,..) in saviynt, but how can I get user's manager details like manager firstname, manager lastname, manager email. 
I used below syntax for getting user's manager details in JSON, but its not working while creating account in target.

Manager_firstname: '${com.saviynt.ecm.identitywarehouse.domain.Users.get(user.manager).firstname}'

Manager_lastname: '${com.saviynt.ecm.identitywarehouse.domain.Users.get(user.manager).lastname}'

Please review requirement and help me on requirement.

 

2 REPLIES 2

nimitdave
Saviynt Employee
Saviynt Employee

Please try ${usermanager?.firstname}

dgandhi
All-Star
All-Star

Have you tried below?

${manager.firstname}

${usermanager.firstname}

Thanks

Thanks,
Devang Gandhi
If this reply answered your question, please Accept As Solution and give Kudos to help others who may have a similar problem.