DBA Data[Home] [Help]

APPS.PON_AWARD_APPROVAL_PKG dependencies on WF_NOTIFICATION

Line 2371: wf_notification.SetAttrText(l_notification_id, 'RESULT', p_decision);

2367: END;
2368:
2369: -- if the notification was found, then respond to it with user's decision
2370: IF l_notification_found THEN
2371: wf_notification.SetAttrText(l_notification_id, 'RESULT', p_decision);
2372: wf_notification.SetAttrText(l_notification_id, 'NOTE_TO_BUYER', PON_AUCTION_PKG.replaceHtmlChars(p_note_to_buyer));
2373: wf_notification.SetAttrText(l_notification_id, 'APPROVER_FORWARDEE_USER', p_forwardee_user_name);
2374: wf_notification.respond(l_notification_id, p_decision, p_user_name);
2375: -- otherwise, raise an exception that the notification has already been responded to

Line 2372: wf_notification.SetAttrText(l_notification_id, 'NOTE_TO_BUYER', PON_AUCTION_PKG.replaceHtmlChars(p_note_to_buyer));

2368:
2369: -- if the notification was found, then respond to it with user's decision
2370: IF l_notification_found THEN
2371: wf_notification.SetAttrText(l_notification_id, 'RESULT', p_decision);
2372: wf_notification.SetAttrText(l_notification_id, 'NOTE_TO_BUYER', PON_AUCTION_PKG.replaceHtmlChars(p_note_to_buyer));
2373: wf_notification.SetAttrText(l_notification_id, 'APPROVER_FORWARDEE_USER', p_forwardee_user_name);
2374: wf_notification.respond(l_notification_id, p_decision, p_user_name);
2375: -- otherwise, raise an exception that the notification has already been responded to
2376: ELSE

Line 2373: wf_notification.SetAttrText(l_notification_id, 'APPROVER_FORWARDEE_USER', p_forwardee_user_name);

2369: -- if the notification was found, then respond to it with user's decision
2370: IF l_notification_found THEN
2371: wf_notification.SetAttrText(l_notification_id, 'RESULT', p_decision);
2372: wf_notification.SetAttrText(l_notification_id, 'NOTE_TO_BUYER', PON_AUCTION_PKG.replaceHtmlChars(p_note_to_buyer));
2373: wf_notification.SetAttrText(l_notification_id, 'APPROVER_FORWARDEE_USER', p_forwardee_user_name);
2374: wf_notification.respond(l_notification_id, p_decision, p_user_name);
2375: -- otherwise, raise an exception that the notification has already been responded to
2376: ELSE
2377: raise_application_error(-20001, PON_AUCTION_PKG.getMessage('PON_NOTIF_ALREADY_RESPONDED'));

Line 2374: wf_notification.respond(l_notification_id, p_decision, p_user_name);

2370: IF l_notification_found THEN
2371: wf_notification.SetAttrText(l_notification_id, 'RESULT', p_decision);
2372: wf_notification.SetAttrText(l_notification_id, 'NOTE_TO_BUYER', PON_AUCTION_PKG.replaceHtmlChars(p_note_to_buyer));
2373: wf_notification.SetAttrText(l_notification_id, 'APPROVER_FORWARDEE_USER', p_forwardee_user_name);
2374: wf_notification.respond(l_notification_id, p_decision, p_user_name);
2375: -- otherwise, raise an exception that the notification has already been responded to
2376: ELSE
2377: raise_application_error(-20001, PON_AUCTION_PKG.getMessage('PON_NOTIF_ALREADY_RESPONDED'));
2378: END IF;