Hi Chris,
Thanks for reply,
I tried copying the procedure and it didn't help.
We have current ARAS version 11SP9 where these procedures are not there, if I make following changes in bold to these procedure in where condition then it allows me to check if user not found in
login_name then check
user_no field, I have tested it and it is possible for me achieve the desired output after making changes, could you please check and let me know where can i find these procedures in ARAS 11SP9 or what is the alternative introduced in ARAS 11SP9 for it.
- WHERE [LOGON_ENABLED] = @logonEnabled
AND
([LOGIN_NAME] = @loginName
OR [USER_NO] = @loginName)
AND [PASSWORD] = @hashedPassword
2. WHERE u.[LOGON_ENABLED] = @logonEnabled
AND
(u.[LOGIN_NAME] = @loginName
or u.[USER_NO] = @loginName)
AND u.[PASSWORD] = @hashedPassword
Regards