DBA Data[Home] [Help]

APPS.MSDNTF dependencies on WF_ENGINE

Line 79: wf_engine.CreateProcess(ItemType => ItemType,

75: owner varchar2(30) := inowner;
76: RptLoc varchar2(200) := URLfragment;
77: roleName varchar2(30) :=AdHocRole;
78: BEGIN
79: wf_engine.CreateProcess(ItemType => ItemType,
80: itemKey => ItemKey,
81: process => WorkflowProcess);
82: wf_engine.SetItemOwner(ItemType => ItemType,
83: ItemKey => ItemKey,

Line 82: wf_engine.SetItemOwner(ItemType => ItemType,

78: BEGIN
79: wf_engine.CreateProcess(ItemType => ItemType,
80: itemKey => ItemKey,
81: process => WorkflowProcess);
82: wf_engine.SetItemOwner(ItemType => ItemType,
83: ItemKey => ItemKey,
84: owner => owner);
85: wf_engine.SetItemAttrText(Itemtype => ItemType,
86: Itemkey => ItemKey,

Line 85: wf_engine.SetItemAttrText(Itemtype => ItemType,

81: process => WorkflowProcess);
82: wf_engine.SetItemOwner(ItemType => ItemType,
83: ItemKey => ItemKey,
84: owner => owner);
85: wf_engine.SetItemAttrText(Itemtype => ItemType,
86: Itemkey => ItemKey,
87: aname => 'ADHOCROLE',
88: avalue => roleName);
89: wf_engine.SetItemAttrText(Itemtype => ItemType,

Line 89: wf_engine.SetItemAttrText(Itemtype => ItemType,

85: wf_engine.SetItemAttrText(Itemtype => ItemType,
86: Itemkey => ItemKey,
87: aname => 'ADHOCROLE',
88: avalue => roleName);
89: wf_engine.SetItemAttrText(Itemtype => ItemType,
90: Itemkey => ItemKey,
91: aname => 'NTFSUBJECT',
92: avalue => Subject);
93: wf_engine.SetItemAttrText(Itemtype => ItemType,

Line 93: wf_engine.SetItemAttrText(Itemtype => ItemType,

89: wf_engine.SetItemAttrText(Itemtype => ItemType,
90: Itemkey => ItemKey,
91: aname => 'NTFSUBJECT',
92: avalue => Subject);
93: wf_engine.SetItemAttrText(Itemtype => ItemType,
94: Itemkey => ItemKey,
95: aname => 'NTFMSGBODY',
96: avalue => msgBody);
97: wf_engine.SetItemAttrText(Itemtype => ItemType,

Line 97: wf_engine.SetItemAttrText(Itemtype => ItemType,

93: wf_engine.SetItemAttrText(Itemtype => ItemType,
94: Itemkey => ItemKey,
95: aname => 'NTFMSGBODY',
96: avalue => msgBody);
97: wf_engine.SetItemAttrText(Itemtype => ItemType,
98: Itemkey => ItemKey,
99: aname => 'URLVALUE',
100: avalue => RptLoc);
101:

Line 102: wf_engine.StartProcess(ItemType => ItemType,

98: Itemkey => ItemKey,
99: aname => 'URLVALUE',
100: avalue => RptLoc);
101:
102: wf_engine.StartProcess(ItemType => ItemType,
103: ItemKey => ItemKey);
104: return;
105: exception
106: when others then