DBA Data[Home] [Help]

APPS.PON_AUCTION_APPROVAL_PKG dependencies on WF_NOTIFICATION

Line 144: WF_Notification.cancel(l_nid);

140: where ASSIGNED_USER = p_user_name
141: and ITEM_TYPE = l_itemType
142: and ITEM_KEY = l_itemkey
143: and activity_status ='NOTIFIED';
144: WF_Notification.cancel(l_nid);
145: exception
146: when others then
147: p_resultOut := 1; -- unexpected
148: end;

Line 205: wf_notification.SetAttrText(l_nid, 'RESULT',p_result);

201: User_Decision_Without_WF(l_user_id, p_result, p_note_to_buyer,
202: p_auction_header_id);
203: return;
204: end;
205: wf_notification.SetAttrText(l_nid, 'RESULT',p_result);
206: wf_notification.SetAttrText(l_nid, 'APPROVER_NOTES',p_note_to_buyer);
207: WF_Notification.respond(l_nid,p_result,p_user_name);
208: exception
209: when others then

Line 206: wf_notification.SetAttrText(l_nid, 'APPROVER_NOTES',p_note_to_buyer);

202: p_auction_header_id);
203: return;
204: end;
205: wf_notification.SetAttrText(l_nid, 'RESULT',p_result);
206: wf_notification.SetAttrText(l_nid, 'APPROVER_NOTES',p_note_to_buyer);
207: WF_Notification.respond(l_nid,p_result,p_user_name);
208: exception
209: when others then
210: p_resultOut := 1; -- unexpected

Line 207: WF_Notification.respond(l_nid,p_result,p_user_name);

203: return;
204: end;
205: wf_notification.SetAttrText(l_nid, 'RESULT',p_result);
206: wf_notification.SetAttrText(l_nid, 'APPROVER_NOTES',p_note_to_buyer);
207: WF_Notification.respond(l_nid,p_result,p_user_name);
208: exception
209: when others then
210: p_resultOut := 1; -- unexpected
211: end;

Line 226: WF_Notification.cancel(r1.notification_id);

222: l_item_type Varchar2(30) := 'PONAPPRV';
223: begin
224: for r1 in List_of_Process(l_item_type,p_parent_item_key) loop
225: begin
226: WF_Notification.cancel(r1.notification_id);
227: -- wf_engine.CompleteActivity(l_item_type,r1.item_key,
228: -- r1.activity_label,'CLOSE');
229:
230: exception when others then null;