137: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
138: RAISE; /* Error has been printed. No need to print error here */
139: /*
140: WHEN others THEN
141: po_message_s.sql_error('create_ap_invoices', x_progress,sqlcode);
142: RAISE;
143: END create_ap_invoices;
144:
145:
241:
242: X_payment_method_lookup_code := x_default_pmt_attrs_rec.Payment_Method.Payment_Method_Code;
243: EXCEPTION
244: WHEN others THEN
245: po_message_s.sql_error('get_vendor_related_info', x_progress,sqlcode);
246: RAISE;
247: END get_vendor_related_info;
248:
249:
318: WHEN others THEN
319: IF (g_asn_debug = 'Y') THEN
320: asn_debug.put_line('Error in getting AP System Options ... ');
321: END IF;
322: po_message_s.sql_error('get_ap_parameters', x_progress,sqlcode);
323: RAISE;
324: END get_ap_parameters;
325:
326:
406: WHEN others THEN
407: IF (g_asn_debug = 'Y') THEN
408: asn_debug.put_line('Error in creating AP Invoice Batch ... ');
409: END IF;
410: po_message_s.sql_error('create_ap_batches', x_progress,sqlcode);
411: RAISE;
412: END create_ap_batches;
413:
414:
452: WHEN others THEN
453: IF (g_asn_debug = 'Y') THEN
454: asn_debug.put_line('Error in Updating current invoice batch ... ');
455: END IF;
456: po_message_s.sql_error('update_ap_batches', x_progress,sqlcode);
457: RAISE;
458: END update_ap_batches;
459:
460:
567:
568:
569: EXCEPTION
570: WHEN others THEN
571: po_message_s.sql_error('get_accounting_date_and_period',
572: x_progress, sqlcode);
573: RAISE;
574: END get_accounting_date_and_period;
575: