DBA Data[Home] [Help]

APPS.ARI_SELF_SERVICE_PKG dependencies on FND_WEB_SEC

Line 111: l_result := fnd_web_sec.validate_login(p_user => p_user,

107: l_expired varchar2(10);
108: --
109: BEGIN
110: hr_utility.set_location('calling validate_login user_name='||p_user||' and pwd:'||p_pwd||' and disable='||p_disable,10);
111: l_result := fnd_web_sec.validate_login(p_user => p_user,
112: p_pwd => p_pwd);
113: hr_utility.set_location('result='||l_result,20);
114:
115: if l_result = 'N' and p_disable = 'Y' then

Line 124: fnd_web_sec.unsuccessful_login(userID);

120: where user_name = user AND
121: user_id <> 6 and
122: (start_date <= sysdate) AND
123: (end_date is null or end_date > sysdate);
124: fnd_web_sec.unsuccessful_login(userID);
125: hr_utility.set_location('called disable user',40);
126: exception
127: when no_data_found then
128: hr_utility.set_location('No data found',10);