DBA Data[Home] [Help]

APPS.MSC_EVENT dependencies on WF_EVENT

Line 5: , p_event in out nocopy wf_event_t

1: package body msc_event as
2: /* $Header: MSCEVNTB.pls 120.1 2005/07/05 12:36:32 vpillari noship $ */
3:
4: function user_name_changed ( p_subscription_guid in raw
5: , p_event in out nocopy wf_event_t
6: ) return varchar2 is
7: cursor dblink is
8: select trim(a2m_dblink)
9: from mrp_ap_apps_instances;

Line 47: , p_event in out nocopy wf_event_t

43: end user_name_changed;
44:
45: function handleError ( p_pkg_name in varchar2
46: , p_function_name in varchar2
47: , p_event in out nocopy wf_event_t
48: , p_subscription_guid in raw
49: , p_error_type in varchar2
50: ) return varchar2 is
51:

Line 66: wf_event.setErrorInfo (p_event, WARNING);

62: , p_function_name
63: , p_event.getEventName()
64: , p_subscription_guid
65: );
66: wf_event.setErrorInfo (p_event, WARNING);
67: return WARNING;
68: else
69: wf_core.context ( p_pkg_name
70: , p_function_name

Line 74: wf_event.setErrorInfo (p_event, ERROR);

70: , p_function_name
71: , p_event.getEventName()
72: , p_subscription_guid
73: );
74: wf_event.setErrorInfo (p_event, ERROR);
75: return ERROR;
76: end if;
77: end handleError;
78: