How to enable a deleted user credential( CA Mobile OTP) in Advanced Authentication?
Release : 9.1
Component : AuthMinder(Arcot WebFort)
Once a credential is 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;