785: --
786: l_log_msg := 'Get next invoice_payment_id';
787: SELECT ap_invoice_payments_s.nextval
788: INTO l_invoice_payment_id
789: FROM sys.dual;
790:
791: --
792: -- Bug: 661558
793: -- DO AUTOMATIC WITHHOLDING
1114: --
1115: l_log_msg := 'Get next interest invoice_id';
1116: SELECT ap_invoices_s.nextval
1117: INTO l_interest_invoice_id
1118: FROM sys.dual;
1119:
1120: --
1121: -- Get next interest invoice_payment_id
1122: --
1122: --
1123: l_log_msg := 'Get next interest invoice_payment_id';
1124: SELECT ap_invoice_payments_s.nextval
1125: INTO l_interest_invoice_pay_id
1126: FROM sys.dual;
1127:
1128: --
1129: -- Create interest invoice
1130: --