DBA Data[Home] [Help]

APPS.IEX_WF_DEL_STATUS_PUB dependencies on WF_ENGINE

Line 83: wf_engine.createprocess (itemtype => itemtype,

79: ELSIF p_writeoff_id IS NOT NULL THEN
80: itemkey := 'WRI'||p_writeoff_id;
81: END IF;
82:
83: wf_engine.createprocess (itemtype => itemtype,
84: itemkey => itemkey,
85: process => workflowprocess);
86:
87: wf_engine.setitemattrnumber(itemtype => itemtype,

Line 87: wf_engine.setitemattrnumber(itemtype => itemtype,

83: wf_engine.createprocess (itemtype => itemtype,
84: itemkey => itemkey,
85: process => workflowprocess);
86:
87: wf_engine.setitemattrnumber(itemtype => itemtype,
88: itemkey => itemkey,
89: aname => 'DELINQUENCY_ID',
90: avalue => P_DELINQUENCY_ID);
91:

Line 92: wf_engine.setitemattrnumber(itemtype => itemtype,

88: itemkey => itemkey,
89: aname => 'DELINQUENCY_ID',
90: avalue => P_DELINQUENCY_ID);
91:
92: wf_engine.setitemattrnumber(itemtype => itemtype,
93: itemkey => itemkey,
94: aname => 'WRITEOFF_ID',
95: avalue => P_WRITEOFF_ID);
96:

Line 97: wf_engine.setitemattrtext(itemtype => itemtype,

93: itemkey => itemkey,
94: aname => 'WRITEOFF_ID',
95: avalue => P_WRITEOFF_ID);
96:
97: wf_engine.setitemattrtext(itemtype => itemtype,
98: itemkey => itemkey,
99: aname => 'REPOSSESSION_ID',
100: avalue => P_REPOSSESSION_ID);
101:

Line 102: wf_engine.setitemattrtext(itemtype => itemtype,

98: itemkey => itemkey,
99: aname => 'REPOSSESSION_ID',
100: avalue => P_REPOSSESSION_ID);
101:
102: wf_engine.setitemattrtext(itemtype => itemtype,
103: itemkey => itemkey,
104: aname => 'LITIGATION_ID',
105: avalue => P_LITIGATION_ID);
106:

Line 107: wf_engine.startprocess(itemtype => itemtype,

103: itemkey => itemkey,
104: aname => 'LITIGATION_ID',
105: avalue => P_LITIGATION_ID);
106:
107: wf_engine.startprocess(itemtype => itemtype,
108: itemkey => itemkey);
109:
110: wf_engine.ItemStatus(itemtype => ItemType,
111: itemkey => ItemKey,

Line 110: wf_engine.ItemStatus(itemtype => ItemType,

106:
107: wf_engine.startprocess(itemtype => itemtype,
108: itemkey => itemkey);
109:
110: wf_engine.ItemStatus(itemtype => ItemType,
111: itemkey => ItemKey,
112: status => l_return_status,
113: result => l_result);
114:

Line 175: result := wf_engine.eng_null;

171:
172: BEGIN
173:
174: if funcmode <> 'RUN' then
175: result := wf_engine.eng_null;
176: return;
177: end if;
178:
179: l_writeoff_id := to_number(substr(itemkey, 2));

Line 228: result := wf_engine.eng_null;

224:
225: BEGIN
226:
227: if funcmode <> 'RUN' then
228: result := wf_engine.eng_null;
229: return;
230: end if;
231:
232: l_writeoff_id := to_number(substr(itemkey, 2));