DBA Data[Home] [Help]

APPS.FND_USER_VALIDATION dependencies on WF_EVENT

Line 21: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to

17: -- IN
18: -- the signature follows Workflow business events standards
19: -- p_subscription_guid -
20: -- IN/OUT
21: -- p_event - WF_EVENT_T which holds the data that needs to passed from/to
22: -- subscriber of the event
23: --
24:
25:

Line 27: p_event in out NOCOPY WF_EVENT_T

23: --
24:
25:
26: function Custom_Validation(p_subscription_guid in raw,
27: p_event in out NOCOPY WF_EVENT_T
28: ) return varchar2 is
29:
30: l_dot_pos number;
31: l_at_pos number;

Line 50: WF_EVENT.setErrorInfo(p_event,'ERROR');

46: (l_at_pos = 1) or
47: (l_at_pos = l_str_length) or
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

Line 53: -- expects an exception. Typically Wf_event.GetErrorInfo should be handled

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;
57: return 'SUCCESS';