APPS.PA_PO_INTEGRATION_UTILS dependencies on PA_PROJ_PO_DISTRIBUTIONS
Line 619: FROM pa_proj_po_distributions ppd
615: --Cursor to check if there are any Commitments for the PO.
616:
617: CURSOR c_po_commitments(p_po_header_id IN NUMBER) IS
618: SELECT DISTINCT ppd.po_number, ppd.creation_date -- Added for the bug 13617899 619: FROM pa_proj_po_distributions ppd 620: WHERE ppd.po_header_id=p_po_header_id
621: AND ppd.cmt_qty <> 0; -- Modified for the bug 13566375
622:
623: