DBA Data[Home] [Help]

APPS.PON_AWARD_PKG dependencies on PON_AUCTION_PKG

Line 116: pon_auction_pkg.SET_SESSION_LANGUAGE(null, x_language_code);

112: -- Set the userenv language so the message token (attribute) values that we retrieve using the
113: -- getMessage call return the message in the correct language => x_language_code
114:
115:
116: pon_auction_pkg.SET_SESSION_LANGUAGE(null, x_language_code);
117:
118: --
119: -- Get next value in sequence for itemkey
120: --

Line 162: avalue => pon_auction_pkg.getMessage('PON_AUC_WF_AWARD_SUBJECT', x_msg_suffix,

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,
164: 'AUCTION_TITLE', pon_auction_pkg.replaceHtmlChars(p_auction_title))); */
165:
166: wf_engine.SetItemAttrText (itemtype => x_itemtype,

Line 164: 'AUCTION_TITLE', pon_auction_pkg.replaceHtmlChars(p_auction_title))); */

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,
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',

Line 174: ,avalue => pon_auction_pkg.replaceHtmlChars(p_auction_title));

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,
176: itemkey => x_itemkey,
177: aname => 'AUCTION_TYPE_NAME',
178: avalue => x_auction_type_name);

Line 201: pon_auction_pkg.UNSET_SESSION_LANGUAGE;

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';
204: IF ( fnd_log.level_unexpected >= fnd_log.g_current_runtime_level) THEN
205: fnd_log.string(log_level => fnd_log.level_unexpected

Line 504: PON_AUCTION_PKG.CANCEL_NEGOTIATION_REF_BY_LINE(p_auction_header_id, x_line_number, x_error_code);

500: -- to ensure ONLY lines with NO award decision made are put back into the pool.
501: --Bug : 14134092 : If an unsol line linked to autocreated sol line is awarded, donot take req back to pool.
502: if (x_line_origination_code = 'REQUISITION' AND x_line_award_status = 'NO'
503: AND PON_UNSOL_UTIL_PKG.CAN_PUT_REQ_IN_POOL(p_auction_header_id, x_line_number, l_is_line_type_enabled) = 'Y') then
504: PON_AUCTION_PKG.CANCEL_NEGOTIATION_REF_BY_LINE(p_auction_header_id, x_line_number, x_error_code);
505: end if;
506: /*
507: -- reject the bid line (note that reject shares the same
508: -- procedure as award)

Line 739: l_neg_has_lines := PON_AUCTION_PKG.neg_has_lines(p_auction_header_id); -- FPK: CPA

735:
736:
737: BEGIN
738:
739: l_neg_has_lines := PON_AUCTION_PKG.neg_has_lines(p_auction_header_id); -- FPK: CPA
740:
741: select nvl(allow_staggered_awards, 'N') into l_allow_stag_awards from pon_auction_headers_all where auction_header_id = p_auction_header_id;
742:
743: select count(DISTINCT line_number) into l_unawarded_line_count from pon_auction_item_prices_all where auction_header_id = p_auction_header_id and nvl(award_status,'NO') = 'NO';

Line 766: PON_AUCTION_PKG.CANCEL_NEGOTIATION_REF(p_auction_header_id, x_error_code);

762: -- Donot put back the req is staggered awarding is enabled and neg is partially awarded
763: if (p_create_po_flag <> 'Y' and p_has_backing_reqs_flag = 'Y' and (l_allow_stag_awards <> 'Y' or l_has_unawarded_lines = 'N')) then
764: -- put requisitions back in pool if auction
765: -- has backing req and no outcome creation
766: PON_AUCTION_PKG.CANCEL_NEGOTIATION_REF(p_auction_header_id, x_error_code);
767: end if;
768:
769: --Line Type and Structute Changes Project
770: OPEN c_has_linked_pr_refs;

Line 845: PON_AUCTION_PKG.CANCEL_NEGOTIATION_REF_BY_LINE(p_auction_header_id, x_line_number, x_error_code);

841: into x_line_number,
842: x_line_origination_code;
843: exit when items_with_reqs_no_bids%notfound;
844:
845: PON_AUCTION_PKG.CANCEL_NEGOTIATION_REF_BY_LINE(p_auction_header_id, x_line_number, x_error_code);
846:
847: end loop;
848: close items_with_reqs_no_bids;
849: --

Line 973: pon_auction_pkg.COMPLETE_AUCTION(p_auction_header_id);

969: LAST_UPDATE_DATE = sysdate
970: where auction_header_id = p_auction_header_id;
971:
972: -- complete work flow
973: pon_auction_pkg.COMPLETE_AUCTION(p_auction_header_id);
974:
975: END complete_auction;
976:
977: ----------------------------------------------------------------

Line 1049: pon_auction_pkg.AWARD_BID(x_bid_number,

1045: AND auction_line_number IN (SELECT line_number FROM pon_auction_item_prices_all WHERE auction_header_id = p_auction_header_id AND Nvl(award_status, 'NO') = 'COMPLETED');
1046:
1047: IF x_completed_lines > 0 THEN
1048:
1049: pon_auction_pkg.AWARD_BID(x_bid_number,
1050: p_auction_header_id,
1051: x_bid_tp_contact_name,
1052: x_auction_tp_name,
1053: x_auction_title,

Line 1427: l_neg_has_lines := PON_AUCTION_PKG.neg_has_lines(p_auction_header_id);

1423: FND_LOG.STRING( FND_LOG.LEVEL_STATEMENT, 'pon.plsql.PON_AWARD_PKG.AWARD_AUCTION',' p_batch_id : '|| p_batch_id || ' ,p_auction_header_id : ' || p_auction_header_id );
1424: END IF;
1425: END IF;
1426:
1427: l_neg_has_lines := PON_AUCTION_PKG.neg_has_lines(p_auction_header_id);
1428:
1429: select contract_type,Nvl(ALLOW_UNSOL_OFFER_LINES,'Y'),
1430: Nvl(allow_staggered_awards, 'N'), org_id, doctype_id --ELINs project
1431: into l_neg_contract_type,l_allow_unsol_lines, -- Unsolicited Lines Project

Line 5693: pon_auction_pkg.COMPLETE_AUCTION(p_auction_header_id);

5689: LAST_UPDATE_DATE = sysdate
5690: where auction_header_id = p_auction_header_id;
5691:
5692: -- complete work flow
5693: pon_auction_pkg.COMPLETE_AUCTION(p_auction_header_id);
5694:
5695: END complete_partial_auction;
5696:
5697: PROCEDURE clear_unawarded_draft_awards