DBA Data[Home] [Help]

APPS.RCV_DEBIT_MEMO_NOTIF dependencies on WF_ENGINE

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

139:
140: commit;
141:
142: if x_wf_created = 0 then
143: wf_engine.CreateProcess( ItemType => ItemType,
144: ItemKey => ItemKey,
145: process => WorkflowProcess );
146: end if;
147:

Line 167: wf_engine.SetItemAttrText ( itemtype => itemType,

163: -- Initialize workflow item attributes
164:
165:
166: --
167: wf_engine.SetItemAttrText ( itemtype => itemType,
168: itemkey => itemkey,
169: aname => 'USER_NAME' ,
170: avalue => x_username);
171:

Line 173: wf_engine.SetItemAttrText ( itemtype => itemType,

169: aname => 'USER_NAME' ,
170: avalue => x_username);
171:
172: --
173: wf_engine.SetItemAttrText ( itemtype => itemType,
174: itemkey => itemkey,
175: aname => 'USER_DISPLAY_NAME' ,
176: avalue => x_user_display_name);
177:

Line 179: wf_engine.SetItemAttrText ( itemtype => itemtype,

175: aname => 'USER_DISPLAY_NAME' ,
176: avalue => x_user_display_name);
177:
178: --
179: wf_engine.SetItemAttrText ( itemtype => itemtype,
180: itemkey => itemkey,
181: aname => 'RECEIPT_NUM',
182: avalue => ReceiptNum);
183:

Line 185: wf_engine.SetItemAttrText ( itemtype => itemtype,

181: aname => 'RECEIPT_NUM',
182: avalue => ReceiptNum);
183:
184: --
185: wf_engine.SetItemAttrText ( itemtype => itemtype,
186: itemkey => itemkey,
187: aname => 'QUANTITY',
188: avalue => Quantity);
189:

Line 191: wf_engine.SetItemAttrText ( itemtype => itemtype,

187: aname => 'QUANTITY',
188: avalue => Quantity);
189:
190: --
191: wf_engine.SetItemAttrText ( itemtype => itemtype,
192: itemkey => itemkey,
193: aname => 'PO_NUMBER',
194: avalue => PONumber);
195: --

Line 197: wf_engine.SetItemAttrText(itemtype => itemtype,

193: aname => 'PO_NUMBER',
194: avalue => PONumber);
195: --
196:
197: wf_engine.SetItemAttrText(itemtype => itemtype,
198: itemkey => itemkey,
199: aname => 'RCV_DM_NOTIF_MSG',
200: avalue => l_message);
201:

Line 203: wf_engine.SetItemAttrText(itemtype => itemtype,

199: aname => 'RCV_DM_NOTIF_MSG',
200: avalue => l_message);
201:
202: --
203: wf_engine.SetItemAttrText(itemtype => itemtype,
204: itemkey => itemkey,
205: aname => 'RCV_DM_MSG1',
206: avalue => l_message1);
207: --

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

204: itemkey => itemkey,
205: aname => 'RCV_DM_MSG1',
206: avalue => l_message1);
207: --
208: wf_engine.SetItemAttrText(itemtype => itemtype,
209: itemkey => itemkey,
210: aname => 'RCV_DM_MSG2',
211: avalue => l_message2);
212:

Line 214: wf_engine.SetItemAttrText(itemtype => itemtype,

210: aname => 'RCV_DM_MSG2',
211: avalue => l_message2);
212:
213: --
214: wf_engine.SetItemAttrText(itemtype => itemtype,
215: itemkey => itemkey,
216: aname => 'RCV_DM_MSG3',
217: avalue => l_message3);
218:

Line 220: wf_engine.SetItemAttrText(itemtype => itemtype,

216: aname => 'RCV_DM_MSG3',
217: avalue => l_message3);
218:
219: --
220: wf_engine.SetItemAttrText(itemtype => itemtype,
221: itemkey => itemkey,
222: aname => 'RCV_DM_MSG4',
223: avalue => l_message4);
224: --

Line 226: wf_engine.StartProcess(itemtype => itemtype,

222: aname => 'RCV_DM_MSG4',
223: avalue => l_message4);
224: --
225:
226: wf_engine.StartProcess(itemtype => itemtype,
227: itemkey => itemkey );
228:
229: END IF;
230: