DBA Data[Home] [Help]

APPS.AP_PURGE_PKG dependencies on PO_VENDOR_LIST_ENTRIES

Line 6641: debug_info := 'po_vendor_list_entries';

6637: COMMIT;
6638:
6639: IF g_purchasing_status = 'Y' THEN
6640:
6641: debug_info := 'po_vendor_list_entries';
6642: IF g_debug_switch in ('y','Y') THEN
6643: Print('(Purge_Vendors)'||debug_info);
6644: END IF;
6645:

Line 6646: delete from po_vendor_list_entries pvle

6642: IF g_debug_switch in ('y','Y') THEN
6643: Print('(Purge_Vendors)'||debug_info);
6644: END IF;
6645:
6646: delete from po_vendor_list_entries pvle
6647: where not exists
6648: (select null
6649: from ap_suppliers vnd
6650: where vnd.vendor_id = pvle.vendor_id);

Line 6660: from po_vendor_list_entries e

6656:
6657: delete from po_vendor_list_headers h
6658: where not exists
6659: (select null
6660: from po_vendor_list_entries e
6661: where e.vendor_list_header_id =
6662: h.vendor_list_header_id);
6663:
6664: debug_info := 'po_asl_attributes';