DBA Data[Home] [Help]

APPS.OE_CHG_ORDER_PVT dependencies on WF_ENGINE

Line 35: WF_ENGINE.StartProcess(p_itemtype, p_itemkey);

31: oe_debug_pub.add( 'ITEM TYPE IS :'|| P_ITEMTYPE ) ;
32: oe_debug_pub.add( 'ITEM KEY IS :' || P_ITEMKEY ) ;
33: END IF;
34:
35: WF_ENGINE.StartProcess(p_itemtype, p_itemkey);
36: IF l_debug_level > 0 THEN
37: oe_debug_pub.add( 'AFTER START_CHANGEORDER FLOW' ) ;
38: END IF;
39: EXCEPTION

Line 133: WF_ENGINE.CreateProcess(l_chgord_item_type,to_char(l_wf_item_key),l_process_name);

129: oe_debug_pub.add( 'USER TEXT IS :' || P_USER_TEXT ) ;
130: END IF;
131:
132: -- Create the Change Order Item
133: WF_ENGINE.CreateProcess(l_chgord_item_type,to_char(l_wf_item_key),l_process_name);
134:
135: -- Set the Change Order Item Attributes
136:
137: /* wf_engine.SetItemAttrText(l_chgord_item_type

Line 137: /* wf_engine.SetItemAttrText(l_chgord_item_type

133: WF_ENGINE.CreateProcess(l_chgord_item_type,to_char(l_wf_item_key),l_process_name);
134:
135: -- Set the Change Order Item Attributes
136:
137: /* wf_engine.SetItemAttrText(l_chgord_item_type
138: , l_wf_item_key
139: , 'BOOKING_DOCUMENT'
140: , 'PLSQL:OE_CHG_ORDER_PVT.Generate_PLSQLDoc/' || l_wf_item_key);
141: */

Line 142: wf_engine.SetItemAttrText(l_chgord_item_type

138: , l_wf_item_key
139: , 'BOOKING_DOCUMENT'
140: , 'PLSQL:OE_CHG_ORDER_PVT.Generate_PLSQLDoc/' || l_wf_item_key);
141: */
142: wf_engine.SetItemAttrText(l_chgord_item_type
143: , l_wf_item_key
144: , 'USER_TEXT'
145: ,p_user_text);
146:

Line 149: WF_ENGINE.SetItemAttrText(l_chgord_item_type

145: ,p_user_text);
146:
147: -- Set the resolving role for the constraint.
148:
149: WF_ENGINE.SetItemAttrText(l_chgord_item_type
150: ,l_wf_item_key
151: ,'RESOLVING_ROLE'
152: ,p_resolving_name);
153:

Line 160: WF_ENGINE.SetItemAttrNumber(l_chgord_item_type

156: oe_msg_pub.add('Order Number is: ' || l_order_number);
157:
158: -- Set the order number context for the message header
159:
160: WF_ENGINE.SetItemAttrNumber(l_chgord_item_type
161: ,l_wf_item_key
162: ,'ORDER_NUMBER'
163: , l_order_number);
164: /*

Line 165: l_document_body := wf_engine.GetItemAttrText(l_chgord_item_type

161: ,l_wf_item_key
162: ,'ORDER_NUMBER'
163: , l_order_number);
164: /*
165: l_document_body := wf_engine.GetItemAttrText(l_chgord_item_type
166: , l_wf_item_key
167: , 'BOOKING_DOCUMENT');
168:
169: oe_debug_pub.add('Value of document is :' || l_document_body);

Line 187: WF_ENGINE.SetItemAttrText( l_chgord_item_type

183: l_user_name := null; -- do not set FROM_ROLE then
184: END;
185:
186: IF (l_user_name is not NULL) THEN
187: WF_ENGINE.SetItemAttrText( l_chgord_item_type
188: ,l_wf_item_key
189: ,'NOTIFICATION_FROM_ROLE'
190: ,l_user_name);
191: END IF;

Line 194: WF_ENGINE.StartProcess(l_chgord_item_type, to_char(l_wf_item_key));

190: ,l_user_name);
191: END IF;
192: -- Bug number 6633740
193:
194: WF_ENGINE.StartProcess(l_chgord_item_type, to_char(l_wf_item_key));
195:
196: -- Make a call to the StartChangeOrderFlow to start the change order process
197: -- Start_ChangeOrderFlow(l_chgord_item_type, to_char(l_wf_item_key));
198:

Line 302: l_user_text := wf_engine.GetItemAttrText('OECHGORD'

298:
299: -- JPN: Replace this with p_document
300:
301:
302: l_user_text := wf_engine.GetItemAttrText('OECHGORD'
303: ,p_document_id
304: , 'USER_TEXT');
305: IF l_debug_level > 0 THEN
306: oe_debug_pub.add( 'USER TEXT IS: ' || L_USER_TEXT ) ;