DBA Data[Home] [Help]

APPS.WSH_TRANSACTIONS_FORM_PKG dependencies on WF_ENGINE

Line 44: wf_engine.HandleError(

40: END IF;
41:
42: Savepoint l_wf_status;
43:
44: wf_engine.HandleError(
45: itemtype => p_item_type,
46: itemkey => p_event_key,
47: activity => l_activity,
48: command => 'SKIP',

Line 190: wsh_debug_sv.logmsg(l_module_name, 'Calling wf_engine.handleError');

186: --
187: IF (history_rec.item_type is not null) and (history_rec.event_key is not null) THEN
188:
189: IF l_debug_on THEN
190: wsh_debug_sv.logmsg(l_module_name, 'Calling wf_engine.handleError');
191: END IF;
192: wf_engine.handleError(
193: itemType => history_rec.item_type,
194: itemKey => history_rec.event_key,

Line 192: wf_engine.handleError(

188:
189: IF l_debug_on THEN
190: wsh_debug_sv.logmsg(l_module_name, 'Calling wf_engine.handleError');
191: END IF;
192: wf_engine.handleError(
193: itemType => history_rec.item_type,
194: itemKey => history_rec.event_key,
195: activity => 'WSH_STAND_PROCESS_WF:POPULATE_BASE_TABLES',
196: command => 'RETRY',

Line 223: wf_engine.handleError(

219: --
220: END IF;
221: --
222: ELSE --} {
223: wf_engine.handleError(
224: itemType => history_rec.item_type,
225: itemKey => history_rec.event_key,
226: activity => 'WSH_TPW_PROCESS_WF:POPULATE_BASE_TABLES',
227: command => 'RETRY',

Line 244: 'Calling wf_engine.handleError');

240: END IF;
241: --
242: IF l_debug_on THEN
243: wsh_debug_sv.logmsg(l_module_name,
244: 'Calling wf_engine.handleError');
245: END IF;
246: --
247: wf_engine.handleError(
248: itemType => history_rec.item_type,

Line 247: wf_engine.handleError(

243: wsh_debug_sv.logmsg(l_module_name,
244: 'Calling wf_engine.handleError');
245: END IF;
246: --
247: wf_engine.handleError(
248: itemType => history_rec.item_type,
249: itemKey => history_rec.event_key,
250: activity => l_activity_name,
251: command => 'RETRY',

Line 323: -- Added Comments: Not sure why API wf_engine.completeActivity is invoked, since

319: wsh_debug_sv.log (l_module_name,'For Txn Status AP, Process_Inbound: l_return_status', l_return_status);
320: END IF;
321: --
322: -- TPW - Distribution Changes
323: -- Added Comments: Not sure why API wf_engine.completeActivity is invoked, since
324: -- Txn History record populated from XML Gateway will be with Txn Status 'IP'
325: ELSE --} {
326: IF l_debug_on THEN
327: wsh_debug_sv.logmsg(l_module_name,

Line 328: 'Calling wf_engine.completeActivity');

324: -- Txn History record populated from XML Gateway will be with Txn Status 'IP'
325: ELSE --} {
326: IF l_debug_on THEN
327: wsh_debug_sv.logmsg(l_module_name,
328: 'Calling wf_engine.completeActivity');
329: END IF;
330: --
331: wf_engine.completeActivity (
332: itemtype => history_rec.item_type,

Line 331: wf_engine.completeActivity (

327: wsh_debug_sv.logmsg(l_module_name,
328: 'Calling wf_engine.completeActivity');
329: END IF;
330: --
331: wf_engine.completeActivity (
332: itemtype => history_rec.item_type,
333: itemkey => history_rec.event_key,
334: activity => 'WSH_SUPPLIER_WF:CONTINUE_SHIPMENT_ADVICE',
335: result => l_result_code);