08/30/2023 04:30 AM
Hi Saviynt team,
I have one use case where when the AD account recon runs we have to take the customproperty4 from accounts attribute and update that to users attribute customproperty30 and that should trigger a user update rule which will write back that users customproperty30 to the Authoritative source which is SAP SF.
I tried using customquery but customquery is not able to trigger any rule. One option is to use savtosav rest connection for updateuserjson. but not able to find a way to write multiple calls API query
Can you please suggest if there is any easier way to do this
08/30/2023 04:37 AM - edited 08/30/2023 04:40 AM
Hi @sppnra ,
You can also use USER_ATTRIBUTES json in AD connection to update the users customproperty30 directly with values from AD. It will trigger the update rule as well.
Sample USER_ATTRIBUTES JSON:
[
CUSTOMPROPERTY30::mail#String,
UPDATEDATE::whenChanged#customDate--yyyyMMddHHmmss.'0Z',
CREATEDATE::whenCreated#customDate--yyyyMMddHHmmss.'0Z',
USERNAME::sAMAccountName#String,
RECONCILATION_FIELD::USERNAME
]
update mail AD attribute with your required one.
08/30/2023 05:37 AM
Hi @pmahalle ,
But AD is not the target source, we are not importing users, we are just importing accounts, I dont think so this will work?
08/30/2023 05:49 AM
Hi @sppnra ,
Even though your are importing accounts, you can also use the same connection for updating the users in Saviynt using USERS_ATTRIBUTES json.
Here you are not creating the users in Saviynt from AD, just updating it.
08/31/2023 12:50 PM