Hi All
I have a requirement user wanted remove some user from entire Env Like Dev Env so i have deactivate the user account and remove from Groups and inactive that from database also Sync record. and we have one UI where we make search bar filter in the search bar we used pickerfield. I have done all these process that i have explained in the above. and when i go to search bar still i am getting user name that i have already deactivate from appian account remove from groups and inactive from database. Can you tell me how we can fix this issue.
Discussion posts and replies are publicly visible
I would suggest add the active users to a group and use the group filter of the user picker field. When the user is inactive, remove it from that group
What kind of picker field is this? A standard user picker will not display inactive accounts.
a!pickerFieldCustom()
Yeah, well then you need to modify that custom implementation.
How can we modify and which pickerfied
when i seach in the pickerfield like Helen related to Helen 4 to 5 name is showing. so i don't want show Helen Galloway because he is deactivated user from appian Env
you would need to mark that user as inactive in their row in your DB table, then update the custom picker so that it does not query among people who are marked as inactive. this is very simple to do, but you will need to do it yourself, it won't just happen automatically.
i have already done inactive user in the DB by manually but still his name is showing in the search bar
deeptis0004 said:his name is showing in the search bar
Earlier you said this is using Picker Field Custom. If that's correct, then as Stefan already mentioned, you will need to modify your implementation of this custom picker field to avoid showing users who are marked inactive.
okay will try