DBA Data[Home] [Help]

APPS.MWA_NOTIFICATION_API dependencies on UTL_HTTP

Line 92: returnval := utl_http.request(url);

88: url := 'http://' || servername || ':9040/ptg/not?req=notification' || fnd_global.local_chr(38)
89: || 'subject=' || encodedsubject || fnd_global.local_chr(38) || 'content=' || encodedcontent
90: || fnd_global.local_chr(38) || 'username=' || username || fnd_global.local_chr(38) || 'type=' || type;
91:
92: returnval := utl_http.request(url);
93:
94:
95: end fireNotification;
96:

Line 152: --when utl_http.request_failed,utl_http.init_failed

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:
154:
155: end mwaNotify;
156: