DBA Data[Home] [Help]

APPS.FND_WF_STANDARD dependencies on WF_CORE

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 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 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 209: Wf_Core.Raise('WFSQL_ARGS');

205:
206: if (appl_name is null)
207: or (prog_name is null)
208: or (arg_count is null) then
209: Wf_Core.Raise('WFSQL_ARGS');
210: end if;
211:
212: -- assign all 100 arguments for concurrent program
213: i:=0;

Line 273: if ( wf_core.error_name = 'WFENG_ITEM_ATTR' ) then

269: Wf_Engine.SetItemAttrNumber(itemtype, itemkey, aname, req_id);
270:
271: exception when others then
272: -- if item attr doesnt exist then create it now
273: if ( wf_core.error_name = 'WFENG_ITEM_ATTR' ) then
274: wf_engine.AddItemAttr(itemtype, itemkey, aname);
275: Wf_Engine.SetItemAttrNumber(itemtype, itemkey, aname, req_id);
276: else
277: raise;

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 347: Wf_Core.Raise('WF_CONC_PP_SUBMIT');

343: arg3 => 'F', arg4 => null, arg5 => null, arg6 => null,
344: arg7 => null, arg8 => null, arg9 => null, arg10 => null);
345:
346: if result < 0 then
347: Wf_Core.Raise('WF_CONC_PP_SUBMIT');
348: end if;
349:
350:
351: return(result);

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 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 466: Wf_Core.Clear;

462: Wf_Item_Activity_Status.Set_Error(itemtype,
463: itemkey, actid, wf_engine.eng_exception, FALSE);
464: Wf_Engine_Util.Execute_Error_Process(itemtype,
465: itemkey, actid, wf_engine.eng_exception);
466: Wf_Core.Clear;
467: end;
468:
469:
470: commit;

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;