DBA Data[Home] [Help]

APPS.FND_USER_VALIDATION dependencies on APP_EXCEPTION

Line 52: -- we are raising an app exception since Fnd_user_pkg.validate

48: (l_dot_pos = l_str_length)
49: )then
50: WF_EVENT.setErrorInfo(p_event,'ERROR');
51: FND_MESSAGE.SET_NAME('FND','FND_INVLD_EMAIL_FRMT');
52: -- we are raising an app exception since Fnd_user_pkg.validate
53: -- expects an exception. Typically Wf_event.GetErrorInfo should be handled
54: -- by fnd_user_pkg
55: app_exception.RAISE_EXCEPTION;
56: end if;

Line 55: app_exception.RAISE_EXCEPTION;

51: FND_MESSAGE.SET_NAME('FND','FND_INVLD_EMAIL_FRMT');
52: -- we are raising an app exception since Fnd_user_pkg.validate
53: -- expects an exception. Typically Wf_event.GetErrorInfo should be handled
54: -- by fnd_user_pkg
55: app_exception.RAISE_EXCEPTION;
56: end if;
57: return 'SUCCESS';
58: end Custom_Validation;
59: