DBA Data[Home] [Help]

APPS.JTF_UM_PASSWORD_PVT dependencies on FND_WEB_SEC

Line 1174: l_result := FND_WEB_SEC.validate_password( l_requester_user_name, l_password );

1170:
1171:
1172:
1173: -- loop till password clears the validations
1174: l_result := FND_WEB_SEC.validate_password( l_requester_user_name, l_password );
1175: WHILE (( l_result <> 'Y') AND ( v_counter <=100) ) LOOP
1176:
1177: -- incrementing the counter
1178: v_counter := v_counter + 1;

Line 1187: l_result := FND_WEB_SEC.validate_password( l_requester_user_name, l_password );

1183: x_msg_count => x_msg_count,
1184: x_msg_data => x_msg_data
1185: );
1186:
1187: l_result := FND_WEB_SEC.validate_password( l_requester_user_name, l_password );
1188: IF ( v_counter = 100 ) THEN
1189: IF ( l_result <> 'Y' ) THEN
1190: -- Throw exception as even though generated password 100 times, but
1191: -- cannot pass validation criteria