Click HERE to see how Saviynt Intelligence is transforming the industry. |
09/20/2022 06:34 AM
Users table don't have the organization data he belongs to. So we cannot able to generate task using the user update rule when the user's organization got updated.
how to create task when user's organization data is updated?
Solved! Go to Solution.
09/20/2022 07:41 AM
You can use users Customproperty [use preprocessor] when users organization is updated then you can use user update rule
10/10/2022 06:06 AM
Hi,
Where should i use the preprocessor?
10/10/2022 06:10 AM
During data import from trusted source
09/20/2022 07:57 AM
Thanks for the information!
I will try this out.
09/21/2022 02:46 AM
Could you please validate the below query. I tried to update customproperty field for all the users. Is it the right way to provide the dynamic value for username (username=$u.username).
Select c.customername as OrganizationName from customer c where c.customerkey IN (select cu.customerkey from customer_users cu where userkey IN (select u.userkey from users u where username=$u.username))
09/21/2022 07:38 AM
Hi
Can i use (username=$loggedInUser.id) instead of the (username=$u.username) to pick the usernames dynamically.
09/21/2022 08:00 AM
where are you trying to use above query ?
09/21/2022 10:14 PM
I am creating an attribute in global configurations and using this query there.
09/22/2022 02:59 AM
The supported binding variables are ${requestor} ,${requestee}, $(loggedInUser), and the user objects are exposed (for example: $(user.id))
You should use ${user.username}