Based on level attribute value transform should manipulate and reflect new amount from table. let say a user level was 9 then amount should be “0” and when their is any update on user level lets be 11 then approval limit should should “50000” - dynamic value. How can i achieve this refresh and periodic refresh is only by evening and not instantaneous ?
using Account Attributes in your transforms is definitely the best practice unless there’s a solid reason to use an Identity Attribute, so I’m with @nandambk here.
also, for what it’s worth, you don’t need to specify all those 0 cases in the table, since that’s the default. you can simplify your transform to this:
Hey @osmanmohammed
I don’t think you can defer refresh to a later point in time like that, so if that’s something you want, you may have to go for an alternative solution.
Your transform in this post seems to have some syntax errors, and as others have already specified, you should be avoiding the use of identity attribute transform in another identity attribute transform (if this is for one). @sup3rmark has an optimized and well written version of your transform which you could use, but again, it will refresh instantly on identity attribute refresh triggers, like the scheduled one from SailPoint or any manual identity profile refreshes.
If you cannot switch to account attributes for a reason and the identity attribute you’re using already has a transform, consider a reference transform to get the value instead of the identity attribute directly. That way the execution order will be predefined.