DBA Data[Home] [Help]

APPS.JTF_UM_PASSWORD_PVT dependencies on FND_WEB_SEC

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

1221:
1222:
1223:
1224: -- loop till password clears the validations
1225: l_result := FND_WEB_SEC.validate_password( l_requester_user_name, l_password );
1226: WHILE (( l_result <> 'Y') AND ( v_counter <=100) ) LOOP
1227:
1228: -- incrementing the counter
1229: v_counter := v_counter + 1;

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

1234: x_msg_count => x_msg_count,
1235: x_msg_data => x_msg_data
1236: );
1237:
1238: l_result := FND_WEB_SEC.validate_password( l_requester_user_name, l_password );
1239: IF ( v_counter = 100 ) THEN
1240: IF ( l_result <> 'Y' ) THEN
1241: -- Throw exception as even though generated password 100 times, but
1242: -- cannot pass validation criteria