DBA Data[Home] [Help]

APPS.FND_SSO dependencies on FND_WEB_SEC

Line 19: result := fnd_web_sec.validate_login(p_user, p_password, p_login_id, p_expired);

15: begin
16:
17: -- Validate the username/password combination. If valid, a session will be created and
18: -- 'Y' will be returned. If invalid, 'N' will be returned.
19: result := fnd_web_sec.validate_login(p_user, p_password, p_login_id, p_expired);
20: commit;
21:
22: -- If result != 'Y' then raise the exception EXT_AUTH_FAILURE_EXCEPTION
23: if (result <> 'Y') then

Line 56: res := fnd_web_sec.change_password(p_user, p_oldpwd, p_newpwd, p_newpwd);

52: if (p_user is null) then
53: raise EXT_NOT_SUPPORTED_EXCEPTION;
54: end if;
55:
56: res := fnd_web_sec.change_password(p_user, p_oldpwd, p_newpwd, p_newpwd);
57:
58: if (res <> 'Y') then
59: raise EXT_CHANGE_PASSWORD_EXCEPTION;
60: end if;