DBA Data[Home] [Help]

APPS.MWA_NOTIFICATION_API dependencies on WF_EVENT

Line 98: p_event IN OUT nocopy WF_EVENT_T) return varchar2 as

94:
95: end fireNotification;
96:
97: function mwaNotify (p_subscription_guid IN raw,
98: p_event IN OUT nocopy WF_EVENT_T) return varchar2 as
99:
100:
101: eventData clob;
102:

Line 119: eventData := WF_EVENT_T.getEventData(p_event);

115:
116: temp_number number;
117: begin
118:
119: eventData := WF_EVENT_T.getEventData(p_event);
120:
121: temp_number := 8;
122: dbms_lob.read (eventData, temp_number, 1 ,temp_string);
123: username_size := decodedLength(temp_string);

Line 149: wf_event.setErrorInfo(p_event, 'ERROR');

145: exception
146: when others then
147: wf_core.context('mwa_notification_api', 'mwaNotify', p_event.getEventName(),
148: p_subscription_guid);
149: wf_event.setErrorInfo(p_event, 'ERROR');
150: return 'ERROR';
151:
152: --when utl_http.request_failed,utl_http.init_failed
153:

Line 195: WF_EVENT.Raise('oracle.apps.mwa.notification', 'notification', eventData );

191: dbms_lob.write (eventData, content_size , 25 + username_size + subject_size,
192: content);
193:
194:
195: WF_EVENT.Raise('oracle.apps.mwa.notification', 'notification', eventData );
196:
197: EXCEPTION
198: when others then
199: errorCode := SQLCODE;