DBA Data[Home] [Help]

APPS.PO_ONLINE_AUTHORING_WF_ACTIONS dependencies on WF_ENGINE

Line 131: wf_engine.createProcess ( ItemType => l_item_type,

127:
128: -- Create the process
129: l_progress := 200;
130:
131: wf_engine.createProcess ( ItemType => l_item_type,
132: ItemKey => l_item_key,
133: Process => 'AGREEMENT_AUTHORING_ENABLED');
134: IF PO_LOG.d_stmt THEN
135: PO_LOG.stmt(d_mod,l_progress,'Process Created; Setting Attributes and Starting Process ...');

Line 139: wf_engine.SetItemAttrText ( itemtype => l_item_type,

135: PO_LOG.stmt(d_mod,l_progress,'Process Created; Setting Attributes and Starting Process ...');
136: END IF;
137:
138: l_progress := 300;
139: wf_engine.SetItemAttrText ( itemtype => l_item_type,
140: itemkey => l_item_key,
141: aname => 'PO_HEADER_ID',
142: avalue => p_agreement_id);
143:

Line 145: wf_engine.SetItemAttrText ( itemtype => l_item_type,

141: aname => 'PO_HEADER_ID',
142: avalue => p_agreement_id);
143:
144: l_progress := 400;
145: wf_engine.SetItemAttrText ( itemtype => l_item_type,
146: itemkey => l_item_key,
147: aname => 'OPERATING_UNIT_NAME',
148: avalue => p_ou_name);
149:

Line 151: wf_engine.SetItemAttrText ( itemtype => l_item_type,

147: aname => 'OPERATING_UNIT_NAME',
148: avalue => p_ou_name);
149:
150: l_progress := 500;
151: wf_engine.SetItemAttrText ( itemtype => l_item_type,
152: itemkey => l_item_key,
153: aname => 'FORWARD_FROM_USER_NAME',
154: avalue => l_buyer_display_name);
155:

Line 157: wf_engine.SetItemAttrText ( itemtype => l_item_type,

153: aname => 'FORWARD_FROM_USER_NAME',
154: avalue => l_buyer_display_name);
155:
156: l_progress := 600;
157: wf_engine.SetItemAttrText ( itemtype => l_item_type,
158: itemkey => l_item_key,
159: aname => 'FORWARD_TO_ROLE',
160: avalue => l_role_name);
161:

Line 163: wf_engine.SetItemAttrText ( itemtype => l_item_type,

159: aname => 'FORWARD_TO_ROLE',
160: avalue => l_role_name);
161:
162: l_progress := 700;
163: wf_engine.SetItemAttrText ( itemtype => l_item_type,
164: itemkey => l_item_key,
165: aname => 'AGREEMENT_INFO',
166: avalue => p_agreement_info);
167:

Line 169: wf_engine.SetItemAttrText ( itemtype => l_item_type,

165: aname => 'AGREEMENT_INFO',
166: avalue => p_agreement_info);
167:
168: l_progress := 800;
169: wf_engine.SetItemAttrText ( itemtype => l_item_type,
170: itemkey => l_item_key,
171: aname => 'EDIT_AGREEMENT_URL',
172: avalue => l_edit_agreement_url);
173:

Line 174: wf_engine.SetItemOwner( itemtype => l_item_type,

170: itemkey => l_item_key,
171: aname => 'EDIT_AGREEMENT_URL',
172: avalue => l_edit_agreement_url);
173:
174: wf_engine.SetItemOwner( itemtype => l_item_type,
175: itemkey => l_item_key,
176: owner => l_buyer_user_name);
177:
178:

Line 180: wf_engine.StartProcess ( ItemType => l_item_type,

176: owner => l_buyer_user_name);
177:
178:
179: l_progress := 900;
180: wf_engine.StartProcess ( ItemType => l_item_type,
181: ItemKey => l_item_key );
182: IF PO_LOG.d_proc THEN
183: PO_LOG.stmt(d_mod,l_progress,'End of start_authoring_enabled_wf: WF Process Started.');
184: END IF;

Line 285: WF_ENGINE.createProcess ( ItemType => c_ITEM_TYPE,

281: l_item_key := p_agreement_id || '-' || l_seq_for_item_key;
282:
283: d_position := 20;
284:
285: WF_ENGINE.createProcess ( ItemType => c_ITEM_TYPE,
286: ItemKey => l_item_key,
287: Process => c_PROCESS);
288:
289: d_position := 30;

Line 291: WF_ENGINE.SetItemAttrText ( itemtype => c_ITEM_TYPE,

287: Process => c_PROCESS);
288:
289: d_position := 30;
290:
291: WF_ENGINE.SetItemAttrText ( itemtype => c_ITEM_TYPE,
292: itemkey => l_item_key,
293: aname => 'AGREEMENT_INFO',
294: avalue => p_agreement_info);
295:

Line 296: WF_ENGINE.SetItemAttrText ( itemtype => c_ITEM_TYPE,

292: itemkey => l_item_key,
293: aname => 'AGREEMENT_INFO',
294: avalue => p_agreement_info);
295:
296: WF_ENGINE.SetItemAttrText ( itemtype => c_ITEM_TYPE,
297: itemkey => l_item_key,
298: aname => 'FORWARD_FROM_USER_NAME',
299: avalue => l_buyer_display_name);
300:

Line 301: WF_ENGINE.SetItemAttrText ( itemtype => c_ITEM_TYPE,

297: itemkey => l_item_key,
298: aname => 'FORWARD_FROM_USER_NAME',
299: avalue => l_buyer_display_name);
300:
301: WF_ENGINE.SetItemAttrText ( itemtype => c_ITEM_TYPE,
302: itemkey => l_item_key,
303: aname => 'FORWARD_FROM_FULL_NAME',
304: avalue => l_buyer_display_name);
305:

Line 306: WF_ENGINE.SetItemAttrText ( itemtype => c_ITEM_TYPE,

302: itemkey => l_item_key,
303: aname => 'FORWARD_FROM_FULL_NAME',
304: avalue => l_buyer_display_name);
305:
306: WF_ENGINE.SetItemAttrText ( itemtype => c_ITEM_TYPE,
307: itemkey => l_item_key,
308: aname => 'FORWARD_TO_ROLE',
309: avalue => l_forward_to_role);
310:

Line 313: WF_ENGINE.StartProcess ( ItemType => c_ITEM_TYPE,

309: avalue => l_forward_to_role);
310:
311: d_position := 40;
312:
313: WF_ENGINE.StartProcess ( ItemType => c_ITEM_TYPE,
314: ItemKey => l_item_key );
315:
316: IF PO_LOG.d_proc THEN
317: PO_LOG.proc_end(d_mod,'p_agreement_id',p_agreement_id);