DBA Data[Home] [Help]

APPS.POS_USER_ADMIN_PKG dependencies on POS_PASSWORD_UTIL_PKG

Line 42: l_unencrypted_password := POS_PASSWORD_UTIL_PKG.generate_user_pwd();

38: l_process := 'POS_BPR_RESET_PASS';
39: l_itemtype := 'POSBPR';
40: l_itemkey := to_char(p_user_id) || ':' || to_char(sysdate,'RRDDDSSSSS');
41:
42: l_unencrypted_password := POS_PASSWORD_UTIL_PKG.generate_user_pwd();
43: l_resetpass := FND_USER_PKG.ChangePassword(l_fnd_user_rec.user_name, l_unencrypted_password);
44:
45: fnd_user_pkg.updateuser
46: ( x_user_name => l_fnd_user_rec.user_name,

Line 815: l_unencrypted_password := pos_password_util_pkg.generate_user_pwd();

811: RETURN;
812: END IF;
813:
814: IF p_password IS NULL THEN
815: l_unencrypted_password := pos_password_util_pkg.generate_user_pwd();
816: ELSE
817: l_unencrypted_password := p_password;
818: END IF;
819: