DBA Data[Home] [Help]

APPS.PON_CONTERMS_UTL_PVT dependencies on OKC_MANAGE_DELIVERABLES_GRP

Line 293: l_bus_doc_dates_tbl okc_manage_deliverables_grp.busdocdates_tbl_type;

289:
290: indx PLS_INTEGER := 0;
291:
292: -- create a new table and record
293: l_bus_doc_dates_tbl okc_manage_deliverables_grp.busdocdates_tbl_type;
294:
295: l_new_bid_status VARCHAR2(30);
296: l_old_bid_status VARCHAR2(30);
297:

Line 342: OKC_MANAGE_DELIVERABLES_GRP.postDelStatusChanges (

338:
339:
340: -- bug 3608706 - new api to update the status history
341:
342: OKC_MANAGE_DELIVERABLES_GRP.postDelStatusChanges (
343: p_api_version => 1.0,
344: p_init_msg_list => FND_API.G_FALSE,
345: p_commit => FND_API.G_FALSE,
346: p_bus_doc_id => p_new_bid_number,

Line 364: OKC_MANAGE_DELIVERABLES_GRP.activateDeliverables (

360: l_bus_doc_dates_tbl(indx).EVENT_DATE := l_close_date;
361:
362: -- activate deliverables for the new bid
363:
364: OKC_MANAGE_DELIVERABLES_GRP.activateDeliverables (
365: p_api_version => 1.0,
366: p_init_msg_list => FND_API.G_FALSE,
367: p_commit => FND_API.G_FALSE,
368: p_bus_doc_id => p_new_bid_number,

Line 396: OKC_MANAGE_DELIVERABLES_GRP.enableNotifications(

392: END IF;
393: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
394: END IF;
395:
396: OKC_MANAGE_DELIVERABLES_GRP.enableNotifications(
397: p_api_version => 1.0,
398: p_init_msg_list => FND_API.G_FALSE,
399: p_commit => FND_API.G_FALSE,
400: p_bus_doc_id => p_new_bid_number,

Line 429: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables (

425: -- cancel deliverables for the archived bid
426:
427: IF (p_old_bid_number <>-1 AND l_new_bid_status = 'ACTIVE') THEN
428:
429: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables (
430: p_api_version => 1.0,
431: p_init_msg_list => FND_API.G_FALSE,
432: p_commit => FND_API.G_FALSE,
433: p_bus_doc_id => p_old_bid_number,

Line 501: l_bus_doc_dates_tbl okc_manage_deliverables_grp.busdocdates_tbl_type;

497: IS
498:
499: l_negotiation_doc_type VARCHAR2(30);
500: l_response_doc_type VARCHAR2(30);
501: l_bus_doc_dates_tbl okc_manage_deliverables_grp.busdocdates_tbl_type;
502: l_return_status VARCHAR2(1);
503: l_msg_data VARCHAR2(250);
504: l_api_name CONSTANT VARCHAR2(30) := 'updateDeliverables';
505: indx PLS_INTEGER := 0;

Line 579: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(

575: mo_global.set_policy_context('S', l_org_id);
576:
577: -- Call Contracts API for updating negotiation first
578:
579: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(
580: p_api_version => 1.0,
581: p_init_msg_list => FND_API.G_FALSE,
582: p_commit => FND_API.G_FALSE,
583: p_bus_doc_id => p_auction_header_id,

Line 610: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(

606: -- need to update deliverables on them as well
607:
608: IF (current_amendment.auction_header_id <> p_auction_header_id) THEN
609:
610: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(
611: p_api_version => 1.0,
612: p_init_msg_list => FND_API.G_FALSE,
613: p_commit => FND_API.G_FALSE,
614: p_bus_doc_id => current_amendment.auction_header_id,

Line 644: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(

640: -- for each bid that we need to update?
641:
642: FOR active_bid IN active_bids LOOP
643:
644: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(
645: p_api_version => 1.0,
646: p_init_msg_list => FND_API.G_FALSE,
647: p_commit => FND_API.G_FALSE,
648: p_bus_doc_id => active_bid.bid_number,

Line 759: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables(

755: --
756: mo_global.set_policy_context('S', l_org_id);
757:
758: -- Call Contracts API for cancelling negotiation 's delvierablesfirst
759: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables(
760: p_api_version => 1.0,
761: p_init_msg_list => FND_API.G_FALSE,
762: p_commit => FND_API.G_FALSE,
763: p_bus_doc_id => p_auction_header_id,

Line 783: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables(

779: END IF;
780: END IF;
781: -- Call Contracts API for cancel Active Bids' deliverables
782: FOR active_bid IN active_bids LOOP
783: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables(
784: p_api_version => 1.0,
785: p_init_msg_list => FND_API.G_FALSE,
786: p_commit => FND_API.G_FALSE,
787: p_bus_doc_id => active_bid.bid_number,

Line 944: l_bus_doc_dates_tbl OKC_MANAGE_DELIVERABLES_GRP.BUSDOCDATES_TBL_TYPE;

940: l_view_by_date DATE;
941: l_open_date DATE;
942: l_close_bidding_date DATE;
943:
944: l_bus_doc_dates_tbl OKC_MANAGE_DELIVERABLES_GRP.BUSDOCDATES_TBL_TYPE;
945:
946: l_event_name VARCHAR2(30);
947: l_event_date DATE;
948: l_return_status VARCHAR2(1);

Line 994: OKC_MANAGE_DELIVERABLES_GRP.resolveDeliverables(

990: -- Set the connection policy context. Bug 5040821.
991: --
992: mo_global.set_policy_context('S', l_org_id);
993:
994: OKC_MANAGE_DELIVERABLES_GRP.resolveDeliverables(
995: p_api_version => 1.0,
996: p_init_msg_list => FND_API.G_FALSE,
997: p_commit => FND_API.G_FALSE,
998: p_bus_doc_id => p_auction_header_id,

Line 1239: OKC_MANAGE_DELIVERABLES_GRP.disableDeliverables (

1235: -- Set the connection policy context. Bug 5040821.
1236: --
1237: mo_global.set_policy_context('S', l_org_id);
1238:
1239: OKC_MANAGE_DELIVERABLES_GRP.disableDeliverables (
1240: p_api_version => 1.0,
1241: p_init_msg_list => FND_API.G_FALSE,
1242: p_commit => FND_API.G_FALSE,
1243: p_bus_doc_id => p_bid_number,

Line 1340: OKC_MANAGE_DELIVERABLES_GRP.disableDeliverables(

1336: mo_global.set_policy_context('S', l_org_id);
1337:
1338: FOR active_bid IN active_bids LOOP
1339:
1340: OKC_MANAGE_DELIVERABLES_GRP.disableDeliverables(
1341: p_api_version => 1.0,
1342: p_init_msg_list => FND_API.G_FALSE,
1343: p_commit => FND_API.G_FALSE,
1344: p_bus_doc_id => active_bid.bid_number,

Line 2030: OKC_MANAGE_DELIVERABLES_GRP.updateExtPartyOnDeliverables

2026: -- Set the connection policy context. Bug 5040821.
2027: --
2028: mo_global.set_policy_context('M', null);
2029:
2030: OKC_MANAGE_DELIVERABLES_GRP.updateExtPartyOnDeliverables
2031: ( p_api_version => 1.0,
2032: p_init_msg_list => FND_API.G_TRUE,
2033: p_commit => FND_API.G_FALSE,
2034: p_document_class => 'SOURCING',