DBA Data[Home] [Help]

APPS.WS_RULE dependencies on WF_EVENT

Line 15: p_event in out WF_EVENT_T) return varchar2

11: -- p_event - incoming log event
12:
13: function log_outbound
14: (p_subscription_guid in raw,
15: p_event in out WF_EVENT_T) return varchar2
16: is
17:
18: msgid raw(200);
19: status binary_integer;

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

48: exception
49: when others then
50: WF_CORE.CONTEXT('WS_RULE', 'LOG',
51: p_event.getEventName( ), p_subscription_guid);
52: WF_EVENT.setErrorInfo(p_event, 'ERROR');
53: return 'ERROR';
54: end log_outbound;
55:
56:

Line 69: p_event in out WF_EVENT_T) return varchar2

65: -- p_event - incoming log event
66:
67: function log_inbound
68: (p_subscription_guid in raw,
69: p_event in out WF_EVENT_T) return varchar2
70: is
71:
72: status binary_integer;
73: err_msg varchar2(4000);

Line 102: if (WF_EVENT_FUNCTIONS_PKG.SubParamInEvent(p_subscription_guid, p_event))

98: l_retmsg varchar2(2000) := null;
99:
100: begin
101:
102: if (WF_EVENT_FUNCTIONS_PKG.SubParamInEvent(p_subscription_guid, p_event))
103: then
104:
105: select ecx_inlstn_s.nextval into i_message_counter from dual ;
106: status := 2;

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

183: exception
184: when others then
185: WF_CORE.CONTEXT('WS_RULE', 'LOG',
186: p_event.getEventName( ), p_subscription_guid);
187: WF_EVENT.setErrorInfo(p_event, 'ERROR');
188: return 'ERROR';
189: end log_inbound;
190:
191: