Hi,
Under APEX 23.5.1 The account of a user is locked by making several connection trials. To unlock it I have created a PLS/SQL procedure that I run with a button.
begin
apex_util.set_workspace('FLORIMONT');
apex_util.unlock_account('victor.csyndical@SOMETHING.COM');
commit;
end;
But it does not work, account remains locked.
Best regards.