DBA Data[Home] [Help]

APPS.PON_AWARD_PKG dependencies on WF_ENGINE

Line 143: wf_engine.CreateProcess(itemtype => x_itemtype,

139: --
140: -- Create the wf process
141: --
142:
143: wf_engine.CreateProcess(itemtype => x_itemtype,
144: itemkey => x_itemkey,
145: process => 'NOTIFY_EMD_ADMIN_PROCESS');
146:
147: --

Line 150: wf_engine.SetItemAttrNumber (itemtype => x_itemtype,

146:
147: --
148: -- Set all the item attributes
149: --
150: wf_engine.SetItemAttrNumber (itemtype => x_itemtype,
151: itemkey => x_itemkey,
152: aname => 'AUCTION_ID',
153: avalue => p_auction_header_id);
154: /* Setting the Company header attribute */

Line 155: wf_engine.SetItemAttrText(itemtype => x_itemtype

151: itemkey => x_itemkey,
152: aname => 'AUCTION_ID',
153: avalue => p_auction_header_id);
154: /* Setting the Company header attribute */
155: wf_engine.SetItemAttrText(itemtype => x_itemtype
156: ,itemkey => x_itemkey
157: ,aname => 'AUCTION_TP_NAME'
158: ,avalue => p_auction_tp_name);
159: /* wf_engine.SetItemAttrText (itemtype => x_itemtype,

Line 159: /* wf_engine.SetItemAttrText (itemtype => x_itemtype,

155: wf_engine.SetItemAttrText(itemtype => x_itemtype
156: ,itemkey => x_itemkey
157: ,aname => 'AUCTION_TP_NAME'
158: ,avalue => p_auction_tp_name);
159: /* wf_engine.SetItemAttrText (itemtype => x_itemtype,
160: itemkey => x_itemkey,
161: aname => 'PON_AUC_WF_AWARD_SUBJECT',
162: avalue => pon_auction_pkg.getMessage('PON_AUC_WF_AWARD_SUBJECT', x_msg_suffix,
163: 'DOC_NUMBER', x_doc_number_dsp,

Line 166: wf_engine.SetItemAttrText (itemtype => x_itemtype,

162: avalue => pon_auction_pkg.getMessage('PON_AUC_WF_AWARD_SUBJECT', x_msg_suffix,
163: 'DOC_NUMBER', x_doc_number_dsp,
164: 'AUCTION_TITLE', pon_auction_pkg.replaceHtmlChars(p_auction_title))); */
165:
166: wf_engine.SetItemAttrText (itemtype => x_itemtype,
167: itemkey => x_itemkey,
168: aname => 'PON_AUC_WF_AWARD_SUBJECT',
169: avalue => 'Auction' || x_doc_number_dsp || '(' || p_auction_title || ') has been awarded');
170: /* Setting the negotiation title header attribute */

Line 171: wf_engine.SetItemAttrText(itemtype => x_itemtype

167: itemkey => x_itemkey,
168: aname => 'PON_AUC_WF_AWARD_SUBJECT',
169: avalue => 'Auction' || x_doc_number_dsp || '(' || p_auction_title || ') has been awarded');
170: /* Setting the negotiation title header attribute */
171: wf_engine.SetItemAttrText(itemtype => x_itemtype
172: ,itemkey => x_itemkey
173: ,aname => 'AUCTION_TITLE'
174: ,avalue => pon_auction_pkg.replaceHtmlChars(p_auction_title));
175: wf_engine.SetItemAttrText (itemtype => x_itemtype,

Line 175: wf_engine.SetItemAttrText (itemtype => x_itemtype,

171: wf_engine.SetItemAttrText(itemtype => x_itemtype
172: ,itemkey => x_itemkey
173: ,aname => 'AUCTION_TITLE'
174: ,avalue => pon_auction_pkg.replaceHtmlChars(p_auction_title));
175: wf_engine.SetItemAttrText (itemtype => x_itemtype,
176: itemkey => x_itemkey,
177: aname => 'AUCTION_TYPE_NAME',
178: avalue => x_auction_type_name);
179:

Line 180: wf_engine.SetItemAttrText (itemtype => x_itemtype,

176: itemkey => x_itemkey,
177: aname => 'AUCTION_TYPE_NAME',
178: avalue => x_auction_type_name);
179:
180: wf_engine.SetItemAttrText (itemtype => x_itemtype,
181: itemkey => x_itemkey,
182: aname => 'EMD_APPROVER',
183: avalue => p_emd_admin_name);
184: -- Bug 4295915: Set the workflow owner

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

181: itemkey => x_itemkey,
182: aname => 'EMD_APPROVER',
183: avalue => p_emd_admin_name);
184: -- Bug 4295915: Set the workflow owner
185: wf_engine.SetItemAttrText (itemtype => x_itemtype,
186: itemkey => x_itemkey,
187: aname => 'ORIGIN_USER_NAME',
188: avalue => fnd_global.user_name);
189:

Line 190: wf_engine.SetItemOwner(itemtype => x_itemtype,

186: itemkey => x_itemkey,
187: aname => 'ORIGIN_USER_NAME',
188: avalue => fnd_global.user_name);
189:
190: wf_engine.SetItemOwner(itemtype => x_itemtype,
191: itemkey => x_itemkey,
192: owner => fnd_global.user_name);
193:
194:

Line 199: wf_engine.StartProcess(itemtype => x_itemtype,

195: --
196: -- Start the workflow
197: --
198:
199: wf_engine.StartProcess(itemtype => x_itemtype,
200: itemkey => x_itemkey );
201: pon_auction_pkg.UNSET_SESSION_LANGUAGE;
202:
203: x_progress := '029';