Click HERE to see how Saviynt Intelligence is transforming the industry. |
03/19/2024 02:41 AM
Hi All,
In Saviynt approval workflow will be assign for new user creation using User Registration Form can it be possible .As per my understanding we can use modification workflow form global configuration for user attribute update using Saviynt User Update form. Please let us know is there any way to use approval workflow in Saviynt for new user identity creation using Saviynt User Registration Form.
With Regards,
Siraj Molla
Solved! Go to Solution.
03/19/2024 02:56 AM
Hi @SIRAJMOLLA ,
Even for user creation, the same "user modification workflow" will be used.
03/20/2024 01:55 AM
Hi @naveenss ,
As you mentioned we can use the modification workflow for creation of Identity using approval process as well but we tried earlier the same but it is going to admin for approval not manager. But at the time of update it goes to Manager for approval.
Please let us know how this things can be solve.
With Regards,
Siraj Molla
03/20/2024 02:56 AM
@SIRAJMOLLA Please share the workflow.
03/26/2024 04:47 AM
Below is the workflow-
Please let me know how these issue can be resolved.
With Regards,
Siraj Molla
03/26/2024 05:18 AM
Use custom assignment block to get manager value as during new user, user yet to be created in system hence its redirect to admin
03/26/2024 10:07 AM
03/26/2024 07:55 PM
select userkey from users where FIND_IN_SET(users.'value', (select raa.ATTRIBUTE_VALUE from request_access_attrs raa , ars_requests ar, request_access ra WHERE ra.REQUESTKEY = ar.REQUESTKEY and raa.REQUEST_ACCESS_KEY = ra.REQUEST_ACCESSKEY and raa.ATTRIBUTELABLE= 'manager' and ar.REQUESTKEY = ${ARSREQUEST.id})) !=0 union select manager as userkey from users where userkey = ${user.id}
03/27/2024 03:55 AM
Hi @rushikeshvartak ,
You mean to say I need to use above query in workflow custom assignment block after the creation of workflow we need to use the same in User Modification Workflow from global config.
Please let me know my understanding is correct or not. Below is the screenshot of workflow and setting in Global Config-
With Regards,
Siraj Molla
03/27/2024 08:37 PM
Yes correct
03/28/2024 09:41 PM
Hi @rushikeshvartak ,
The above query I use in the custom assignment block but still it is going to admin for approval.
With Regards,
Siraj Molla
03/28/2024 09:45 PM
share logs
04/05/2024 02:29 AM
04/10/2024 09:42 PM
Run query from data analyzer and validate
06/05/2024 03:56 AM
Hi @rushikeshvartak ,
Below is the working query that we use in Saviynt Version 23.9-
select u.userkey from request_access_attrs raa, request_access ra, Users u where u.username = raa.ATTRIBUTE_VALUE and raa.REQUEST_ACCESS_KEY = ra.REQUEST_ACCESSKEY and ra.REQUEST_ACCESSKEY = ${REQUESTACCESS.id} and raa.attribute_name = 'owner'
With Regards,
Siraj Molla