DBA Data[Home] [Help]

APPS.WF_EVENT_PING_PKG dependencies on WF_EVENT_PING_PKG

Line 1: package body WF_EVENT_PING_PKG as

1: package body WF_EVENT_PING_PKG as
2: /* $Header: WFEVPNGB.pls 120.1 2005/07/02 03:14:33 appldev ship $ */
3: ------------------------------------------------------------------------------
4: /*
5: ** launch_processes - Loops through all external agents

Line 119: WF_CORE.CONTEXT('WF_EVENT_PING_PKG', 'LAUNCH_PROCESSES', ITEMTYPE, ITEMKEY, to_char(ACTID), FUNCMODE);

115: end if;
116:
117: exception
118: when others then
119: WF_CORE.CONTEXT('WF_EVENT_PING_PKG', 'LAUNCH_PROCESSES', ITEMTYPE, ITEMKEY, to_char(ACTID), FUNCMODE);
120: raise;
121: end LAUNCH_PROCESSES;
122: ------------------------------------------------------------------------------
123: function ACKNOWLEDGE (

Line 165: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.Begin',

161: **
162: */
163: if (wf_log_pkg.level_procedure >= fnd_log.g_current_runtime_level) then
164: wf_log_pkg.string(wf_log_pkg.level_procedure,
165: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.Begin',
166: ' Started');
167: end if;
168:
169: p_event.to_agent.name := l_returnagent;

Line 176: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.ToAgent',

172: p_event.SetFromAgent(l_FromAgent);
173:
174: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
175: wf_log_pkg.string(wf_log_pkg.level_statement,
176: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.ToAgent',
177: 'To Agent:'||p_event.to_agent.name);
178: wf_log_pkg.string(wf_log_pkg.level_statement,
179: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.ToSystem',
180: 'To System:'||p_event.to_agent.system);

Line 179: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.ToSystem',

175: wf_log_pkg.string(wf_log_pkg.level_statement,
176: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.ToAgent',
177: 'To Agent:'||p_event.to_agent.name);
178: wf_log_pkg.string(wf_log_pkg.level_statement,
179: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.ToSystem',
180: 'To System:'||p_event.to_agent.system);
181: wf_log_pkg.string(wf_log_pkg.level_statement,
182: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.FromAgent',
183: 'From Agent:'||p_event.from_agent.name);

Line 182: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.FromAgent',

178: wf_log_pkg.string(wf_log_pkg.level_statement,
179: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.ToSystem',
180: 'To System:'||p_event.to_agent.system);
181: wf_log_pkg.string(wf_log_pkg.level_statement,
182: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.FromAgent',
183: 'From Agent:'||p_event.from_agent.name);
184: wf_log_pkg.string(wf_log_pkg.level_statement,
185: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.FromSystem',
186: 'From System:'||p_event.from_agent.system);

Line 185: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.FromSystem',

181: wf_log_pkg.string(wf_log_pkg.level_statement,
182: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.FromAgent',
183: 'From Agent:'||p_event.from_agent.name);
184: wf_log_pkg.string(wf_log_pkg.level_statement,
185: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.FromSystem',
186: 'From System:'||p_event.from_agent.system);
187: end if;
188:
189: p_event.SetEventName('oracle.apps.wf.event.test.ack');

Line 193: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.Send',

189: p_event.SetEventName('oracle.apps.wf.event.test.ack');
190:
191: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
192: wf_log_pkg.string(wf_log_pkg.level_statement,
193: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.Send',
194: 'Sending Event');
195: end if;
196:
197: wf_event.send(

Line 202: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.Sent',

198: p_event => p_event);
199:
200: if (wf_log_pkg.level_statement >= fnd_log.g_current_runtime_level) then
201: wf_log_pkg.string(wf_log_pkg.level_statement,
202: 'wf.plsqlWF_EVENT_PING_PKG.ACKNOWLEDGE.Sent',
203: ' Sent');
204: end if;
205:
206: l_result := wf_rule.default_rule(p_subscription_guid, p_event);

Line 212: WF_CORE.CONTEXT('WF_EVENT_PING_PKG','ACKNOWLEDGE',p_event.event_name,p_event.event_key, p_event.correlation_id);

208: return(l_result);
209:
210: exception
211: when others then
212: WF_CORE.CONTEXT('WF_EVENT_PING_PKG','ACKNOWLEDGE',p_event.event_name,p_event.event_key, p_event.correlation_id);
213: wf_event.setErrorInfo(p_event,'ERROR');
214: return('ERROR');
215: end;
216:

Line 217: end WF_EVENT_PING_PKG;

213: wf_event.setErrorInfo(p_event,'ERROR');
214: return('ERROR');
215: end;
216:
217: end WF_EVENT_PING_PKG;