DBA Data[Home] [Help]

APPS.XTR_WORKFLOW_PKG dependencies on WF_ENGINE

Line 201: wf_engine.CreateProcess(itemtype => l_itemtype,

197: from dual;
198:
199: l_itemkey := to_char(l_wf_sequence);
200: l_userkey := l_itemtype||l_itemkey;
201: wf_engine.CreateProcess(itemtype => l_itemtype,
202: itemkey => l_itemkey,
203: process => p_process);
204: wf_engine.SetItemAttrText(itemtype => l_itemtype,
205: itemkey => l_itemkey,

Line 204: wf_engine.SetItemAttrText(itemtype => l_itemtype,

200: l_userkey := l_itemtype||l_itemkey;
201: wf_engine.CreateProcess(itemtype => l_itemtype,
202: itemkey => l_itemkey,
203: process => p_process);
204: wf_engine.SetItemAttrText(itemtype => l_itemtype,
205: itemkey => l_itemkey,
206: aname => 'XTR_NTF_RECEIVER',
207: avalue => p_receiver);
208: wf_engine.SetItemAttrText(itemtype => l_itemtype,

Line 208: wf_engine.SetItemAttrText(itemtype => l_itemtype,

204: wf_engine.SetItemAttrText(itemtype => l_itemtype,
205: itemkey => l_itemkey,
206: aname => 'XTR_NTF_RECEIVER',
207: avalue => p_receiver);
208: wf_engine.SetItemAttrText(itemtype => l_itemtype,
209: itemkey => l_itemkey,
210: aname => 'XTR_LIMITS_LOG_ID',
211: avalue => p_log_id);
212: wf_engine.StartProcess(itemtype => l_itemtype,

Line 212: wf_engine.StartProcess(itemtype => l_itemtype,

208: wf_engine.SetItemAttrText(itemtype => l_itemtype,
209: itemkey => l_itemkey,
210: aname => 'XTR_LIMITS_LOG_ID',
211: avalue => p_log_id);
212: wf_engine.StartProcess(itemtype => l_itemtype,
213: itemkey => l_itemkey );
214: EXCEPTION
215: when others then
216: wf_core.context('XTR_WORKFLOW_PKG', 'START_LIMITS_NTF', l_itemtype, l_itemkey);