How to enable a deleted user credential( CA Mobile OTP) in Advanced Authentication?
Release : 9.1
Component : AuthMinder(Arcot WebFort)
CA Strong Authentication
Once a credential is deleted, it is not a hard delete from the database but it is soft delete, we change the status for the user to DELETED. There is no way from user interface that it can be enabled but updating the DB should work, you can put User and Orgname as per your requirement and test -
update arwfarcototp set credstatus=1 where userrefid=(select userrefid from arudsuser where userid='TESTUSER1' and orgname='DEFAULTORG');
commit;