DBA Data[Home] [Help]

APPS.RCV_CORE_S dependencies on PO_HISTORY_RECEIPTS

Line 691: ** it doesn't, then it checks if it exists in po_history_receipts. If it

687: RETURN BOOLEAN IS
688: /*
689: ** Function checks if the receipt number passed in already exists in
690: ** rcv_shipment_headers. If is does, then it returns a value of FALSE. If
691: ** it doesn't, then it checks if it exists in po_history_receipts. If it
692: ** does then it returns a value of FALSE. If the receipt number doesn't
693: ** exist in either table, it returns a value of TRUE.
694: */
695: x_progress VARCHAR2(3) := NULL;

Line 712: FROM po_history_receipts

708: RETURN(FALSE);
709: ELSE
710: SELECT COUNT(1)
711: INTO dup_count
712: FROM po_history_receipts
713: WHERE receipt_num = x_receipt_num;
714:
715: IF dup_count <> 0 THEN
716: RETURN(FALSE);