DBA Data[Home] [Help]

APPS.WF_ENGINE_UTIL dependencies on WF_PROCESS_ACTIVITY

Line 404: rootid := Wf_Process_Activity.RootInstanceId(itemtype, itemkey, root);

400: end if;
401:
402: -- If this is the root process of the item, then exit immediately.
403: Wf_Item.Root_Process(itemtype, itemkey, root, version);
404: rootid := Wf_Process_Activity.RootInstanceId(itemtype, itemkey, root);
405: if (actid = rootid) then
406: return;
407: end if;
408:

Line 651: processid := Wf_Process_Activity.RootInstanceId(itemtype, itemkey,

647: end if;
648:
649: -- Insert a row for the process into WIAS table.
650: -- Get the id of the process root.
651: processid := Wf_Process_Activity.RootInstanceId(itemtype, itemkey,
652: process);
653: if (processid is null) then
654: Wf_Core.Token('TYPE', itemtype);
655: Wf_Core.Token('NAME', process);

Line 1070: Wf_Process_Activity.ActivityName(actid, act_itemtype, act_name);

1066:
1067: if (acttype = wf_engine.eng_process) then
1068: -- PROCESS activity
1069: -- Add this subprocess to the call stack
1070: Wf_Process_Activity.ActivityName(actid, act_itemtype, act_name);
1071: Wf_Engine_Util.AddProcessStack(itemtype, itemkey, act_itemtype,
1072: act_name, actid, FALSE);
1073:
1074: -- For loop to get all the start activities first.

Line 2971: rootid := Wf_Process_Activity.RootInstanceId(itemtype, itemkey, root);

2967: -- If this activity does not have an error process, look for the
2968: -- nearest parent process activity that does have one.
2969: --
2970: Wf_Item.Root_Process(itemtype, itemkey, root, version);
2971: rootid := Wf_Process_Activity.RootInstanceId(itemtype, itemkey, root);
2972: if (rootid is null) then
2973: Wf_Core.Token('TYPE', itemtype);
2974: Wf_Core.Token('KEY', itemkey);
2975: Wf_Core.Token('NAME', root);