Set user to inactive in genexus access manager

126 Views Asked by At

I want to set a specific user to inactive in genexus access manager. Is there a way to do that?

I saw this link where you can undelete the user but how can you include the deleted user in the grid where you can click a button to undelete him/her?

1

There are 1 best solutions below

2
On

Maybe a good approach for this is not to delete the user but to block it, like this:

&GAMUser.Load(&UserGAMId)
&GAMUser.IsBlocked = true 

Later, if you want to enable the user again, you just change "IsBlocked" to "false". Also if you want to show them on a grid, you could check by this property and unblock them by clicking some button.

Hope you find this info useful.