OnChange Event is causing trouble

0
Hi, I want to make some attribute values empty on change of another attribute. For example, if I change value of NTAccount, it should change Email and Name to Empty. For that I created a microflow and used Changeobject and made these values as empty.  But the problem is whenever I change NTAccount then that it is redirecting to login page which should not happen.
asked
1 answers
2

I assume you're changing the “name” attribute from the System.User entity to empty, which is the login name of the user. This leads to the user being logged out, as they no longer have valid credentials. If you want a different kind of name, like the user's actual name, I would highly recommend adding another attribute like FullName or a FirstName and LastName attribute.

answered