DBA Data[Home] [Help]

APPS.PON_NEG_UPDATE_PKG dependencies on PON_AUCTION_PKG

Line 47: pon_auction_pkg.CLOSEEARLY_AUCTION(p_auction_header_id,

43: and close_bidding_date > p_new_close_date;
44:
45: -- send notifications
46: if (p_close_now_flag = 'Y') then
47: pon_auction_pkg.CLOSEEARLY_AUCTION(p_auction_header_id,
48: p_new_close_date,
49: p_reason);
50: else
51: pon_auction_pkg.CLOSECHANGED_AUCTION(p_auction_header_id,

Line 51: pon_auction_pkg.CLOSECHANGED_AUCTION(p_auction_header_id,

47: pon_auction_pkg.CLOSEEARLY_AUCTION(p_auction_header_id,
48: p_new_close_date,
49: p_reason);
50: else
51: pon_auction_pkg.CLOSECHANGED_AUCTION(p_auction_header_id,
52: 2, -- type code
53: p_new_close_date,
54: p_reason);
55: end if;

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

110:
111: -- if an autocreated document is cancelled, return the
112: -- backing requisitions to the req. pool
113: if (x_auction_origination_code = 'REQUISITION') then
114: PON_AUCTION_PKG.CANCEL_NEGOTIATION_REF(p_auction_header_id, x_error_code);
115: end if;
116:
117: -- if good so far, kick off workflow notification process.
118: if (p_send_note_flag = 'Y' and x_error_code = 'SUCCESS') then

Line 119: PON_AUCTION_PKG.CANCEL_AUCTION(p_auction_header_id);

115: end if;
116:
117: -- if good so far, kick off workflow notification process.
118: if (p_send_note_flag = 'Y' and x_error_code = 'SUCCESS') then
119: PON_AUCTION_PKG.CANCEL_AUCTION(p_auction_header_id);
120: end if;
121:
122: END CANCEL_NEGOTIATION;
123:

Line 290: pon_auction_pkg.CLOSECHANGED_AUCTION(p_auction_header_id,

286: -- Call WorkFlow
287: -- dont call the work flow if the negotiation is paused (Resume Negotaition case).
288: if (v_ispaused <> 'Y') then
289: if ( p_close_date < x_new_close_date) then
290: pon_auction_pkg.CLOSECHANGED_AUCTION(p_auction_header_id,
291: 1, -- type code
292: x_new_close_date,
293: NULL);
294: end if;

Line 477: PON_AUCTION_PKG.COPY_BACKING_REQ(p_auction_header_id_prev_doc, p_auction_header_id_curr_doc, x_error_code);

473: -- copy negotiation references locally
474:
475: if (p_auction_origination_code = 'REQUISITION' OR l_back_req_exists = 'Y') then
476:
477: PON_AUCTION_PKG.COPY_BACKING_REQ(p_auction_header_id_prev_doc, p_auction_header_id_curr_doc, x_error_code);
478:
479: end if;
480: end if;
481:

Line 500: PON_AUCTION_PKG.UPDATE_NEGOTIATION_REF(p_auction_header_id_prev_doc, v_doc_number_prev_doc, p_auction_header_id_curr_doc, p_doc_number_curr_doc, x_error_code, x_error_msg);

496: x_return_status => l_return_status,
497: x_error_msg => x_error_msg,
498: x_error_code => x_error_code);
499: ELSE
500: PON_AUCTION_PKG.UPDATE_NEGOTIATION_REF(p_auction_header_id_prev_doc, v_doc_number_prev_doc, p_auction_header_id_curr_doc, p_doc_number_curr_doc, x_error_code, x_error_msg);
501: END IF;
502: end if;
503:
504: -- previous active bids are no longer valid

Line 1366: pon_auction_pkg.CLOSEEARLY_AUCTION(p_auction_header_id,

1362: module => g_module_prefix || l_module_name,
1363: message => 'Updated header sending notification.');
1364: END IF;
1365:
1366: pon_auction_pkg.CLOSEEARLY_AUCTION(p_auction_header_id,
1367: p_new_close_date,
1368: null);
1369: end if;
1370: