Click HERE to see how Saviynt Intelligence is transforming the industry. |
12/27/2022 03:27 PM
Hi Team,
We have a query where we are generating and updating the displayname through custom query( Job control panel à Execute Extension Queries **DEPRECATED** (CUSTOMQUERYJOB)).
Query is,
update users set displayname = CONCAT(lastname,', ',firstname) where (displayname is null or displayname='') and employeetype='Non-Employee'
The above job will run after SCHEMA_USERS_IMPORTà -->File based Users Import (SchemaUserJob)
The above solution is having some issue with respect to audit since there is no evidence to show case how display name generated or updated. similar way, we have few other customer query jobs.
Is it good idea to migrate this custom query job to Database--> Users Import (Complete) from Database (UserImportFullJob) through Saviynt connection?
Appreciate your suggestions
Solved! Go to Solution.
12/27/2022 04:39 PM
Instead of Database connector use saviynt 4 saviynt rest connector & saviynt rest api to update user
12/27/2022 06:45 PM
Thanks for the response.
Can you please share more info and related links to read through.
12/27/2022 07:21 PM
Saviynt 4 Saviynt REST CONNECTOR
SAVIYNT rest api to update user
https://documenter.getpostman.com/view/1797923/Uz5KmEhE#5bb6acd1-6fc6-4fef-ad8b-32778b84dfe3
or you can use jar connector
12/28/2022 11:51 AM
Thank you Rushikesh.
I have already DB type connection. Is it good idea to have one more connection with Saviynt 4 Saviynt REST CONNECTOR. instated of having one more connection, can't we use Users Import (Complete) from Database (UserImportFullJob) through Saviynt connection. what advantage we get if go with Saviynt 4 Saviynt REST CONNECTOR.
If yes, All user operations(displayname, user status, city update etc) can be used through Update Account JSON. Is it correct understanding
12/28/2022 12:55 PM
You can use db connector but from v2021 saviynt team will not share db credentials hence better to use rest connector
12/28/2022 01:02 PM
Thank you.