DBA Data[Home] [Help]

APPS.WF_ACTIVITY dependencies on WF_ENGINE

Line 309: if (wf_activity.c_start_end = wf_engine.eng_end) then

305: is
306: begin
307:
308: Wf_Activity.InitCache(actid, actdate);
309: if (wf_activity.c_start_end = wf_engine.eng_end) then
310: return(TRUE);
311: else
312: return(FALSE);
313: end if;

Line 352: errortype:=wf_engine.eng_wferror;

348:
349: -- for backward compatability, ensure error type is set
350: -- this is not necessary for 2.5 onwards.
351: if errorprocess is not null and errortype is null then
352: errortype:=wf_engine.eng_wferror;
353: end if;
354:
355: exception
356: when NO_DATA_FOUND then

Line 549: performrole := substrb(Wf_Engine.GetItemAttrText(itemtype, itemkey,

545: else -- (must be proletype = 'ITEMATTR')
546: -- Let the unknown_attribute exception propagate up if raised.
547: -- The substr is to prevent value errors if the attr value is too
548: -- long.
549: performrole := substrb(Wf_Engine.GetItemAttrText(itemtype, itemkey,
550: wf_activity.c_prole), 1, 320);
551: end if;
552:
553: return(performrole);