DBA Data[Home] [Help]

APPS.FND_WF_STANDARD dependencies on STANDARD

Line 1: package body FND_WF_STANDARD as

1: package body FND_WF_STANDARD as
2: /* $Header: AFWFSTDB.pls 120.1.12010000.3 2008/08/27 17:29:00 alepe ship $ */
3:
4:
5: -------------------------------------------------------------------

Line 29: fnd_wf_standard.Submit_CP(itemtype, itemkey, actid, req_id);

25: resultout := wf_engine.eng_null;
26: return;
27: end if;
28:
29: fnd_wf_standard.Submit_CP(itemtype, itemkey, actid, req_id);
30:
31: resultout := wf_engine.eng_completed;
32:
33: exception

Line 35: Wf_Core.Context('FND_WF_STANDARD', 'SubmitConcProgram', itemtype, itemkey);

31: resultout := wf_engine.eng_completed;
32:
33: exception
34: when others then
35: Wf_Core.Context('FND_WF_STANDARD', 'SubmitConcProgram', itemtype, itemkey);
36: raise;
37: end SubmitConcProgram;
38:
39:

Line 64: fnd_wf_standard.Submit_CP(itemtype, itemkey, actid, req_id);

60: resultout := wf_engine.eng_null;
61: return;
62: end if;
63:
64: fnd_wf_standard.Submit_CP(itemtype, itemkey, actid, req_id);
65:
66: -- if we get here, the request must have been succesfully submitted.
67: -- also, it cannot have been run yet because we havent committed
68: -- so seed the callback

Line 69: num_val := fnd_wf_standard.Seed_CB(itemtype, itemkey, actid, req_id);

65:
66: -- if we get here, the request must have been succesfully submitted.
67: -- also, it cannot have been run yet because we havent committed
68: -- so seed the callback
69: num_val := fnd_wf_standard.Seed_CB(itemtype, itemkey, actid, req_id);
70:
71:
72: -- put this activity in wait/notified state
73: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||

Line 78: Wf_Core.Context('FND_WF_STANDARD', 'ExecuteConcProgram', itemtype, itemkey);

74: ':'||wf_engine.eng_null;
75:
76: exception
77: when others then
78: Wf_Core.Context('FND_WF_STANDARD', 'ExecuteConcProgram', itemtype, itemkey);
79: raise;
80:
81: end ExecuteConcProgram;
82:

Line 146: if fnd_wf_standard.Seed_CB(itemtype, itemkey, actid, req_id) < 0 then

142: resultout := wf_engine.eng_deferred||':'||
143: to_char(sysdate+greatest(nvl(avgTime,0),l_minute),
144: wf_engine.date_format);
145: else
146: if fnd_wf_standard.Seed_CB(itemtype, itemkey, actid, req_id) < 0 then
147: resultout := wf_engine.eng_completed||':'||complete_status;
148: else
149: -- put this activity in wait/notified state
150: resultout := wf_engine.eng_notified||':'||wf_engine.eng_null||

Line 162: Wf_Core.Context('FND_WF_STANDARD', 'WaitForConcProgram', itemtype, itemkey);

158: if (avgCPTime%ISOPEN) then
159: close avgCPTime;
160: end if;
161:
162: Wf_Core.Context('FND_WF_STANDARD', 'WaitForConcProgram', itemtype, itemkey);
163: raise;
164:
165: end WaitForConcProgram;
166:

Line 285: Wf_Core.Context('FND_WF_STANDARD', 'Submit_CP', itemtype, itemkey,

281:
282: exception
283: when submission_error then
284: fnd_message.retrieve(msg);
285: Wf_Core.Context('FND_WF_STANDARD', 'Submit_CP', itemtype, itemkey,
286: appl_name||':'||prog_name, msg);
287: raise;
288: when others then
289: Wf_Core.Context('FND_WF_STANDARD', 'Submit_CP', itemtype, itemkey,

Line 289: Wf_Core.Context('FND_WF_STANDARD', 'Submit_CP', itemtype, itemkey,

285: Wf_Core.Context('FND_WF_STANDARD', 'Submit_CP', itemtype, itemkey,
286: appl_name||':'||prog_name, msg);
287: raise;
288: when others then
289: Wf_Core.Context('FND_WF_STANDARD', 'Submit_CP', itemtype, itemkey,
290: appl_name||':'||prog_name);
291: raise;
292: END Submit_CP;
293:

Line 355: Wf_Core.Context('FND_WF_STANDARD', 'Seed_CB', itemtype, itemkey,

351: return(result);
352:
353: exception
354: when others then
355: Wf_Core.Context('FND_WF_STANDARD', 'Seed_CB', itemtype, itemkey,
356: to_char(req_id));
357: raise;
358: end Seed_CB;
359:

Line 364: -- errbuff - standard error buffer required for conc mgr submission

360:
361: ------------------------------------------------------------------
362: -- Name: CALLBACK
363: -- Parameters:
364: -- errbuff - standard error buffer required for conc mgr submission
365: -- retcode - standard return code required for conc mgr submission
366: -- step - handle to cocnurrent program that seeded the call
367: -- Notes:
368: -- this is called by the concurrent program's post-processsor

Line 365: -- retcode - standard return code required for conc mgr submission

361: ------------------------------------------------------------------
362: -- Name: CALLBACK
363: -- Parameters:
364: -- errbuff - standard error buffer required for conc mgr submission
365: -- retcode - standard return code required for conc mgr submission
366: -- step - handle to cocnurrent program that seeded the call
367: -- Notes:
368: -- this is called by the concurrent program's post-processsor
369: --

Line 460: Wf_Core.Context('Fnd_Wf_Standard', 'Callback', itemtype,

456: -- 2. set this activity to error status
457: -- 3. execute the error process (if any)
458: -- 4. clear the error to continue with next activity
459: rollback to wf_savepoint;
460: Wf_Core.Context('Fnd_Wf_Standard', 'Callback', itemtype,
461: itemkey, actid, result);
462: Wf_Item_Activity_Status.Set_Error(itemtype,
463: itemkey, actid, wf_engine.eng_exception, FALSE);
464: Wf_Engine_Util.Execute_Error_Process(itemtype,

Line 473: Wf_Core.Context('FND_WF_STANDARD', 'Callback', itemtype, itemkey);

469:
470: commit;
471: exception
472: when others then
473: Wf_Core.Context('FND_WF_STANDARD', 'Callback', itemtype, itemkey);
474: raise;
475:
476:
477: END callback;

Line 479: END FND_WF_STANDARD;

475:
476:
477: END callback;
478:
479: END FND_WF_STANDARD;