DBA Data[Home] [Help]

APPS.PON_CONTERMS_UTL_PVT dependencies on OKC_MANAGE_DELIVERABLES_GRP

Line 287: l_bus_doc_dates_tbl okc_manage_deliverables_grp.busdocdates_tbl_type;

283:
284: indx PLS_INTEGER := 0;
285:
286: -- create a new table and record
287: l_bus_doc_dates_tbl okc_manage_deliverables_grp.busdocdates_tbl_type;
288:
289: l_new_bid_status VARCHAR2(30);
290: l_old_bid_status VARCHAR2(30);
291:

Line 336: OKC_MANAGE_DELIVERABLES_GRP.postDelStatusChanges (

332:
333:
334: -- bug 3608706 - new api to update the status history
335:
336: OKC_MANAGE_DELIVERABLES_GRP.postDelStatusChanges (
337: p_api_version => 1.0,
338: p_init_msg_list => FND_API.G_FALSE,
339: p_commit => FND_API.G_FALSE,
340: p_bus_doc_id => p_new_bid_number,

Line 358: OKC_MANAGE_DELIVERABLES_GRP.activateDeliverables (

354: l_bus_doc_dates_tbl(indx).EVENT_DATE := l_close_date;
355:
356: -- activate deliverables for the new bid
357:
358: OKC_MANAGE_DELIVERABLES_GRP.activateDeliverables (
359: p_api_version => 1.0,
360: p_init_msg_list => FND_API.G_FALSE,
361: p_commit => FND_API.G_FALSE,
362: p_bus_doc_id => p_new_bid_number,

Line 390: OKC_MANAGE_DELIVERABLES_GRP.enableNotifications(

386: END IF;
387: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
388: END IF;
389:
390: OKC_MANAGE_DELIVERABLES_GRP.enableNotifications(
391: p_api_version => 1.0,
392: p_init_msg_list => FND_API.G_FALSE,
393: p_commit => FND_API.G_FALSE,
394: p_bus_doc_id => p_new_bid_number,

Line 423: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables (

419: -- cancel deliverables for the archived bid
420:
421: IF (p_old_bid_number <>-1 AND l_new_bid_status = 'ACTIVE') THEN
422:
423: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables (
424: p_api_version => 1.0,
425: p_init_msg_list => FND_API.G_FALSE,
426: p_commit => FND_API.G_FALSE,
427: p_bus_doc_id => p_old_bid_number,

Line 495: l_bus_doc_dates_tbl okc_manage_deliverables_grp.busdocdates_tbl_type;

491: IS
492:
493: l_negotiation_doc_type VARCHAR2(30);
494: l_response_doc_type VARCHAR2(30);
495: l_bus_doc_dates_tbl okc_manage_deliverables_grp.busdocdates_tbl_type;
496: l_return_status VARCHAR2(1);
497: l_msg_data VARCHAR2(250);
498: l_api_name CONSTANT VARCHAR2(30) := 'updateDeliverables';
499: indx PLS_INTEGER := 0;

Line 573: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(

569: mo_global.set_policy_context('S', l_org_id);
570:
571: -- Call Contracts API for updating negotiation first
572:
573: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(
574: p_api_version => 1.0,
575: p_init_msg_list => FND_API.G_FALSE,
576: p_commit => FND_API.G_FALSE,
577: p_bus_doc_id => p_auction_header_id,

Line 604: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(

600: -- need to update deliverables on them as well
601:
602: IF (current_amendment.auction_header_id <> p_auction_header_id) THEN
603:
604: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(
605: p_api_version => 1.0,
606: p_init_msg_list => FND_API.G_FALSE,
607: p_commit => FND_API.G_FALSE,
608: p_bus_doc_id => current_amendment.auction_header_id,

Line 638: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(

634: -- for each bid that we need to update?
635:
636: FOR active_bid IN active_bids LOOP
637:
638: OKC_MANAGE_DELIVERABLES_GRP.updateDeliverables(
639: p_api_version => 1.0,
640: p_init_msg_list => FND_API.G_FALSE,
641: p_commit => FND_API.G_FALSE,
642: p_bus_doc_id => active_bid.bid_number,

Line 753: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables(

749: --
750: mo_global.set_policy_context('S', l_org_id);
751:
752: -- Call Contracts API for cancelling negotiation 's delvierablesfirst
753: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables(
754: p_api_version => 1.0,
755: p_init_msg_list => FND_API.G_FALSE,
756: p_commit => FND_API.G_FALSE,
757: p_bus_doc_id => p_auction_header_id,

Line 777: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables(

773: END IF;
774: END IF;
775: -- Call Contracts API for cancel Active Bids' deliverables
776: FOR active_bid IN active_bids LOOP
777: OKC_MANAGE_DELIVERABLES_GRP.cancelDeliverables(
778: p_api_version => 1.0,
779: p_init_msg_list => FND_API.G_FALSE,
780: p_commit => FND_API.G_FALSE,
781: p_bus_doc_id => active_bid.bid_number,

Line 938: l_bus_doc_dates_tbl OKC_MANAGE_DELIVERABLES_GRP.BUSDOCDATES_TBL_TYPE;

934: l_view_by_date DATE;
935: l_open_date DATE;
936: l_close_bidding_date DATE;
937:
938: l_bus_doc_dates_tbl OKC_MANAGE_DELIVERABLES_GRP.BUSDOCDATES_TBL_TYPE;
939:
940: l_event_name VARCHAR2(30);
941: l_event_date DATE;
942: l_return_status VARCHAR2(1);

Line 988: OKC_MANAGE_DELIVERABLES_GRP.resolveDeliverables(

984: -- Set the connection policy context. Bug 5040821.
985: --
986: mo_global.set_policy_context('S', l_org_id);
987:
988: OKC_MANAGE_DELIVERABLES_GRP.resolveDeliverables(
989: p_api_version => 1.0,
990: p_init_msg_list => FND_API.G_FALSE,
991: p_commit => FND_API.G_FALSE,
992: p_bus_doc_id => p_auction_header_id,

Line 1233: OKC_MANAGE_DELIVERABLES_GRP.disableDeliverables (

1229: -- Set the connection policy context. Bug 5040821.
1230: --
1231: mo_global.set_policy_context('S', l_org_id);
1232:
1233: OKC_MANAGE_DELIVERABLES_GRP.disableDeliverables (
1234: p_api_version => 1.0,
1235: p_init_msg_list => FND_API.G_FALSE,
1236: p_commit => FND_API.G_FALSE,
1237: p_bus_doc_id => p_bid_number,

Line 1334: OKC_MANAGE_DELIVERABLES_GRP.disableDeliverables(

1330: mo_global.set_policy_context('S', l_org_id);
1331:
1332: FOR active_bid IN active_bids LOOP
1333:
1334: OKC_MANAGE_DELIVERABLES_GRP.disableDeliverables(
1335: p_api_version => 1.0,
1336: p_init_msg_list => FND_API.G_FALSE,
1337: p_commit => FND_API.G_FALSE,
1338: p_bus_doc_id => active_bid.bid_number,

Line 1928: OKC_MANAGE_DELIVERABLES_GRP.updateExtPartyOnDeliverables

1924: -- Set the connection policy context. Bug 5040821.
1925: --
1926: mo_global.set_policy_context('M', null);
1927:
1928: OKC_MANAGE_DELIVERABLES_GRP.updateExtPartyOnDeliverables
1929: ( p_api_version => 1.0,
1930: p_init_msg_list => FND_API.G_TRUE,
1931: p_commit => FND_API.G_FALSE,
1932: p_document_class => 'SOURCING',