DBA Data[Home] [Help]

APPS.AP_UTILITIES_PKG dependencies on AP_INVOICE_LINES_INTERFACE

Line 2604: delete from ap_invoice_lines_interface where invoice_id = p_invoice_id_table(i);

2600: forall i in nvl(p_invoice_id_table.first,0)..nvl(p_invoice_id_table.last,0)
2601: delete from ap_invoices_interface where invoice_id = p_invoice_id_table(i);
2602: /* Delete invoice lines from interface */
2603: forall i in nvl(p_invoice_id_table.first,0)..nvl(p_invoice_id_table.last,0)
2604: delete from ap_invoice_lines_interface where invoice_id = p_invoice_id_table(i);
2605:
2606: /* Delete invoice rejections from the rejections table */
2607: forall i in nvl(p_invoice_id_table.first,0)..nvl(p_invoice_id_table.last,0)
2608: delete from ap_interface_rejections

Line 2616: parent_table = 'AP_INVOICE_LINES_INTERFACE';

2612: /* Delete invoice lines rejections from the rejections table */
2613: forall i in nvl(p_invoice_line_id_table.first,0)..nvl(p_invoice_line_id_table.last,0)
2614: delete from ap_interface_rejections
2615: where parent_id = p_invoice_line_id_table(i) and
2616: parent_table = 'AP_INVOICE_LINES_INTERFACE';
2617: return TRUE;
2618: EXCEPTION
2619: WHEN OTHERS THEN
2620: if (SQLCODE <> -20001) then