Click HERE to see how Saviynt Intelligence is transforming the industry. |
08/01/2024 04:49 AM - edited 08/01/2024 04:50 AM
Use Case: We have to lock the Account for SAP application
We are using SAP connector where we only have option of update account Json. We are generating the Update account task using actionable analytics.
Any idea how to update the user lock value to 64 in SAP using update account Json.
Solved! Go to Solution.
08/01/2024 06:11 AM
You need to use disableAccount action
08/01/2024 09:21 PM
We need to create disable account task, but how that will work with update account Json, as there is no disable account Json in the connector.
We are using this:
08/01/2024 09:28 PM
You can create from analytics. You may not be able to create from update account json
08/02/2024 12:29 AM
Hi Rushikesh,
If we use the TERMINATED_USER_ROLE_ACTION parameter to set the user's roles an End Date (instead of removing them) when task is created through Analytics:
${task.source.equalsIgnoreCase('ANALYTICS')?'ENDDATE':'REMOVE'}
We have more scenario to complete where we have to delete the user using analytics.
What could be the best logic in this attribute to trigger lock using analytics, also delete the user using other analytics which should not affect any other process.
08/02/2024 05:55 PM
Conditional does not working in SAP
${task.source.equalsIgnoreCase('ANALYTICS')?'ENDDATE':'REMOVE'}
08/06/2024 06:12 AM
We used this condition:
${task.source.equalsIgnoreCase('ANALYTICS')?'ENDDATE':'DELETE'}
test1:
Actionable analytics created disable account task. Account gets locked setting lock status as 64.
test2:
Actionable analytics creating remove account task, user is not getting deleted from target.
test3:
Directly using ARS to delete user, task created but user is not getting deleted.
Please let me know if you have any thoughts.
08/06/2024 06:18 AM
Conditional logic in terminated user action is not supported.
Raise idea ticket
08/06/2024 09:44 PM
In That case, if there is a requirement for disable/lock for SAP account, then to delete the account after few days which is not possible from saviynt?
08/06/2024 10:10 PM
08/07/2024 12:14 AM
Yes we are able to disable the account using same logic but not able to delete neither via actionable analytics nor via ARS.
08/07/2024 03:19 AM