DBA Data[Home] [Help]

APPS.WIP_OSP dependencies on PO_WIP_INTEGRATION_GRP

Line 1719: po_wip_integration_grp.update_document(

1715: l_po_changes.shipment_changes.add_change(
1716: p_po_line_location_id => p_po_line_location_id,
1717: p_need_by_date => p_new_NBD);
1718:
1719: po_wip_integration_grp.update_document(
1720: p_api_version => 1.0,
1721: p_init_msg_list => fnd_api.g_true,
1722: p_changes => l_po_changes,
1723: p_run_submission_checks => fnd_api.g_true,

Line 1763: po_wip_integration_grp.update_requisition(

1759: assignment_start_date => PO_TBL_DATE(NULL),
1760: assignment_end_date => PO_TBL_DATE(NULL),
1761: amount => PO_TBL_NUMBER(NULL));
1762:
1763: po_wip_integration_grp.update_requisition(
1764: p_api_version => 1.0,
1765: p_req_changes => l_req_changes,
1766: p_update_source => NULL,
1767: x_return_status => x_return_status,

Line 2272: po_wip_integration_grp.update_document(

2268: x_returnStatus => l_returnStatus);
2269: END IF;
2270: l_pochanges_tab(indx):=l_po_changes;
2271: /* Commented by tekang for FP bug 10383628
2272: po_wip_integration_grp.update_document(
2273: p_api_version => 1.0,
2274: p_init_msg_list => fnd_api.g_true,
2275: p_changes => l_po_changes,
2276: p_run_submission_checks => fnd_api.g_true,

Line 2326: po_wip_integration_grp.update_requisition(

2322: wip_logger.log(p_msg => l_debugMsg,
2323: x_returnStatus => l_returnStatus);
2324: END IF;
2325:
2326: po_wip_integration_grp.update_requisition(
2327: p_api_version => 1.0,
2328: p_req_changes => l_req_changes,
2329: p_update_source => NULL,
2330: x_return_status => x_return_status,

Line 2345: po_wip_integration_grp.update_document(

2341: END LOOP;
2342: /* Added by tekang for FP bug 10383623 */
2343: If l_pochanges_tab.count>0 then
2344: FOR i in 1..l_pochanges_tab.count LOOP --Added for bug#14782614- To call the update_document for all records
2345: po_wip_integration_grp.update_document(
2346: p_api_version => 1.0,
2347: p_init_msg_list => fnd_api.g_true,
2348: p_changes => l_pochanges_tab(i),
2349: p_run_submission_checks => fnd_api.g_true,

Line 2569: po_wip_integration_grp.cancel_document

2565: IF NVL(p_clr_fnd_mes_flag, 'N') = 'Y' Then -- added for bug fix 7415801
2566: fnd_msg_pub.initialize;
2567: END IF; --bug fix 7415801
2568:
2569: po_wip_integration_grp.cancel_document
2570: (p_api_version => 1.0,
2571: p_doc_type => PO_TBL_VARCHAR30(l_po_req.document_type),
2572: p_doc_subtype => PO_TBL_VARCHAR30(l_po_req.document_subtype),
2573: p_doc_id => PO_TBL_NUMBER(l_po_req.po_header_id),

Line 2606: po_wip_integration_grp.cancel_requisition

2602: wip_logger.log(p_msg => l_debugMsg,
2603: x_returnStatus => l_returnStatus);
2604: END IF;
2605: -- Call PO API to cancel requisition
2606: po_wip_integration_grp.cancel_requisition
2607: (p_api_version => 1.0,
2608: p_req_header_id => PO_TBL_NUMBER(l_po_req.req_header_id),
2609: p_req_line_id => PO_TBL_NUMBER(l_po_req.req_line_id),
2610: p_cancel_date => SYSDATE,